GoOgLe
03-28-2007, 06:19 AM
http://img521.imageshack.us/img521/1755/erroryf5.png
strText = Input.GetText("Input1");-- get the text
-------------------------------------------------------------------------------------
strText = String.Replace(strText, "
", "<p align=right>", false);-- translate
strText = String.Replace(strText, "", "</p>", false);-- translate
strText = String.Replace(strText, "
", "<p align=center>", false);-- translate
strText = String.Replace(strText, "", "</p>", false);-- translate
strText = String.Replace(strText, "
", "<p align=left>", false);-- translate
strText = String.Replace(strText, "", "</p>", false);-- translate
strText = String.Replace(strText, "[color=", "<font color=", false);
strText = String.Replace(strText, "[/COLOR]", "</FONT>", false);-- translate
strText = String.Replace(strText, "[size=", "<font size=", false);
strText = String.Replace(strText, "[/SIZE]", "</FONT>", false);
strText = String.Replace(strText, "[font=", "<font face=", false);
strText = String.Replace(strText, "", "<ol>", false);-- translate
strText = String.Replace(strText, "", "</ol>", false);-- translate
strText = String.Replace(strText, " ", "<li>", false);-- translate
strText = String.Replace(strText, "", "<ul>", false);-- translate
strText = String.Replace(strText, "", "</ul>", false);-- translate
strText = String.Replace(strText, " ", "<li>", false);-- translate
strText = String.Replace(strText, "", "<b>", false);-- translate
strText = String.Replace(strText, "", "</b>", false);-- translate
strText = String.Replace(strText, "", "<i>", false);-- translate
strText = String.Replace(strText, "", "</i>", false);-- translate
strText = String.Replace(strText, "", "<u>", false);-- translate
strText = String.Replace(strText, "", "</u>", false);-- translate
strText = String.Replace(strText, "
", "<blockquote><P>", false);-- translate
strText = String.Replace(strText, "", "</P></blockquote>", false);-- translate
strText = String.Replace(strText, "[URL=", "<a href=", false);
strText = String.Replace(strText, "[/URL]", "</A>", false);
strText = String.Replace(strText, "[EMAIL=", "<a href=mailto:", false);
strText = String.Replace(strText, "[/EMAIL]", "</A>", false);
strText = String.Replace(strText, "", "<img src=", false);
strText = String.Replace(strText, "", ">", false);
strText = String.Replace(strText, "
", "<blockquote>", false);
strText = String.Replace(strText, "", "</blockquote>", false);
strText = String.Replace(strText, "
", "<PRE>", false);
strText = String.Replace(strText, "", "</PRE>", false);
strText = String.Replace(strText, "
", "<? ", false);-- translate
strText = String.Replace(strText, "", " ?>", false);-- translate
strText = String.Replace(strText, "[", "<", false);
strText = String.Replace(strText, "]", ">", false);
-----------------------------------------------------------------------------------------------------------
TextFile.WriteFromString("C:\\temp_preview.html","<HTML>"..strText.."</HTML>",false);-- write the html file
Web.LoadURL("Web1", "C:\\temp_preview.html");-- show the preview
i have that code on preview button but i cant make <br> can someone help please ???
strText = Input.GetText("Input1");-- get the text
-------------------------------------------------------------------------------------
strText = String.Replace(strText, "
", "<p align=right>", false);-- translate
strText = String.Replace(strText, "", "</p>", false);-- translate
strText = String.Replace(strText, "
", "<p align=center>", false);-- translate
strText = String.Replace(strText, "", "</p>", false);-- translate
strText = String.Replace(strText, "
", "<p align=left>", false);-- translate
strText = String.Replace(strText, "", "</p>", false);-- translate
strText = String.Replace(strText, "[color=", "<font color=", false);
strText = String.Replace(strText, "[/COLOR]", "</FONT>", false);-- translate
strText = String.Replace(strText, "[size=", "<font size=", false);
strText = String.Replace(strText, "[/SIZE]", "</FONT>", false);
strText = String.Replace(strText, "[font=", "<font face=", false);
strText = String.Replace(strText, "", "<ol>", false);-- translate
strText = String.Replace(strText, "", "</ol>", false);-- translate
strText = String.Replace(strText, " ", "<li>", false);-- translate
strText = String.Replace(strText, "", "<ul>", false);-- translate
strText = String.Replace(strText, "", "</ul>", false);-- translate
strText = String.Replace(strText, " ", "<li>", false);-- translate
strText = String.Replace(strText, "", "<b>", false);-- translate
strText = String.Replace(strText, "", "</b>", false);-- translate
strText = String.Replace(strText, "", "<i>", false);-- translate
strText = String.Replace(strText, "", "</i>", false);-- translate
strText = String.Replace(strText, "", "<u>", false);-- translate
strText = String.Replace(strText, "", "</u>", false);-- translate
strText = String.Replace(strText, "
", "<blockquote><P>", false);-- translate
strText = String.Replace(strText, "", "</P></blockquote>", false);-- translate
strText = String.Replace(strText, "[URL=", "<a href=", false);
strText = String.Replace(strText, "[/URL]", "</A>", false);
strText = String.Replace(strText, "[EMAIL=", "<a href=mailto:", false);
strText = String.Replace(strText, "[/EMAIL]", "</A>", false);
strText = String.Replace(strText, "", "<img src=", false);
strText = String.Replace(strText, "", ">", false);
strText = String.Replace(strText, "
", "<blockquote>", false);
strText = String.Replace(strText, "", "</blockquote>", false);
strText = String.Replace(strText, "
", "<PRE>", false);
strText = String.Replace(strText, "", "</PRE>", false);
strText = String.Replace(strText, "
", "<? ", false);-- translate
strText = String.Replace(strText, "", " ?>", false);-- translate
strText = String.Replace(strText, "[", "<", false);
strText = String.Replace(strText, "]", ">", false);
-----------------------------------------------------------------------------------------------------------
TextFile.WriteFromString("C:\\temp_preview.html","<HTML>"..strText.."</HTML>",false);-- write the html file
Web.LoadURL("Web1", "C:\\temp_preview.html");-- show the preview
i have that code on preview button but i cant make <br> can someone help please ???