RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Al Hospers
I'm wondering if there is a way or of any xtras that will allow you to write Rich Text Format files and HTML files. well an HTML file is just text, so there is no reason why you could not use FileIO to write an HTML file. Al Hospers CamberSoft, Inc. alatcambersoftdotcom

RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Tim Symons
, Inc. http://www.curtisinc.com/ -Original Message- From: Bill Numerick [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 3:14 PM To: [EMAIL PROTECTED] Subject: RE: lingo-l Writing RTF and HTML files? snip I've written simple RTFs using FileIO xtra. I stored everything

RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Bill Numerick
snip Though, I would start with a HTML file first and then use RTFs only when an HTML file didn't work and I can't see when that would happen. /snip Thanks again for the fast response. Here's what i'm planning on doingHTML is the best way to go for my display purposes in director for sure

RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Tim Symons
Interactive Media Manager Curtis, Inc. http://www.curtisinc.com/ -Original Message- From: Bill Numerick [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 4:15 PM To: [EMAIL PROTECTED] Subject: RE: lingo-l Writing RTF and HTML files? snip Though, I would start

RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Al Hospers
If you stored them as HEX then you could write them out as text files and not have to worry about any binary files. But if you are familiar with binary then that would also work. In general, if you have the files as blobs of HEX or binary then yes your idea would work. Hi guys, If you

RE: lingo-l Writing RTF and HTML files?

2001-04-09 Thread Cole Tierney
If you choose binary, you'll need to be careful with fileio xtra. It will stop at the first zero byte it finds (mistaking for eof char). A workaround is to write out the binary chars one at a time via writeChar (slow!). A better method is to use binaryio xtra at http://www.updatestage.com. I