GraphicConverter Comments
GraphicConverter Comments
- Subject: GraphicConverter Comments
- From: JRyan <email@hidden>
- Date: Sat, 17 Nov 2001 17:23:55 -0700
Hi all,
I'm trying to write a script that will take the comments from a finder
file (the comments from "Get Info") and copy them into the comment field
in GraphicConverter (version 4.0.2PPC). I seem to be having a tough time
with this... Any suggestions?
Here's my code:tell application "Finder"
activate
set myFile to selection
open information window of selection
set myComment to comment of selection
close information window of selection
activate application "GraphicConverter"
open myFile
set comment of window 1 to myComment
end tell
And here's the error I get:Finder got an error: Can't set comment of
window 1 to "Test comment".
Where "Test Comment" is the finder comment of my file.I'm using system
9.1 incase that is a factor.
Thankyou,Jess