Please, please, please...
Please, please, please...
It's been a while since I've been by the board. Can anyone tell if arrays have been improved under version 5? Weak implementation was the main reason I lost interest. I need reasonable sizes (more than 127 bytes). Also does version 5 improve text handling?
Regards,
Scott
Scott
-
- Liine Staff
- Posts: 285
- Joined: 01 Oct 2010 11:06
Re: Please, please, please...
Lemur 5.0 now supports string concatenation.
Re: Please, please, please...
Thanks Nick. Where would I find documentation on string concatenation? I did not find it in the V5 addendum.
Regards,
Scott
Scott
-
- Liine Staff
- Posts: 285
- Joined: 01 Oct 2010 11:06
Re: Please, please, please...
Have a look here:
https://liine.net/en/community/user-library/view/455/
You can mix variables and strings with the + symbol:
https://liine.net/en/community/user-library/view/455/
You can mix variables and strings with the + symbol:
Code: Select all
f = getobject();
rect = getattribute(f, 'rect');
name = getattribute(f, 'name');
decl text = 'My name is ' + name + ', my width is ' + rect[2] + ', my size is ' + rect[3] + ', my value is ' + x;
setattribute(Text, 'content', text);