Re: Clippings to Simple Text
Re: Clippings to Simple Text
- Subject: Re: Clippings to Simple Text
- From: Emmanuel <email@hidden>
- Date: Tue, 2 Jan 2001 10:52:35 +0100
At 12:32 +0100 31/12/00, Bernard Azancot wrote:
>
Hello!
>
>
Is there a way to change Clippings to Simple Text using AS ?
>
>
Thanks in advance.
>
--
>
Bernard Azancot
>
_______________________________________________
>
applescript-users mailing list
>
email@hidden
>
http://www.lists.apple.com/mailman/listinfo/applescript-users
There are lots of solutions, as you may have read already.
One of them would be to grab the text from the resource using the Satimage
osax:
----------------------- tested, Satimage osax 1.7.1
set theText to (LoadResource 256 type "TEXT" from thePath)
-----------------------
then create a text file and write the text to it (actually, writing to a
non-existing file will create it).
HTH
Emmanuel