Would it? After obtaining a method to input the page you desired to duplicate, I'd imagine it would be a relatively simple matter to do a findObjs utilizing that page as one of the search criteria, using a CreateObj command, and then to perform particular actions based upon the object _type. After making the duplicate pages, couldn't you just make an on graphic event that finds all objects of the same field (I.E. same imgsrc) and then have then adapt the same position as the just-moved graphic? on("change:graphic", function(obj, prev) { if (MimicOn) { var SameObjList = findObjs({imgsrc:obj.get("imgsrc")}) for (var i = 0 ; i < SameObjList.length ; i++) {SameObjList[i].set("top",obj.get("top")).set("left",obj.get("left"))} } })