Trying to Access the Arrays of Images or Pdfs or Epss
Hi Experts
I was playing with the arrays of Items, so i can access those types of arrays as you see i can get text frames or any items or polygons, also with the same method i can access the others like (ovals - rectangles - graphiclines) :
var allFrames = app.activeDocument.allPageItems;
var allFrames = app.documents[0].pages.everyItem().textFrames.everyItem().getElements();
var allFrames = app.documents[0].pages.everyItem().pageItems.everyItem().getElements();
var allFrames = app.activeDocument.pages.everyItem().polygons.everyItem().getElements(); but i can't access the Images(content) or pdfs or epss in the containers like( rectangles - ovals - groups..etc), i tried for Images :
var allFrames = app.activeDocument.pages.everyItem().images.everyItem().getElements();also can't access pdf or epss :
var allFrames = app.activeDocument.pages.everyItem().epss.everyItem().getElements();
var allFrames = app.activeDocument.pages.everyItem().pdfs.everyItem().getElements();what im trying to get is control their movements (like) :
var allFrames = app.activeDocument.pages.everyItem().groups.everyItem();
allFrames.move(undefined , [0 ,"100mm"]);so this is working with all items except the (images - pdfs - epss) ?, maybe i miss something? or miss understand the correct way of access!, i get the error (object doesnt support the property or method (images - pdfs - epss) message), so please help? and thanks in Advance
