Conversion to Livecode 8+
Posted: Tue Dec 27, 2016 5:15 pm
Hi. I've been scripting in LC 6+ for some time but now I wish to convert my stacks over to LC8. It seems slower for most things. For example, the script combo below used to take about 5 seconds and now, in LC8, takes about 20 seconds. Is there anything I should be doing to speed things up?
function theLibraryScripts p1,p2,p3
put empty into t1
put the libraries into t2
repeat for each line x in t2
put (the script of stack x) & cr after t1
end repeat
return t1
end theLibraryScripts
on theLibraryScripts p1,p2,p3
put theLibraryScripts(p1,p2,p3) into field 1
end theLibraryScripts
Also, I'd bet that someone has a note sheet for LC8 conversion if you wish to share it.
Thanks, Joseph
function theLibraryScripts p1,p2,p3
put empty into t1
put the libraries into t2
repeat for each line x in t2
put (the script of stack x) & cr after t1
end repeat
return t1
end theLibraryScripts
on theLibraryScripts p1,p2,p3
put theLibraryScripts(p1,p2,p3) into field 1
end theLibraryScripts
Also, I'd bet that someone has a note sheet for LC8 conversion if you wish to share it.
Thanks, Joseph