Hi,
I am new to VDJ script. I came a long way but I want to accomplish the following.
On a button press use the backspin effect on deck 1 when the backspin is finished I want to continue the song to play at the spot where the song should be when in the time the backspin is played (eg backspin goes off on 0:30, i takes 2 seconds, song continues on 0:32).
Of-course in Sync with the number on deck 2.
I thought I'll try it in passes so I tried
deck 1 effect 'backspin' active & play. This will cause the effect to go off but not continue playing.
Is there a way to accomplish the thing I described?
Thanks in advance.
(version VDJ is 7.0.4)
I am new to VDJ script. I came a long way but I want to accomplish the following.
On a button press use the backspin effect on deck 1 when the backspin is finished I want to continue the song to play at the spot where the song should be when in the time the backspin is played (eg backspin goes off on 0:30, i takes 2 seconds, song continues on 0:32).
Of-course in Sync with the number on deck 2.
I thought I'll try it in passes so I tried
deck 1 effect 'backspin' active & play. This will cause the effect to go off but not continue playing.
Is there a way to accomplish the thing I described?
Thanks in advance.
(version VDJ is 7.0.4)
Posted Mon 15 Aug 11 @ 10:26 am
try : play instead of &
Posted Mon 15 Aug 11 @ 11:06 am
Sorry, this is not possible.
The default backspin effect will perform a backspin and then stop the song.
You can't currently delay one VDJscript action until the previous has finished.
Your mapping above will activate backspin and then immediately start the song playing (If it's not already.)
To do what you are looking for would require a custom backspin plugin that has been written to do this.
The default backspin effect will perform a backspin and then stop the song.
You can't currently delay one VDJscript action until the previous has finished.
Your mapping above will activate backspin and then immediately start the song playing (If it's not already.)
To do what you are looking for would require a custom backspin plugin that has been written to do this.
Posted Mon 15 Aug 11 @ 11:22 am
mm thats to bad.
So there's no way to create a function/macro like javascript;
(pseudo code)
function doCoolBackSpin (){
var start = getStart seconds
run effect;
play on start + secondsTakesBackspin ;
sync
}
And do a function call when button x is pressed?
Is it doable/easy to create an own plugin? Can somebody give me some pointers were to start on the wiki I cant find any step by step examples only i have to do it in C++.
thanks.
So there's no way to create a function/macro like javascript;
(pseudo code)
function doCoolBackSpin (){
var start = getStart seconds
run effect;
play on start + secondsTakesBackspin ;
sync
}
And do a function call when button x is pressed?
Is it doable/easy to create an own plugin? Can somebody give me some pointers were to start on the wiki I cant find any step by step examples only i have to do it in C++.
thanks.
Posted Mon 15 Aug 11 @ 11:40 am
Not currently with VDJscript. It's designed for mapping MIDI controllers not for writing complex programs.
Information on the plugin API can be found on the following page http://www.virtualdj.com/wiki/Plugin_Guide.html and/or you can ask in the plugins forum: http://www.virtualdj.com/forums/14/VirtualDJ_Plugins.html
Information on the plugin API can be found on the following page http://www.virtualdj.com/wiki/Plugin_Guide.html and/or you can ask in the plugins forum: http://www.virtualdj.com/forums/14/VirtualDJ_Plugins.html
Posted Mon 15 Aug 11 @ 11:57 am