When you start VDJ it does not remember the last video effects. e.g I always use a certain Video FX wich I always have to turn on whenever I start VDJ. Same with the effects on the sampler. Is there an option that will remember the video fx and sampler fx or is this only resolved via a script?
geposted Fri 14 Mar 25 @ 10:30 am
No. It's the default and expected behavior that after a fresh start of the program all effects are off.
If you want particular effects to get enabled automatically when you start the program, you need to script them.
If you want particular effects to get enabled automatically when you start the program, you need to script them.
geposted Fri 14 Mar 25 @ 10:36 am
maybe you can help me troubleshoot. If I assign the script below to a button it works:
if I try this on ONINIT it only activates the sampler effect but not the video fx
effect_active 'sampler' & sampler_effect "LoadMax64" on & video_fx "Blur Black Bars" on
if I try this on ONINIT it only activates the sampler effect but not the video fx
wait 2000ms & effect_active 'sampler' & sampler_effect "LoadMax64" on & video_fx "Blur Black Bars" on
geposted Fri 14 Mar 25 @ 2:48 pm
sampler_effect isn't a verb
geposted Fri 14 Mar 25 @ 3:26 pm
effect_active sampler 'Loudmax64'
geposted Fri 14 Mar 25 @ 4:44 pm
The sampler effect actually works via ONINIT .... my problem is that the video_fx does not get activated via ONINIT while it does work when assigned to a button or key. For ONINIT how do I activate both the video FX "Blur Black Bars" and the Sampler FX "LoadMax64"
geposted Fri 14 Mar 25 @ 10:42 pm