Hello!
How to find a textFrame with the label.
The problem is that it can be grouped or not, anywhere in the document.
A quick way I got was this:
var myTextFrame;
myTextFrame = myDoc.allPageItems.item("myTest");
alert(myTextFrame.contents);
But I know that does not work well.
You can help me?
Thank you!
Elvis