Can anyone show me an example of an applescript that copies an existing graphic to a new canvas?
Thanks!
ST
Thanks!
ST
These forums are now read-only. Please visit our new forums to participate in discussion. A new account will be required to post in the new forums. For more info on the switch, see this post. Thank you!
|
|
FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
applescript to copy an OmniGraffle graphic? | Thread Tools | Search this Thread | Display Modes |
Member
2011-12-07, 03:44 AM
Can anyone show me an example of an applescript that copies an existing graphic to a new canvas?
Thanks! ST
Post 1
|
Guest
2011-12-08, 12:35 AM
Code:
tell application id "OGfl" set lstSeln to (selection of front window) set oShape to first item of lstSeln tell front document duplicate oShape to end of graphics of canvas 2 end tell end tell
Post 2
|
Guest
2011-12-08, 12:37 AM
or, of course
Code:
tell application id "OGfl" set lstSeln to (selection of front window) set oShape to first item of lstSeln tell front document set oSecondCanvas to make new canvas duplicate oShape to end of graphics of oSecondCanvas end tell end tell
Post 3
|
Member
2011-12-08, 09:56 PM
I also tried doing this but do not have any result, I have encountered some technical problems
Post 4
|
Thread Tools | Search this Thread |
Display Modes | |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
problem: copy as applescript | osascript - | gshenaut | OmniGraffle General | 7 | 2013-01-30 02:16 PM |
Bringing graphic objects to front in OmniGraffle | mediaczar | AppleScripting Omni Apps | 3 | 2012-01-15 03:11 AM |
AppleScript - How to Operate on Group of Selected Graphic Objects? | trouble clef | OmniGraffle General | 1 | 2011-08-17 06:24 AM |
Applescript help: Section copy Automating | ptorngaard | OmniOutliner 3 for Mac | 3 | 2011-02-01 10:13 PM |
Glitch in: Edit > Copy As > AppleScript | RobTrew | OmniGraffle General | 0 | 2010-04-15 08:11 AM |