On Jul 8, 2015, at 11:24 AM, Gregory Lypny <gregory.ly...@videotron.ca> wrote:

> Hi everyone,
> 
> I imported an RTF file and put it into a field using
> 
>   set the RTFText of field "File Text" to url ("file:" & longFileName)
> 
> Of course, the text in the field is formatted as in the file that was 
> imported. How can I import the text while stripping away the formatting, 
> which I do not need?
> 
> Gregory

Gregory,

Just ‘put’ the text of the field into another field or variable:

  put fld “myRTF” into fld “myText”

Putting text never preserves formatting. 

Another trick I’ve learned (unless it’s been changed recently) is that using 
‘replace’ on a field strips formatting.

  replace space with space in fld “myRTF”

HTH


Devin


Devin Asay
Office of Digital Humanities
Brigham Young University


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to