This content has been marked as final.
Show 2 replies
-
1. Re: change text frame horizontally (text area) with script?
flavioflavio Dec 23, 2010 12:38 PM (in response to flavioflavio)The small steps I've been able to take so far are:
if (app.version == 3){
theframe = app.selection[0].parentTextFrame.endTextFrame;
} else
theframe = app.selection[0].parentTextFrames[0].endTextFrame;
Should select the text frame I'm trying to resize. Then:theframe.geometricBounds = [ 50, 50, 50, 50 ];Should do the resizing. However, it tells me "geometricBounds" is a read only property. I think this might be close, but I'm not quite grasping it... The funny thing is that using the menu as I described I am able to resize the width of the text frame...Any hints? Is what I am asking possible? Please, any answer would really help!thanks! -
2. Re: change text frame horizontally (text area) with script?
flavioflavio Jan 3, 2011 11:30 AM (in response to flavioflavio)Kasyan answered this one here: http://forums.adobe.com/message/3375560#3375560
