i have deploy the same app in ios and android,in the ios all the letters show up ok.(greek letters).
In android the greek letter (π) have disappear,but the capital letter (Π) is ok.
the problem exist in the "label fields",anyone know something about this?
is bug or i do again something wrong?
thx guys
unicode or bug in android ?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: unicode or bug in android ?
Hi vedus,
try this
Simon
try this
Code: Select all
on mouseUp
set the useUnicode to true
set the unicodeText of field 1 to numToChar(960)
end mouseUp
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: unicode or bug in android ?
hi simon thank you,but that is no resolve the problem.Simon wrote:Hi vedus,
try thisSimonCode: Select all
on mouseUp set the useUnicode to true set the unicodeText of field 1 to numToChar(960) end mouseUp
if i put the above code the label field contain only the letter (π) and the word disappear(replaced) something like bellow in the photo. here is the original and the missing letter. the problem exist only in the android,so i thing have to do with android platform,because in the ios is ok.
i know the solution with hidden fields and set the unicode to this fields,but here is many fields and all is on the greek language,and only one letter is missing

(update)
i have make the test with hidden field and the code bellow
Code: Select all
put uniDecode(the unicodetext of fld "t01","UTF8") into Rtext
set the unicodeText of field "t1" to uniEncode (Rtext,"UTF8")
Droid Sans
Droid Sans Mono
Droid serif
but still the letter is the same like the photo.
is possible to include font with unicode support for this platform?
Re: unicode or bug in android ?
Hi,
The Droid font does contain π.
Simon
The Droid font does contain π.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: unicode or bug in android ?
well the only solution i have find until now is to change the fld's with buttons and paste the text in the labels.Simon wrote:Hi,
The Droid font does contain π.
Simon
With this trick is working,but really i don't know why this behaviour from android platform..
