OK, yes i'm an idiot.. this is probably something really simple, but I cant figure it out.. LOL
What i want is;
to be able to press a key on my keyboard (lets say the 'e' key )
and everytime I press it the "clipbank" plugin swtichs to the next "ambient" video ?
thanx!
What i want is;
to be able to press a key on my keyboard (lets say the 'e' key )
and everytime I press it the "clipbank" plugin swtichs to the next "ambient" video ?
thanx!
Posted Fri 03 Jul 09 @ 4:35 pm
I got the first part;
I can activate/turn off the plug-in with a single key press.
Key: 'C' = video_fx_select "clipbank" & video_fx
but the next part
Key: 'E' = video_fx_button +1
just brings up the first "clipbank video" and doesnt "add one"..???
how do I get it too "move to the next selection" using a single key?
thanx!
I can activate/turn off the plug-in with a single key press.
Key: 'C' = video_fx_select "clipbank" & video_fx
but the next part
Key: 'E' = video_fx_button +1
just brings up the first "clipbank video" and doesnt "add one"..???
how do I get it too "move to the next selection" using a single key?
thanx!
Posted Fri 03 Jul 09 @ 4:42 pm
hippydog wrote :
Key: 'E' = video_fx_button +1
just brings up the first "clipbank video" and doesnt "add one"..???
how do I get it too "move to the next selection" using a single key?
thanx!
just brings up the first "clipbank video" and doesnt "add one"..???
how do I get it too "move to the next selection" using a single key?
thanx!
You can't +1 on a button like that AFAIK.
You could try a slightly more convoluted way:
cycle $clipbank 12 & var_equal $clipbank 0 ? video_fx_button 1 : var_equal $clipbank 1 ? video_fx_button 2 : var_equal $clipbank 2 ? video_fx_button 3 : var_equal $clipbank 3 ? video_fx_button 4 : var_equal $clipbank 4 ? video_fx_button 5 : var_equal $clipbank 5 ? video_fx_button 6 : var_equal $clipbank 6 ? video_fx_button 7 : var_equal $clipbank 7 ? video_fx_button 8 : var_equal $clipbank 8 ? video_fx_button 9 : var_equal $clipbank 9 ? video_fx_button 10 : var_equal $clipbank 10 ? video_fx_button 11 : var_equal $clipbank 11 ? video_fx_button 12
Might need some tweaking, but should roughly work.
Posted Sat 04 Jul 09 @ 1:00 pm
I was afraid something like that is needed.. ;-)
I'll have to try it I guess!
I'll have to try it I guess!
Posted Sun 05 Jul 09 @ 1:01 pm
How come we cant use a variable in the video_fx_button ???
we can use variables everywhere else? but not there?
but, yep the "convoluted way" does work!
thanx!
we can use variables everywhere else? but not there?
but, yep the "convoluted way" does work!
thanx!
Posted Sun 05 Jul 09 @ 3:09 pm