Euro symbol on Android devices
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Euro symbol on Android devices
Hi all,
I'm trying to put the euro symbol in a field but it seems impossible, under Android I always get a strange character. I did several tests but them failed even with the command set the html ... does anyone know if it is possible?
I'm trying to put the euro symbol in a field but it seems impossible, under Android I always get a strange character. I did several tests but them failed even with the command set the html ... does anyone know if it is possible?
Re: Euro symbol on Android devices
Hi,
On both the Dutch and English (UK) Android keyboards, I can choose the numeric keyboard, type alt and type €.
Kind regards,
Mark
On both the Dutch and English (UK) Android keyboards, I can choose the numeric keyboard, type alt and type €.
Kind regards,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: Euro symbol on Android devices
This is great, unfortunately if I put the "€" in a field programmatically or in the field contents via inspector, then on Android I cant see it...
Re: Euro symbol on Android devices
Hi,
That must be a font problem. Try setting the font to Droid Serif or Droid Sans or include a font with your standalone.
Kind regards,
Mark
That must be a font problem. Try setting the font to Droid Serif or Droid Sans or include a font with your standalone.
Kind regards,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: Euro symbol on Android devices
Thank you Mark. I will try.
PS
The problem occurs also in ask dialogs when I put "€" as defaultResponse
PS
The problem occurs also in ask dialogs when I put "€" as defaultResponse
Re: Euro symbol on Android devices
Update, the only way to avoid this problem is to avoid to use the € symbol under Android. Whether anyone has solved this problem please post info here. Thank you!
Re: Euro symbol on Android devices
Not sure if it works in a native text field but can you:
set char 1 of fld 1 to image "myEuro"?
Sure it would be a pain 'cause I'm guessing ₤ or ¥ don't work either.
Simon
set char 1 of fld 1 to image "myEuro"?
Sure it would be a pain 'cause I'm guessing ₤ or ¥ don't work either.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Euro symbol on Android devices
Thank you, I will try.Simon wrote:Not sure if it works in a native text field but can you:
set char 1 of fld 1 to image "myEuro"?
Sure it would be a pain 'cause I'm guessing ₤ or ¥ don't work either.
Simon
¥, £ and $ work great. The problem is only with €.
Re: Euro symbol on Android devices
It's actually "imagesource"
Simon
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Euro symbol on Android devices
Mhh... the statement don't works
I post the stack
Code: Select all
set char 1 of fld "Label Field" to imagesource "myEuro"
Last edited by Mag on Thu May 23, 2013 9:51 am, edited 1 time in total.
Re: Euro symbol on Android devices
Mag wrote:Mhh... the statement don't works
I post the stackCode: Select all
set char 1 of fld "Label Field" to imagesource "myEuro"
Umm, maybe better to check imagesource in the dictionnary which says:
Syntax:
set the imageSource of character to {imageID |imageName |imageURL |empty}
Examples:
set the imageSource of char 1 of line 2 of field "This" to 2533
set the imageSource of char thisChar of field 1 to "Arrow"
set the imageSource of last char of me to "binfile:My Image"
Thierry
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
Re: Euro symbol on Android devices
OK, thanks Thierry, now it work.
PS
With all the problems that this kind of solution has...
Sorry can't post the stack. After the site upgrade can't access to any advanced feature of the forum as emoticons buttons, buttons on edit post (eg Code, Quote), email notifications on new replays etc.
PS
With all the problems that this kind of solution has...

Sorry can't post the stack. After the site upgrade can't access to any advanced feature of the forum as emoticons buttons, buttons on edit post (eg Code, Quote), email notifications on new replays etc.