Search found 1525 matches

by Softcore
26 Jan 2021 08:20
Forum: Projects
Topic: Advanced Keys v3
Replies: 1
Views: 7690

Advanced Keys v3

Advanced Keys v3 is a midi keyboard capable to send velocity and aftertouch messages. Velocity is dependent on the position of the fingers on the Y axis of the keys. Aftertouch is generated in relation to the distance travelled by the finger along the Y axis of the key. Also the keys X axis can be ...
by Softcore
25 Sep 2016 16:43
Forum: Troubleshooting
Topic: Using accelerometer to control a fader...
Replies: 1
Views: 1520

Re: Using accelerometer to control a fader...

First of all, x is an "expression" not an attribute...so you should really use

Code: Select all

setexpression(Fader,'x',LR);
or simply

Code: Select all

Fader.x = LR;
Here are some working ideas that you can copy stuff from
https://forum.liine.net/viewtopic.php?f ... 13&p=10788
by Softcore
15 Jun 2016 14:47
Forum: General Discussion
Topic: Can this be done with a Switches/Pad Object?
Replies: 5
Views: 4859

Re: Can this be done with a Switches/Pad Object?

Ok sorry for the delay - damn day job lol....so here's how we go about it....we decl an empty variable c (from "counter"). This one is null by default so its 0. We advance it by one ( c ++ ) every time we "scan" and find a "pressed" pad. BUT then......we actually scan ONLY if c is smaller than 5 ...
by Softcore
15 Jun 2016 06:37
Forum: General Discussion
Topic: Can this be done with a Switches/Pad Object?
Replies: 5
Views: 4859

Re: Can this be done with a Switches/Pad Object?

Valid question because you missed one tiny bit of detail. Now that our "s" is the on-off value and not the actual "x"....the pads are really not "on" per se. We just use the "s" array to "light" them up AS IF they were on. Check out the "light" field of the Pads - you will see thjat instead of a ...
by Softcore
07 Jun 2016 10:43
Forum: General Discussion
Topic: XYPad in Cubase
Replies: 1
Views: 2295

Re: XYPad in Cubase

Can you share the XYpad you are trying to use? Hard to say without it.
by Softcore
07 Jun 2016 10:42
Forum: General Discussion
Topic: Avoid resending MIDI in "On Midi" script?
Replies: 1
Views: 2520

Re: Avoid resending MIDI in "On Midi" script?

Perhaps create a new expression and "ditch" x?
by Softcore
06 Jun 2016 21:41
Forum: General Discussion
Topic: Ableton Live with AUs/VSTs
Replies: 1
Views: 2575

Re: Ableton Live with AUs/VSTs

replied elsewhere
by Softcore
06 Jun 2016 21:40
Forum: Introductions
Topic: Hi + Mapping plugins in Ableton Live
Replies: 1
Views: 1841

Re: Hi + Mapping plugins in Ableton Live

Use the provided "user remote script" (Python) that Ableton Live provides. This way you can design a simple lemur controller that maps itself to the "exposed" parameters of every plug in you happen to "focus" on by banks of 8. And here's where to find it ( win or Mac) http://createdigitalmusic.com ...
by Softcore
06 Jun 2016 21:31
Forum: Troubleshooting
Topic: Range object
Replies: 1
Views: 3466

Re: Range object

Map 'out' NOT x ;)
by Softcore
06 Jun 2016 21:22
Forum: General Discussion
Topic: Need help with something again
Replies: 9
Views: 6914

Re: Need help with something again

mouseout(target, x, y)

or

clickout(target, x, y)