How do i make 2 commands executed using just 1 "button" on my skin,
I want the regular function like : B,x,y,h,w,"MUSIC","MUSICPLAYER"
turned into something like this : B,x,y,h,w,"MUSIC","SpeechCMD "Hello World"
Printable View
How do i make 2 commands executed using just 1 "button" on my skin,
I want the regular function like : B,x,y,h,w,"MUSIC","MUSICPLAYER"
turned into something like this : B,x,y,h,w,"MUSIC","SpeechCMD "Hello World"
Hi Teaser,
You can use the following syntax, the @string@ is the command when you press and hold the button. Don't know if this helps.
/, B, x, y, w, h, Command;COMMANDCODES, Tooltip
B020,896,007,129,70,"VISU",@LOAD;Exit_Menu.skin@
In your case it would be something like
B,x,y,h,w,"MUSIC",@SpeechCMD "Hello World"@
KPJUK
in your example, the only part that's different is the tooltip...
but, answering your question, it's possible to have 2 commands in one button, just use || between commands. something like:
B01,x,y,w,h,"COMMAND1||COMMAND2","tooltip"
B,x,y,h,w,"MUSIC||SAY;Hello World",""
great,gonna try it!