Code: Select all
on mouseUp
if fld "TEKST" contains "shakes" & "wiggles" then
put "YUP" into fld "REZ"
else
put "NOPE" into fld "REZ"
end if
end mouseUp
"She shakes and wiggles across the stage like a snake."
This is a problem.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
if fld "TEKST" contains "shakes" & "wiggles" then
put "YUP" into fld "REZ"
else
put "NOPE" into fld "REZ"
end if
end mouseUp