Hello,
Is it possible to assign a hot key for switching "useVideoSkin" on/off?
Better yet, how about a cue so that we could pre-program this into a show and have it automatically switched on/off depending on the video material used.
Thanks,
Peter
Is it possible to assign a hot key for switching "useVideoSkin" on/off?
Better yet, how about a cue so that we could pre-program this into a show and have it automatically switched on/off depending on the video material used.
Thanks,
Peter
Posted Wed 09 Sep 20 @ 6:19 pm
not entirely sure if this is what i understand of your request due to the fact that i have only recently delved into virtual dj 2020/2021 prior to using version 7 for too many years. when in video mode, clicking (with your mouse, or tapping on a touch screen) on the 'main' video image within the video tab of your interface skin will toggle video on and off i.e. whether video is shown or not.
Posted Wed 09 Sep 20 @ 6:54 pm
Dj Straftanz wrote :
,Is it possible to assign a hot key for switching "useVideoSkin" on/off?
Use a keyboard or custom button with the action:
setting 'useVideoskin'
Posted Wed 09 Sep 20 @ 7:26 pm
Rune (dj-in-norway) wrote :
Use a keyboard or custom button with the action:
setting 'useVideoskin'
Dj Straftanz wrote :
,Is it possible to assign a hot key for switching "useVideoSkin" on/off?
Use a keyboard or custom button with the action:
setting 'useVideoskin'
AWESOME! Thank you Rune!!! I made a toggle action, and it works great:
setting "useVideoSkin" ? setting "useVideoSkin" off : setting "useVideoSkin" on
Very cool! Is there any way to automate this so I can program some songs to have skin and some to not have it? (Cues, or some other methods?)
Posted Mon 14 Sep 20 @ 5:30 pm
mark your tracks with a unused tag entry, lets say User 1 "1"
onSongload mapping have a script like this to query the tag
repeat_start 'BNB' 100ms & is_audiable ? repeat_stop 'BNB' & param_equal `get_loaded_song 'user 1'` 1 ? setting "useVideoSkin" on : setting "useVideoSkin" off :
onSongload mapping have a script like this to query the tag
repeat_start 'BNB' 100ms & is_audiable ? repeat_stop 'BNB' & param_equal `get_loaded_song 'user 1'` 1 ? setting "useVideoSkin" on : setting "useVideoSkin" off :
Posted Mon 14 Sep 20 @ 5:53 pm
If you put it into the keyboard mapping "ONSONGLOAD" you do not have to repeat it all 100ms:
param_equal `get_loaded_song 'user 1'` 1 ? setting "useVideoSkin" on : setting "useVideoSkin" off
Posted Mon 14 Sep 20 @ 9:24 pm
@monty if you
load & play
that works ok, but rsi & is_audiable is smoother for real world use.
load & play
that works ok, but rsi & is_audiable is smoother for real world use.
Posted Mon 14 Sep 20 @ 10:09 pm