how do I cause the effect of hitting the next or back buttons from my plug-in?
I am really new, so please bare with me
thanx in advanced, Byan
foosion
Dec 5 2005, 03:04
You can emulate the effect of "Playback/Next" and "Playback/Previous" by calling play_control::play_start() with the TRACK_COMMAND_NEXT or TRACK_COMMAND_PREV parameter.
Byan
Dec 5 2005, 08:54
QUOTE(foosion @ Dec 5 2005, 03:04 AM)
You can emulate the effect of "Playback/Next" and "Playback/Previous" by calling play_control::play_start() with the TRACK_COMMAND_NEXT or TRACK_COMMAND_PREV parameter.
alright, I will try that when I get home thanks
Byan
Dec 5 2005, 14:59
I get TRACK_COMMAND_NEXT and TRACK_COMMAND_PREV as undeclared identifiers
I tried the command from the tutorial plug-in.
hunted
Dec 5 2005, 16:45
QUOTE(Byan @ Dec 5 2005, 12:59 PM)
I get TRACK_COMMAND_NEXT and TRACK_COMMAND_PREV as undeclared identifiers
I tried the command from the tutorial plug-in.
you need to specify the classname infront of them, ie: play_control::TRACK_COMMAND_NEXT
Byan
Dec 5 2005, 16:52
QUOTE(hunted @ Dec 5 2005, 04:45 PM)
QUOTE(Byan @ Dec 5 2005, 12:59 PM)
I get TRACK_COMMAND_NEXT and TRACK_COMMAND_PREV as undeclared identifiers
I tried the command from the tutorial plug-in.
you need to specify the classname infront of them, ie: play_control::TRACK_COMMAND_NEXT