Tip: If the field you're using for converting text is on a card that isn't open you'll get a performance boost of about 80% for that operation.
or simply let the system do the work via the clipboard :-)
... put URL ("File:"&pathtoRtfText) into txvariable set the clipboarddata["rtf"] to txvariable put the clipboarddata["text"] into txvariable
...but then you have toasted the user's clipboard data, which is less good ;-). So it might be a good idea to save the clipboard in a variable first:
put the clipboardData into myVar
put URL ("file:" & pathtoRtfText) into txvariable
set the clipboardData["rtf"] to txvariable
put the clipboardData["text"] into txvariable
set the clipboardData to myVar-- jeanne a. e. devoto ~ [EMAIL PROTECTED] http://www.jaedworks.com _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
