Help with and Auto-Skip script

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Help with and Auto-Skip script

Re: Help with and Auto-Skip script

by trixmoto » Sun Jul 06, 2014 12:03 pm

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

Help with and Auto-Skip script

by scubanarc » Sat Jul 05, 2014 5:52 pm

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.

Top