Re: How to use the multiline Message Box area??
Posted: Mon Feb 18, 2019 8:27 pm
@bogs
if you're trying to debug your app after it's compiled, you can take advantage of the fact that LC is interpreted at runtime by adding something like:
That's all it takes to get started with adding the ability to execute arbitrary code on the fly.
You could check the contents of a global if you responded with:
if you're trying to debug your app after it's compiled, you can take advantage of the fact that LC is interpreted at runtime by adding something like:
Code: Select all
on mouseUp
ask "Command, please"
if it is not empty then do it
end mouseUp
You could check the contents of a global if you responded with:
Code: Select all
global goop; answer goop