Search found 38 matches
- 23 Oct 2016 20:47
- Forum: General Discussion
- Topic: Lemur still actively developed/bug fixed?
- Replies: 25
- Views: 9496
Re: Lemur still actively developed/bug fixed?
Which part is causing the problem?
- 23 Oct 2016 10:53
- Forum: General Discussion
- Topic: Made template on Jazzmutant Lemur, will it work on iPad?
- Replies: 3
- Views: 5948
Made template on Jazzmutant Lemur, will it work on iPad?
I've created a template on the Jazzmutant Lemur. Will this work on the iPad?
I'm assuming yes because I don't think Liine removed anything from the original but I just wanted to confirm.
I'm assuming yes because I don't think Liine removed anything from the original but I just wanted to confirm.
- 19 Oct 2016 13:36
- Forum: General Discussion
- Topic: Creating a global variable that can be accessed anywhere
- Replies: 1
- Views: 1767
Re: Creating a global variable that can be accessed anywhere
Ignore me. An expression works fine. Do not ask me why I tried to over complicate that lmao!
- 19 Oct 2016 12:50
- Forum: General Discussion
- Topic: Creating a global variable that can be accessed anywhere
- Replies: 1
- Views: 1767
Creating a global variable that can be accessed anywhere
Sorry for another post. I'm digging deep into this lemur scripting and hitting a few issues. I need to create a global variable. This will store an integer value. In my example it's the octave. The variable needs to be accessed by other functions. For example, when pressing a button I need to ...
- 19 Oct 2016 11:39
- Forum: General Discussion
- Topic: Displaying integers in a text object?
- Replies: 14
- Views: 4176
Re: Displaying integers in a text object?
Actually it works for single numbers, but when I use the number 869 it will only print 86 and ignore the 9. I'll debug it and get it working :) Hmm - the original worked for me across a wide range of numbers. Maybe in moving it to a function something got missed. Anyway, your posted solution is ...
- 19 Oct 2016 11:04
- Forum: General Discussion
- Topic: Displaying integers in a text object?
- Replies: 14
- Views: 4176
Re: Displaying integers in a text object?
The following works fine: /* * This function converts an integer value to a string. * intVal: integer value */ decl val, tmp, j, i=0; if(intVal == 0) return '0'; while(intVal>0) { tmp[i++] = (intVal % 10) + 0x30; intVal = floor(intVal / 10); } for(j=0; j<=sizeof(tmp); j++) val[j] = tmp[sizeof(tmp ...
- 19 Oct 2016 11:04
- Forum: Legacy
- Topic: Anyone have a copy of the firmware?
- Replies: 2
- Views: 6216
Re: Anyone have a copy of the firmware?
wrong thread. Deleted message
- 19 Oct 2016 10:43
- Forum: General Discussion
- Topic: Displaying integers in a text object?
- Replies: 14
- Views: 4176
Re: Displaying integers in a text object?
Actually it works for single numbers, but when I use the number 869 it will only print 86 and ignore the 9. I'll debug it and get it working
- 19 Oct 2016 10:30
- Forum: General Discussion
- Topic: send something (ctlout) on interface change?
- Replies: 1
- Views: 1037
Re: send something (ctlout) on interface change?
I want my template to send a cc# value when i change the interface. Whats the best way to do this? Ignore me if I'm incorrect, I've only just started scripting with the lemur. But, one thing that springs to mind is to create a script within the interface that contains an init() function that runs ...
- 19 Oct 2016 10:02
- Forum: General Discussion
- Topic: Displaying integers in a text object?
- Replies: 14
- Views: 4176
Re: Displaying integers in a text object?
Works
Thanks!
Code: Select all
setattribute(testTxt, 'content', Helpers.intToString(49));