Copy link to clipboard
Copied
Hi All,
Could anyone please give solution for my request.
1. Find Anchor marker
2. Apply object style for that selecting parent Graphics frame.
var myDoc = app.activeDocument;
app.findGrepPreferences = app.changeGrepPreferences = null;
app.findGrepPreferences.appliedParagraphStyle = "abc"
app.findGrepPreferences.findWhat = "~a"
var myFound = myDoc.findGrep();
for(i=0; i<myFound.length; i++)
{
myFound.parentTextFrames[0].appliedObjectStyle = app.activeDocument.objectStyles.item("Image") //Error this only
}
Thanks in advance
Beginner
Hi
An anchored object is not parent but child(pageItem) for anchor.
myFound.parentTextFrames[0].appliedObjectStyle = app.activeDocument.objectStyles.item("Image") //Error this only
try this code
myFound.pageItems[0].appliedObjectStyle = app.activeDocument.objectStyles.item("Image");
thankyou
mg.
Copy link to clipboard
Copied
Hi
An anchored object is not parent but child(pageItem) for anchor.
myFound.parentTextFrames[0].appliedObjectStyle = app.activeDocument.objectStyles.item("Image") //Error this only
try this code
myFound.pageItems[0].appliedObjectStyle = app.activeDocument.objectStyles.item("Image");
thankyou
mg.