Sign In:     


Forum: VirtualDJ Plugins

Topic: char *action .....???

This topic is old and might contain outdated or incorrect information.

Hi,
Could we know the possible action list for SendCommand(...)?
Is it possible to send parameters?
exemple: pitch and pitch_value.

Thanks! :)
 

Posted Tue 08 Jul 03 @ 6:04 pm
The actions are the same for effects, skin or shortcuts.
You can find a list here:
http://www.virtualdj.com/support/developers/skin.html
Or you can look in the shortcut editor (which will always stay up to date whatever the version is, unlike the html file)

And yes you can add a value. "shift_loop +4" is a valid action.
 

Thanks a lot Master!
 

"shift_loop +4" is a valid action....
i'v' tryed with this example (and other)and it it don't work
ok with some action like pause.
What is the good syntax ?
Thx
 

You have to take care about the "when" value.
Ex:
SendCommand(Desk, pos, "pitch 2048");
this work but you have to wait the "pos" sample for exemple.
I tried others values and the best for my application is... "-1":
SendCommand(Desk, -1, "pitch 2048");//This set the pitch to zero.
The command is sent asap (I think.)
I hope this will help you.
 



(Old topics and forums are automatically closed)