Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!
Ciao a tutti!
I'm doing another experiment with LC.
It is probably a stupid thing , I searched the forum but can not find anything (certainly for my fault and my limited English!). How do I run a script in a field?
I have attached an example!
Thanks to everyone if you will help me yet...
Ciao Dixie!
I'm trying to create a button "programmable" through external files (.txt). The external files contain the code, so that it can not build thousand applications per thousand needs!
Mariasole
"I'm back" - The Cyberdyne Systems Model 101 Series 800 Terminator
on mouseUp
--execute the code of field "EditableCode" ---> pig code!!!!
put fld "editablecode" into temp
set the script of fld "targetfield" to temp
send "mouseUp" to fld "targetfield"
end mouseUp
Thanks Craig,
I had also tried the "do" function but it did not work !
I tried the solution of Dixie and it works perfectly . Dixie Thanks for your time and for your expertise!
Thanks Craig for having come to help!
A kiss to you both!
Mariasole
( ^..^)ノ
"I'm back" - The Cyberdyne Systems Model 101 Series 800 Terminator
Mariasole wrote:I had also tried the "do" function but it did not work!
yep, you can only DO a COMMAND and not a complete script with handlers (mouseup) and included functions!
That's why Dixies advice will be the only solution to your special problem.