Does this not work...
on mouseUp
set the useUnicode to true
put last char of fld "INNPUT" into fld "OUTPUT"
end mouseUp
Best regards,
Hugh Senior
FLCo
Richmond wrote:
on mouseUp
set the useUnicode to true
---not entirely sure whetjer that line is necessary--
copy the last char
On 12/25/2012 06:29 PM, Robert Sneidar wrote:
Did you try char -2 to -1? Isn't unicode 2 byte?
No, I didn't; but, as per my usual tendency, i found a way to do what I
wanted to do about
5 minutes after I posted:
on mouseUp
set the useUnicode to true
---not entirely sure whetjer that line i
Did you try char -2 to -1? Isn't unicode 2 byte?
Bob
On Dec 25, 2012, at 5:46 AM, Richmond wrote:
> So here I am with a field full of unicodeText
> wanting to copy the last character across to another field,
> so tried these possibilities:
>
> on mouseUp
> set the useUnicode to true
> set th
So here I am with a field full of unicodeText
wanting to copy the last character across to another field,
so tried these possibilities:
on mouseUp
set the useUnicode to true
set the unicodeText of fld "OOTPUT" to the last char of fld "INNPUT"
end mouseUp
on mouseUp
set the useUnicode to tr