Re: last char, Unicode and other probs.

2012-12-26 Thread FlexibleLearning.com
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

Re: last char, Unicode and other probs.

2012-12-25 Thread Richmond
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

Re: last char, Unicode and other probs.

2012-12-25 Thread Robert Sneidar
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

last char, Unicode and other probs.

2012-12-25 Thread Richmond
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