Bill Marriott wrote:
It appears that only the letters a,b,c,d,e,f, and x operate the way you are expecting.

on mouseUp
    repeat for each char x in "abcdefghijklmnopqrstuvwxyz"
    put "111" & x into wholeThing
    put ">" & token 1 of wholeThing & "<" & return after fld 1
    end repeat
end mouseUp


   put token 1 of "s800"
...returns "s800", but this:

   put token 1 of "800s"
...returns "800".

So it's hex. Not sure where the "x" fits in though.

--
Jacqueline Landman Gay         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to