Help with and Auto-Skip script

This forum is for questions / discussions regarding development of addons / tweaks for MediaMonkey for Windows 4.

Moderators: Gurus, Addon Administrators

scubanarc
Posts: 2
Joined: Sat Jul 05, 2014 5:41 pm

Help with and Auto-Skip script

Post by scubanarc »

Hey guys,

Apologies if this is the wrong sub. I'm new to the MediaMonkey scene.

I'd like to write a simple script that skips a track if "custom 1" has a certain value in it, let's say "true". I'm familiar with the event handlers example here: http://www.mediamonkey.com/wiki/index.p ... ers_script.

Do I need to use an event handler to do this? Can anyone provide me with some sample code to get me started? In pseudo-code what I want to do is:

if CurrentSong.Custom1 contains "true" then
SkipNext
end if

Any help is greatly appreciated.
Last edited by Lowlander on Sat Jul 05, 2014 9:14 pm, edited 1 time in total.
Reason: Moved to correct Forum
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: Help with and Auto-Skip script

Post by trixmoto »

Yes, you'd want to use an "OnPlay" event, something like this...

Code: Select all

Call Script.RegisterEvent(SDB,"OnPlay","Event_OnPlay")

Sub Event_OnPlay()
  If SDB.Player.CurrentSong.Custom1 = "true" Then
    SDB.Player.Next
  End If
End Sub
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.
Post Reply