Page 1 of 1

Please, please, please...

Posted: 11 Mar 2014 00:19
by ahonoe
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?

Re: Please, please, please...

Posted: 11 Mar 2014 00:54
by nick_liine
Lemur 5.0 now supports string concatenation.

Re: Please, please, please...

Posted: 11 Mar 2014 02:38
by ahonoe
Thanks Nick. Where would I find documentation on string concatenation? I did not find it in the V5 addendum.

Re: Please, please, please...

Posted: 11 Mar 2014 07:47
by nick_liine
Have a look here:
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);