How do I take an anchored frame and return the paragraph tag it uses?
I need to parse through anchored frames and return the paragraph tag that it is located it. I can't seem to find a property that returns the paragraph tag. Anyone have any ideas?
I need to parse through anchored frames and return the paragraph tag that it is located it. I can't seem to find a property that returns the paragraph tag. Anyone have any ideas?
Try this on the selected anchored frame:
#target framemaker
var doc = app.ActiveDoc;
var aFrame = doc.FirstSelectedGraphicInDoc;
var pgf = aFrame.TextLoc.obj;
alert (pgf.Name);
Rick
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.