Re: Styled text challenge...

2004-02-11 Thread Mark Brownell
On Wednesday, February 11, 2004, at 07:39 AM, [EMAIL PROTECTED] wrote: Other than parsing completely out the html code, you would assume that set the RTFText of fld "text" to the HTMLText of fld "html" converts html to styled text... BUT IT DOESNT! Have you tried: putting fld "html" into zin

Re: Styled text challenge...

2004-02-11 Thread Dar Scott
On Wednesday, February 11, 2004, at 08:39 AM, [EMAIL PROTECTED] wrote: Other than parsing completely out the html code, you would assume that set the RTFText of fld "text" to the HTMLText of fld "html" converts html to styled text... BUT IT DOESNT! There doesn't seem to be any other language f

Re: Styled text challenge...

2004-02-11 Thread xbury . cs
(after 5 minutes battling with lotus notes (takes 3 minutes to copy paste BASIC text at 99% CPU usage %)(*&@%)@(*@(%*@ , ultraedit (never copies on the first try) and RR to get this copied corretly without shrunk styled text in a CODE window that doesn't need it... and the text menu in the script

Re: Styled text challenge...

2004-02-11 Thread xbury . cs
Im not sure if i was clear, I want to convert HTML text in fld "HTML" to RTF in fld "TEXT" But Im practically giving up, this is too much hastle, not to mention uncooperating clipboards, rr script editor, formats, html pages that are using more and more weird crap... Basic text will be a fine stan

Re: Styled text challenge...

2004-02-11 Thread Dar Scott
On Wednesday, February 11, 2004, at 10:17 AM, [EMAIL PROTECTED] wrote: Im not sure if i was clear, I want to convert HTML text in fld "HTML" to RTF in fld "TEXT" lock screen put field "HTML" into temp set the htmlText of field "HTML" to temp put the rtfText of field "HTML" into field "TEX

Re: Styled text challenge...

2004-02-11 Thread Richard Gaskin
[EMAIL PROTECTED] wrote: > I want to convert HTML text in fld "HTML" to RTF in fld "TEXT" There are three ways to refer to the contents of fields: the text -- returns plain text the htmlText -- return text with style run info in HTML the rtfText -- return text with style run info in RTF

RE: Styled text challenge...

2004-02-11 Thread MisterX
> From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Dar Scott > Sent: Wednesday, February 11, 2004 18:26 > > On Wednesday, February 11, 2004, at 10:17 AM, [EMAIL PROTECTED] > wrote: > > > Im not sure if i was clear, > > I want to convert HTML text in fld "HTML" to RTF in fld "TEXT"

Re: Styled text challenge...

2004-02-11 Thread Dar Scott
On Wednesday, February 11, 2004, at 11:32 PM, MisterX wrote: I could still be mixed up on what you want. i grab an html page off the web, display it in a field I also display the source and would like finaly to have the html styled text to be outputed to a styled text field. There isn't a 'styled

Re: Styled text challenge...

2004-02-11 Thread Brian Yennie
The following all works for me: ## render some HTML in a field set the htmlText of fld 1 to url "http://www.somsite.com"; ## get the HTML source put the htmlText of fld 1 into fld 2 ## get the RTF equivalent source put the rtfText of fld 1 into fld 3 ## re-render as RTF in a different field set th

Re: Styled text challenge...

2004-02-11 Thread xbury . cs
<[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 12/02/04 07:52 AM Please respond to How to use Revolution To: How to use Revolution <[EMAIL PROTECTED]> cc: Subject: Re: Styled text challenge... . The following all works for me: ## render some HTML in

Re: Styled text challenge...

2004-02-11 Thread Dar Scott
On Wednesday, February 11, 2004, at 11:57 PM, [EMAIL PROTECTED] wrote: I decided to go plain text instead of facing more bugs I don't think you demonstrated any bugs. That may be my fault; I don't think I followed all. This may be a misunderstanding of htmlText. If so, then maybe you and Run

Re: Styled text challenge...

2004-02-12 Thread Brian Yennie
Xavier, I really don't want to get into a love/hate war over Rev, but you're baiting pretty badly with your last couple of posts. Calling htmlText and rtfText "useless" and "unsupported", running off bugs and boldly stating that you don't have time to put them in Bugzilla... these sorts of thi

Re: Styled text challenge...

2004-02-12 Thread JonathanC
xbury.<[EMAIL PROTECTED]> wrote on Wed, 11 Feb 2004 16:39:48 +0100: > Other than parsing completely out the html code, you would assume that > > set the RTFText of fld "text" to the HTMLText of fld "html" > > converts html to styled text... BUT IT DOESN'T! > > There doesn't seem to be any othe