Search found 10 matches
- 03 Jul 2014 18:23
- Forum: Projects
- Topic: Binary (Lost) Please Help!
- Replies: 3
- Views: 1892
Re: Binary (Lost) Please Help!
Awesome! Thank you so much! You are a scholar and a gentleman!
- 03 Jul 2014 17:06
- Forum: Projects
- Topic: Binary (Lost) Please Help!
- Replies: 3
- Views: 1892
Binary (Lost) Please Help!
I lost my copy of a project I made called "Binary" and was wondering if anyone still had it. My most sincere gratitude would be in order if you, or someone you know, could PLEASE post it for me! Thanks!!!
I need to fix/update it!
-Damien
I need to fix/update it!
-Damien
- 29 Jun 2012 23:31
- Forum: General Discussion
- Topic: Equal Power Crossfade
- Replies: 3
- Views: 2462
Re: Equal Power Crossfade
Edit: Attachment Removed.
Reason: My example was linear, not constant!
-Damien
Reason: My example was linear, not constant!
-Damien
- 15 Jun 2012 22:33
- Forum: General Discussion
- Topic: I suck at programming. Need some simple help please.
- Replies: 4
- Views: 1288
Re: I suck at programming. Need some simple help please.
The reason I implemented one button per mode was to reduce any unwanted sonic artifacts when switching between modes. This is also possible in Reason by simply clicking on the mode you wish to select - as opposed to clicking the "mode" button. The only other Reason templates I have made, thus far ...
- 14 Jun 2012 14:38
- Forum: General Discussion
- Topic: I suck at programming. Need some simple help please.
- Replies: 4
- Views: 1288
Re: I suck at programming. Need some simple help please.
Although I designed it (see below) to control Dr. Rex in Reason 4, parts of it may still be helpful for you. http://liine.net/en/community/user-library/view/227/ Caveat: This was my first template (March 2012), so parts of the code may be suspect, clunky, and/or cumbersome at the very least. In my ...
- 16 May 2012 14:52
- Forum: General Discussion
- Topic: maximum number of elements?
- Replies: 1
- Views: 618
- 29 Apr 2012 22:42
- Forum: General Discussion
- Topic: fader on 1 when switch is 1
- Replies: 3
- Views: 990
Re: fader on 1 when switch is 1
Hey f,
A few ways to move a fader without touching it:
OR
OR
Enjoy!
-D
A few ways to move a fader without touching it:
Code: Select all
while (x==1)
Fader.x=1;
Code: Select all
if (x==0)
x;
else if (x==1)
Fader.x=1;
Code: Select all
x?Fader.x=1:x;
-D
- 22 Apr 2012 23:55
- Forum: General Discussion
- Topic: SIMPLE LED script
- Replies: 6
- Views: 2164
Re: SIMPLE LED script
Hey Joe,
I'm still trying to figure out a way to address specific LEDs in an array (via script)... alas. Any ideas?
-D
I'm still trying to figure out a way to address specific LEDs in an array (via script)... alas. Any ideas?
-D
If only...joebataz wrote:You must have a teleporter, a private plane, or a lot of money.
- 20 Apr 2012 02:11
- Forum: General Discussion
- Topic: SIMPLE LED script
- Replies: 6
- Views: 2164
Re: SIMPLE LED script
NP. Here's an even better resource: http://www.jazzmutant.com/workshop_tuto ... id=vectors
Enjoy,
Damien
Enjoy,
Damien
- 20 Apr 2012 00:22
- Forum: General Discussion
- Topic: SIMPLE LED script
- Replies: 6
- Views: 2164
Re: SIMPLE LED script
Hey Joe,
Hope this helps: Enjoy,
Damien
Hope this helps: Enjoy,
Damien