How do you tell a fader to grid or ungrid with a switch?
Thanx
JS
Grided faders...
Re: Grided faders...
Hi
Have a look at section 12.5 of the manual - see the attributes list . . .
Then check out section 10.4 and 10.6 for attribute setting info and grid example
Cheers
MM
Have a look at section 12.5 of the manual - see the attributes list . . .
Then check out section 10.4 and 10.6 for attribute setting info and grid example
Cheers
MM
iMac 2.8G i7 12G 10.6.8/10.7.2, Legacy Dexter/Lemur, Liine Lemur/iPad2, KMI SoftStep, 12Step & QuNeo , B-Controls, Mackie C4 etc
MaxMSP, Live Suite, Native Instrument stuff, etc Modified Virtual Guitar System etc All Projects/Modules © CC-BY-NC-SA[*][/b]
MaxMSP, Live Suite, Native Instrument stuff, etc Modified Virtual Guitar System etc All Projects/Modules © CC-BY-NC-SA[*][/b]
Re: Grided faders...
I have looked and did what the manual said (instructions in a script) but there's a little yellow triangle with a red "!" besides the script... I have checked the spelling, the spaces and the punctuation... Here is my script: setattribute(Fader,'grid',1) is setted "On Expression" and with an "x" beside... What noob error am I doing you think?
Thanx!
Thanx!
Re: Grided faders...
Lemur scripting language is case sensitive. Your script should look like this:
Hope that helps,
B.
Code: Select all
setattribute(Fader,'Grid',1);
B.
Win7 64, Ipad Lemur, Cubase6 and a bunch of Roland Synths and Samplers
Re: Grided faders...
Now the code is not red but the fader won't grid...
What's wrong in this picture?
What's wrong in this picture?
- Attachments
-
- Screen Shot 2012-03-31 at 2.00.54 AM.png (20.64KiB)Viewed 3749 times
Re: Grided faders...
Hi
You also need to set the number of steps in the behaviour pane - it defaults to 1
Either set it there or programmatically like you did the grid on/off . . .
Cheers
MM
You also need to set the number of steps in the behaviour pane - it defaults to 1
Either set it there or programmatically like you did the grid on/off . . .
Cheers
MM
iMac 2.8G i7 12G 10.6.8/10.7.2, Legacy Dexter/Lemur, Liine Lemur/iPad2, KMI SoftStep, 12Step & QuNeo , B-Controls, Mackie C4 etc
MaxMSP, Live Suite, Native Instrument stuff, etc Modified Virtual Guitar System etc All Projects/Modules © CC-BY-NC-SA[*][/b]
MaxMSP, Live Suite, Native Instrument stuff, etc Modified Virtual Guitar System etc All Projects/Modules © CC-BY-NC-SA[*][/b]
-
- Liine Staff
- Posts:126
- Joined:14 Dec 2011 12:12
Re: Grided faders...
No, actually, the grid attribute is 'grid', not 'Grid'.bxsj wrote:Lemur scripting language is case sensitive. Your script should look like this:Hope that helps,Code: Select all
setattribute(Fader,'Grid',1);
B.
You should also set the steps number. For instance :
Code: Select all
setattribute(Fader, 'grid', 1);
setattribute(Fader, 'grid_steps', 3);
Re: Grided faders...
It works but how do I make it a toggle? When I hit the switch it goes in grid mode but doesn't ungrid when I press the switch again...
Thanx again!!! I'm learning a lot from you guys!!!
Thanx again!!! I'm learning a lot from you guys!!!