ankitgaur
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2017
06:00 AM
How to print “@“ Symbol in the XML label node?
We have developed one Roku web app and we want to add the functionality to Make login of user .
In App we will be getting Email address from the user. Which we want to display in xml label node.
We want to set email address suppose “abc@gmail.com” but it only displays “abc gmail.com” in the label node.
so how to display “@“ symbol in label node ?
In App we will be getting Email address from the user. Which we want to display in xml label node.
We want to set email address suppose “abc@gmail.com” but it only displays “abc gmail.com” in the label node.
so how to display “@“ symbol in label node ?
3 REPLIES 3
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2017
06:42 AM
Re: How to print “@“ Symbol in the XML label node?
You could try replacing it with the chr code. "abc"+chr(64)+"gmail.com" ?
8.4 Chr (ch As Integer) As String
Performs the inverse of the ASC function: returns a one-character string whose character has the specified ASCII, or control. Example:
print chr(35) 'prints a number-sign #
Using CHR, you can assign quote-marks (normally used as string-delimiters) to strings. The ASCII code for quotes - is 34. So A$=CHR(34) assigns the value " to A$.
8.4 Chr (ch As Integer) As String
Performs the inverse of the ASC function: returns a one-character string whose character has the specified ASCII, or control. Example:
print chr(35) 'prints a number-sign #
Using CHR, you can assign quote-marks (normally used as string-delimiters) to strings. The ASCII code for quotes - is 34. So A$=CHR(34) assigns the value " to A$.
ankitgaur
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2017
07:19 AM
Re: How to print “@“ Symbol in the XML label node?
Hi destruk,
Thanks for the reply.
We have tried the solution you provided but it still not showing "@" character of email address in the XML Label Node (Scene graph).
It successfully prints "@" character on the terminal.[/font]
Please provide any other solution for this scenario.
Thanks for the reply.
We have tried the solution you provided but it still not showing "@" character of email address in the XML Label Node (Scene graph).
It successfully prints "@" character on the terminal.[/font]
Please provide any other solution for this scenario.
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2017
09:44 AM
Re: How to print “@“ Symbol in the XML label node?
I don't think your problem is that the Label node does not display the "@" character -- because it does. Most likely, you're not passing an "@" character into the Label node's text field.
Try a simple experiment: create a plain Label node in your Scene, with a hard-coded value containing an "@" character, i.e. not read from your XML and not computed in any way.
Try a simple experiment: create a plain Label node in your Scene, with a hard-coded value containing an "@" character, i.e. not read from your XML and not computed in any way.