How do I control the property behind the "Wrap To Shape" checkbox via Applescript?
Thanks, Rob ! :-)
Thanks, Rob ! :-)
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 | Today's Posts | Search |
Access "Wrap To Shape" property from Applescript? | Thread Tools | Search this Thread | Display Modes |
Member
2013-01-09, 12:25 PM
How do I control the property behind the "Wrap To Shape" checkbox via Applescript?
Thanks, Rob ! :-)
Post 1
|
Member
2013-01-09, 12:34 PM
Last I checked I could not find it either. It does not seem to show up via the "Copy As Applescript" technique.
Post 2
|
Guest
2013-01-09, 10:44 PM
If you select a shape and use the inspector to uncheck "wrap to shape", you should find that you can restore wrapping by setting the autosizing property of the shape to overflow.
Code:
tell application id "OGfl" set lstSeln to (selection of front window) as list tell item 1 of lstSeln to set autosizing to overflow end tell
Post 3
|
Member
2013-01-10, 06:44 AM
Interesting. But if my script itself is creating the shapes, and I want that script to selectively turn on or off the 'Wrap' boolean property with no manual intervention, how do I do this?
p.s. in my case, I need the shapes with autosizing=overflow to have Wrap=False, but need to do it via script. p.p.s. I need to make a small colored shape for each of my objects, with some text describing each shape offset to the right of each object (attached). I'm tweaking the 'side_padding' property to offset the text, using autosizing of 'Overflow' so the text will show outside the shape boundary, and need 'Wrap'=False so the text will show up at all. Thanks! Last edited by Sophie; 2013-01-10 at 06:54 AM..
Post 4
|
Guest
2013-01-10, 09:23 AM
I'm afraid that the solution to that eludes me :-)
May be time for Help > Send Feedback ... in the OGfl menu. Good luck !
Post 5
|
Member
2013-01-10, 09:40 AM
Maybe I don't understand the problem correctly, but how about using a document which starts out with a set of the desired shapes to use as templates which the script duplicates to get around any weakness in the scripting model? You could have them be drawn invisibly or perhaps hidden away in another layer.
Post 6
|
Guest
2013-01-10, 09:46 AM
That seems a good solution, especially as the Help > Send feedback process may not yield much. There was a hint last year that wrap-control may be some kind of edge case that fell outside the main (applescriptable) model, and has even been known to fall beyond reach of the UI-accessible model.
Post 7
|
Member
2013-01-10, 11:31 AM
Thanks for the suggestions! Using hidden shapes as a workaround script-accessible stencil is an interesting idea. Unfortunately my shapes are not statically predefined, and I need to generate all aspects of the shapes by script. Hmmm...
Post 8
|
Member
2013-01-10, 01:59 PM
Isn't there a set of shapes which encompasses all the possible shapes your script will need? You should be able to resize, recolor, etc. on the fly, I think, it's just a matter of getting that pesky text-wrap property by inheritance.
Post 9
|
Member
2013-01-13, 09:38 PM
Hmm. If I manually put such shapes on a hidden layer, how would I access / manipulate that hidden layer to duplicate a shape from there onto a working (non-hidden) layer or another canvas, without the convenience of "Copy to Applescript"?
Thanks!
Post 10
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Unable to FIND text in columns that have the type property set to "pop-up list" | qomni | OmniOutliner 3 for Mac | 20 | 2013-12-04 04:18 PM |
Can't sort a column when its type property is set to "pop-up list" | qomni | OmniOutliner 3 for Mac | 8 | 2012-02-02 11:05 AM |
OmniFocus scripts would benefit from a "has subtasks" property | RobTrew | OmniFocus Extras | 0 | 2010-06-09 04:37 AM |
Crashes when scripting "group rank" property in OmniGraffle | timcoffman | AppleScripting Omni Apps | 1 | 2009-07-09 07:50 AM |