I set the property explicitVariables to false, which I also confirmed through the message box, however, when I try to put a field into a variable, I got the following message
."button "strip letters": compilation error at line 2 (Chunk: can't create a variable with that name (explicitVariables?)) near "x", char 43"
Here is the very simple code I am using that generated the error message described above
Code: Select all
on mouseUp
put the number of lines of fld "strip" into x
repeat with 1=1 to noLines
put the second item of line i of fld "strip " & return after fld"scramble"
end repeat
end mouseUp