How can I resize graphic with attribute?
hello.
I have a question about scripting to resize graphic.
This is the script to resize graphic
doc = app.ActiveDoc;
graphicObj = doc.FirstGraphicInDoc;
while(graphicObj.ObjectValid()) {
graphicObj = graphicObj.NextGraphicInDoc;
if(graphicObj.type == Constants.FO_Inset) {
name = graphicObj.InsetFile;
graphicObj.InsetDpi=300;
}
}
but I want to resize graphic only having attribute placement "break"
How can I do this with script??
