>on mouseup
>  repeat with x = 1 to 33
>    show image "(x).jpg"
>    put "(x)" into fld "Pic"
>    wait (The text of fld "Wait") seconds with messages
>    hide image "(x).jpg"
>  end repeat
>end mouseup

Try this 

on mouseup
  repeat with x = 1 to 33
    show image (x&".jpg")
    put x into fld "Pic"
    wait (fld "Wait") seconds with messages
    hide image (x&".jpg")
  end repeat
end mouseup

some times I have to put the name of something into a variable first.

put (x&".jpg") into imagename
show image imagename
hide image imagename

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to