i need to make numbered 'boundaries', between certain numbers, you get a certain output if that number is inserted into a text field.

this is the error i encounter and want to be able to get round this, any ideas?
-Wynn
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseup
put fld "studentmark" into tNumber
## Now check the TWO conditions:
if tNumber >= 0 AND tNumber <= 40 then
answer "Fail!"
end if
end mouseup