Crossplatform EURO sign?
Robert Brenstein
rjb at robelko.com
Thu Jun 11 18:59:53 EDT 2009
On 11.06.09 at 21:59 +0300 Richmond Mathewson apparently wrote:
>BUT, if I put:
>
>on mouseUp
> put quote & fld "fHEX" & quote into FHEX
> put baseConvert(FHEX,16,10) into fld "fDEC"
>end mouseUp
>
>where fld "fHEX" contains 20Ac (or any other Hexadecimal number)
>
>it screws up and I get 133824
>
>POO!
>
Try
on mouseUp
put fld "fHEX" into FHEX
put baseConvert(FHEX,16,10) into fld "fDEC"
end mouseUp
Robert
More information about the use-livecode
mailing list