Anmelden:     


Forum: Old versions

Topic: Script Help Please............... - Page: 2

Dieser Teil des Themas ist veraltet und kann veraltete oder falsche Informationen enthalten

I'm pretty sure I have but I'm at work so ill link it if I have it.
 

Ok heres what the mapping on my Pioneer DJM 850 looks like,



Ok so when I press this button it resets my filter but I want the first parameter knob on VFilter to reset to 50% when I press this button. I cant seem to make it work so any help is appreciated.
 

whatever

& "fx name" 50%
 

Nope that did nothing.......

BUT

I just got it, toggle '$ColorFilter' & deck 1 effect_select 'VFilter' & effect_slider 1 50%

Thanks for time Loco.
 

beatbreaker1 wrote :


I just got it, toggle '$ColorFilter' & deck 1 effect_select 'VFilter' & effect_slider 1 50%

Thanks for time Loco.

Or even shorter: toggle '$ColorFilter' & effect_slider 'VFilter' 1 50%

PS: I'm not sure that you really want to use deck assignment on your script.
 

Thanks Phantom, I'll try it out when I get home tonight
 

toggle '$ColorFilter' & effect_slider 'VFilter' 1 50%

Only seems to work on deck 1. I need it to work on all decks [1-4].
 

beatbreaker1 wrote :
toggle '$ColorFilter' & effect_slider 'VFilter' 1 50%

Only seems to work on deck 1. I need it to work on all decks [1-4].


Then you have to go the "hard" way:
toggle '$ColorFilter' & deck 1 effect_slider 'VFilter' 1 50% & deck 2 effect_slider 'VFilter' 1 50% & deck 3 effect_slider 'VFilter' 1 50% & deck 4 effect_slider 'VFilter' 1 50%
 

Yeah that's what I ended up doing lastnight.

Thanks for the time
 

PhantomDeejay wrote :
Then you have to go the "hard" way:
toggle '$ColorFilter' & deck 1 effect_slider 'VFilter' 1 50% & deck 2 effect_slider 'VFilter' 1 50% & deck 3 effect_slider 'VFilter' 1 50% & deck 4 effect_slider 'VFilter' 1 50%


how about

toggle '$ColorFilter' & repeat_start_instant "rsiResetVFilter" 33ms 4 & effect_slider 'VFilter' 1 50% & select

Same result, isn't it?
Inspired a script wish or 3 with this thread breaker, good to see you joining the dots, all it takes is practice.

 

Thanks Loco,

How about this, I want video fx's to go with all my color fx's which are

Noise, Gate and Crush, I already have the Filter done.

What video fx's would go good with those 3?? Since we don't these type of fx's like SV I have to do it all myself, lol!
 

locodog wrote :

how about
toggle '$ColorFilter' & repeat_start_instant "rsiResetVFilter" 33ms 4 & effect_slider 'VFilter' 1 50% & select

Same result, isn't it?


It depends on your other mappings and stuff.
Generally speaking switching the "selected" deck via this type of scripts should be avoided.
If a user has actions that follow the selected deck it could create issues. Also, "select" switches "pfl" as well.
On this particular case I guess it should work without any issues. But generally speaking you should always consider the side-effects of the script commands.
 

I normally do but I was pleased by the elegance, and I'm still joining dots myself with what can be done with RSI's.
 

Ok so I have a Pioneer DDJ-SP1 and when ever I've used it with another controller like a Mixdeck Quad if I hit the deck 3 or 4 buttons on the SP1 it switches the Mixdeck as well.

This does not happen when I am using my CDJ 850's.

Can someone please tell me how to make my CDJ's switch decks when I press the deck switch buttons on my SP1.

Any help would be greatly appreciated.
 

Can this even be done without changing the definition file of the CDJ??
 

You need to assign your CDJ's to control deck "left" and deck "right"
Then, changing the left & right deck with SP1 will also affect CDJ's
 

Ahh I see now, ok ill give it a try and see what I can get done.

Thanks for the time bro, most appreciated.
 

Ok this is harder then I thought it would.be, can I get an example please??
 

I dont think that the CDJs can be assigned as left and right. They can be assigned to a "single" deck, so 1,2,3 or 4 in your case.
If you change the left or right decks from the DDJ-SP1, it will not affect the CDJs. You will have to use the EJECT button.

However, there could be some action to assign to the Deck Swap buttons of your DDJ-SP1.
Something like
DECK_SWITCH_LEFT --> deck 1 leftdeck ? deck 3 leftdeck & deck 3 assign_controller 'CDJ850' 1 : deck 1 leftdeck & deck 1 assign_controller 'CDJ850' 1
DECK_SWITCH_RIGHT --> deck 2 rightdeck ? deck 4 rightdeck & deck 4 assign_controller 'CDJ850' 2 : deck 2 rightdeck & deck 2 assign_controller 'CDJ850' 2
 

Ok Thanks, ill give this another try tonight and report back.
 

91%