Scott Rogers (str1_at_swbell.net) wrote:
> In all of this talk about sync apps, does anyone know if there's an easy
> way to change the type/creator codes of TextEdit RTFs in OS 10 to the
> NCU-recognizable MSWD?
If I remember correctly, TextEdit documents (darn Cocoa apps!) have no
creator or file type at all, but you can easily fix this yourself. Enter
the following into the AppleScript editor and save it as a droplet:
on open FileList
repeat with anObject in FileList
if not folder of (info for anObject) then
tell application "Finder"
set the creator type of anObject to "MSWD"
set the file type of anObject to "RTF "
end tell
end if
end repeat
end open
Just drag any number of RTF documents onto it, that's all.
- Michael
Michael J. Hussmann
E-mail: michael_at_michael-hussmann.de
WWW: http://michael-hussmann.de
-- Read the List FAQ/Etiquette: http://www.newtontalk.net/faq.html Read the Newton FAQ: http://www.guns-media.com/mirrors/newton/faq/ This is the NewtonTalk mailing list - http://www.newtontalk.net
This archive was generated by hypermail 2.1.2 : Wed Jun 12 2002 - 20:01:54 EDT