In VDJ7.4 using only "auto_crossfade" mapped to a key would auto fade from currently playing deck to incoming (Selected) deck. A 2nd press of the button could stop the auto_crossfade, give time for outgoing last phrase then another press auto completes the fade.
Mind you if I'm mixing from the left I'm starting at about 20% crossfader and if from the right about 80% crossfader (meaning a little open).
In VDJ 2024 and 2025 using "auto_crossfade" goes the opposite way. I've tried adding deck default or deck active before the script to no avail. Is there any way to get the old VDJ7 and prior behaviour? For the auto crossfade to go towards the incoming deck, not outgoing track.
Mind you if I'm mixing from the left I'm starting at about 20% crossfader and if from the right about 80% crossfader (meaning a little open).
In VDJ 2024 and 2025 using "auto_crossfade" goes the opposite way. I've tried adding deck default or deck active before the script to no avail. Is there any way to get the old VDJ7 and prior behaviour? For the auto crossfade to go towards the incoming deck, not outgoing track.
发表时间 Fri 03 Jan 25 @ 2:16 am
ONSONGLOAD
set $lastLoaded `get_deck`
BUTTON
auto_crossfade ? auto_crossfade off : var $lastLoaded 1 ? auto_crossfade 0% : auto_crossfade 100%
or just
BUTTON
auto_crossfade ? auto_crossfade off : deck 1 select ? auto_crossfade 0% : auto_crossfade 100%
set $lastLoaded `get_deck`
BUTTON
auto_crossfade ? auto_crossfade off : var $lastLoaded 1 ? auto_crossfade 0% : auto_crossfade 100%
or just
BUTTON
auto_crossfade ? auto_crossfade off : deck 1 select ? auto_crossfade 0% : auto_crossfade 100%
发表时间 Fri 03 Jan 25 @ 2:39 am
Thank you. I appreciate.
发表时间 Fri 03 Jan 25 @ 11:36 pm