Hello,
I try to create a script that remove a song from a playlist
playList.RemoveTrack(currentSong)
It works, But MM ask the user a confirmation on each suppress
is there a way to get rid of this confirmation without checking the "don't ask anymore" checkbox ?
I use the MM 2.5.5.996
Thanks in advance
RemoveTrack confirmation screen
-
- Posts: 7
- Joined: Sun Feb 24, 2008 7:24 pm
RemoveTrack confirmation screen
--
François Chastanet
François Chastanet
-
- Posts: 1119
- Joined: Mon Apr 09, 2007 12:03 am
- Location: Boulder, Colorado, USA
Possibly I am missing the point of your question. But, is this not what you want?


D Rock

MediaMonkeyGoldv3.0.3.1183
Vista Home Basic|4thGen 20GPod
Zune Small Player Skin w/ Aqua 4 Player Mod
Backup | Last FM Node | Scrobbler DJ | TopTracks | StayInSameStyleDJ
RadioDJ | RadioFreeMonkey | PrettyPictures | MiniLyricsEmbedder
LyricsViewer | Lyricator | LyricsPlugin | VisualizationEmbedder | MonkeyRok
RightClickForWeb | WebSearchPanels | WebNodes | MagicNodes | FavoritesNodes
NowPlayingArtNode |AutoRateAccurate | TaggingInconsistencies
AdvancedDuplicateFind&Fix | CaseModify | PlayHistory&Stats | Etc...

MediaMonkeyGoldv3.0.3.1183
Vista Home Basic|4thGen 20GPod
Zune Small Player Skin w/ Aqua 4 Player Mod
Backup | Last FM Node | Scrobbler DJ | TopTracks | StayInSameStyleDJ
RadioDJ | RadioFreeMonkey | PrettyPictures | MiniLyricsEmbedder
LyricsViewer | Lyricator | LyricsPlugin | VisualizationEmbedder | MonkeyRok
RightClickForWeb | WebSearchPanels | WebNodes | MagicNodes | FavoritesNodes
NowPlayingArtNode |AutoRateAccurate | TaggingInconsistencies
AdvancedDuplicateFind&Fix | CaseModify | PlayHistory&Stats | Etc...
-
- Posts: 7
- Joined: Sun Feb 24, 2008 7:24 pm
-
- Posts: 7
- Joined: Sun Feb 24, 2008 7:24 pm
I've almost found the function
ISDBTools::DeleteTracks(
TrackList As ISDBSongList,
Confirmation As Boolean,
ToRecycleBin As EnumYesNo) As EnumYesNo
which don't ask for user confirmation but deletes the track from computer
I need the same function but just remove the track without confirmation from playlist(don't physically delete it)
ISDBTools::DeleteTracks(
TrackList As ISDBSongList,
Confirmation As Boolean,
ToRecycleBin As EnumYesNo) As EnumYesNo
which don't ask for user confirmation but deletes the track from computer
I need the same function but just remove the track without confirmation from playlist(don't physically delete it)
--
François Chastanet
François Chastanet
Unfortunately this doesn't currently exist, but maybe the devs will add it to a future version.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
Can't you just delete it from the playlist using SQL?
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
-
- Posts: 7
- Joined: Sun Feb 24, 2008 7:24 pm
Here's the database schema:
http://www.mediamonkey.com/wiki/index.p ... _structure
To refresh the view you can use:
SDB.TracksWindow.Refresh
http://www.mediamonkey.com/wiki/index.p ... _structure
To refresh the view you can use:
SDB.TracksWindow.Refresh
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts