Reversed multislider

Discuss Lemur and share techniques.
Post Reply
ErikG
Newbie
Posts: 49
Joined: 06 Oct 2013 10:10

Reversed multislider

Post by ErikG »

I need a horizontal slider that is graphically reversed to a standard one.
Meaning I want it to default to full, and increase the ctl value output as I move the fader from left to right (like the standard one) but it should reduce its graphical size as it is increased.

It ought to be simple if I could set both the background and foreground color of the fader, but I can't find a way to do that.
Is it possible?

If not is there no other decent way to do this apart from using a multislider in bipolar mode and hiding half of it using a container?
Sound post production to feature film & TV.
Nuendo and ProTools. Dubstage with Euphonix S5MC 32 fader.
8 editing rooms without hardware controllers.
Softcore
Regular
Posts: 1613
Joined: 04 Nov 2012 08:34

Re: Reversed multislider

Post by Softcore »

Why dont ya try with a "range" object and use a script to lock either minimum or maximum value and only affect the other with your touch?

Just an idea!
ErikG
Newbie
Posts: 49
Joined: 06 Oct 2013 10:10

Re: Reversed multislider

Post by ErikG »

Thanks.
I really need to learn more scripting is the obvious answer :)

Lemur is awesome, but not so easy to figure out at times. I'd love to have a longer part in the manual with examples about scripting.
Sound post production to feature film & TV.
Nuendo and ProTools. Dubstage with Euphonix S5MC 32 fader.
8 editing rooms without hardware controllers.
Macciza
Regular
Posts: 1315
Joined: 07 Dec 2011 04:57
Location: Sydney, Australia.

Re: Reversed multislider

Post by Macciza »

ErikG wrote:I'd love to have a longer part in the manual with examples about scripting.
The difficulty here is that there are many different ways of achieving similar end results . . .
There are approaches that are simple/suitable for basic projects that don't work well at larger levels
Likewise some scripting approaches may be overkill for smaller projects . . .

Learning fundamentals of C style programming will help get you started in a structured way
Learning more object oriented approaches will help you plan and implement more complex scripts

Ultimately pulling apart others projects can reveal a variety of Lemur ways of doing things . . .
You may want to look at http://liine.net/en/community/user-library/view/213/ . . .
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]
ErikG
Newbie
Posts: 49
Joined: 06 Oct 2013 10:10

Re: Reversed multislider

Post by ErikG »

Thats exactly what I mean.
Learning C as a hobby is probably not what most sound folks are comfortable spending their free time doing.

I'm not one of them though...
Can you recommend a basic foundation tutorial on C by any chance?
The more it relates to how the scripting is made in Lemur the better.
Sound post production to feature film & TV.
Nuendo and ProTools. Dubstage with Euphonix S5MC 32 fader.
8 editing rooms without hardware controllers.
Macciza
Regular
Posts: 1315
Joined: 07 Dec 2011 04:57
Location: Sydney, Australia.

Re: Reversed multislider

Post by Macciza »

Hi
First some solutions to the original issue . . .
Reversed MultiSlider can be achieved this way
Set MultiSlider color to Black, set Light to say 0.25 - Left side is DarkGrey , Right side is White
Light can also be set to an array to get different shades on left side, say {0.125, 0.25, 0.375, 0.5}

And heres a bit of a prototype for a reversed horizontal Fader of sorts . .
^^RevHorizFader_.jzlib
(5.31 KiB) Downloaded 79 times
Basically just a really basic one because lots of the details will not be relevant but the core principles are important
The syntax (ie. how( 'you', write.stuff(proper);) is very much the same for what is use in Lemur
The rest is sort of just logic, and recipes, and breaking things down and planning ways to do things
The rest beyond that is the various ways to achieve the same things by programming methods
By using the builtin options or scripting your own you can achieve the same things
And that ends up just taking time and finding stuff out etc - and thats ongoing . . .

Anyway am hoping to get to do some more tutorial stuff
Meanwhile just check out and go through the stuff that is available.

Cheers
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]
Post Reply