Code: Select all
on mouseUp
put "My Text" into myVariable77
put ("myVariable" & "77") into variableThatHoldsTheNameOfOriginalVariable
answer variableThatHoldsTheNameOfOriginalVariable
end mouseUp
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
put "My Text" into myVariable77
put ("myVariable" & "77") into variableThatHoldsTheNameOfOriginalVariable
answer variableThatHoldsTheNameOfOriginalVariable
end mouseUp
Code: Select all
on mouseUp
put "My Text" into myVariable77
put ("myVariable" & "77") into variableThatHoldsTheNameOfOriginalVariable
DO ("answer" && variableThatHoldsTheNameOfOriginalVariable)
end mouseUp
Code: Select all
put "My Text" into myVariable77
put ("myVariable" & "77") into variableThatHoldsTheNameOfOriginalVariable
put ("The content of the variable is: " & variableThatHoldsTheNameOfOriginalVariable) into myVariable