Focal Point
[SOLVED] special characters in launch page

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/63510608

April 13, 2009, 05:44 PM
JohnB
[SOLVED] special characters in launch page
How do insert bullets and special characters into text boxes in a launch page? I tried copying and pasting from a Word document, but when the launch page is run, the bullet displays as some other symbol.

Thank you,

John

This message has been edited. Last edited by: JohnB,


WF 7.7.03, Windows 7, HTML, Excel, PDF
April 14, 2009, 01:34 AM
<JG>
You need to code the html escape code and not use the character.

a couple of good sites

http://www.htmlescape.net/htmlescape_tool.html

http://www.ascii.cl/htmlcodes.htm

And remember if you are coding an escape code in WebFOCUS you may need to code it as &|
so that the & is escaped in WebFOCUS.

Whether you need to depends on if you use a fex to launch the HTML page
or if it is launched directly.
April 14, 2009, 03:02 PM
JohnB
How would it be inserted? For example:
 <SPAN id=text5 style="FONT-SIZE: 10pt; Z-INDEX: 8; LEFT: 160px; WIDTH: 170px; FONT-FAMILY: Arial; POSITION: absolute; TOP: 150px; HEIGHT: 20px" tabIndex=8 ElementToPaste="true">Site Activity</SPAN></BODY></HTML> 
 


where would you put it in that line of code from the HTML Layout Painter?

This message has been edited. Last edited by: JohnB,


WF 7.7.03, Windows 7, HTML, Excel, PDF
April 14, 2009, 03:10 PM
<JG>
In the text view or by editing the text after creating in the tool.

The tools can create a solution, but you deliver the requirement.
April 14, 2009, 03:17 PM
JohnB
What I meant was what would that line of code look like to have a bullet in front of the text, "Site Activity"?


WF 7.7.03, Windows 7, HTML, Excel, PDF
April 15, 2009, 02:52 AM
<JG>
• Site Activity

 & #8226; Site Activity 


Without the space, I had to put it in because even between code tags the escape sequence gets rendered.