Copy picture to clipboard within GraphicConverter

Having problems in scripting the application GraphicConverter: How can I script the menue commands “select all” and “copy” so that the content of the open window is copied to the clipboard?

Any help would be great! Thanks in advance.

Martin :?

Hi Martin, try this:

tell window 1 of application “GraphicConverter”
activate
set s to image dimension
set w to item 1 of s
set h to item 2 of s
set selection to {0, 0, w, h} – “Select All”
copy
end tell

Works for me with GC 4.0 and OS 10.2.
Hope it helps

Farid