Question
How to find an image's insertion point?
I'm going through the document finding all images. I then want to find the insertion point for each images. How do I do that? image.insertionPoints[0] isn't working.
var images = app.activeDocument.allGraphics;
var number_of_images = images.length;
for (i=0; i<number_of_images; i++)
{
image = images.parent;
find insertion point here??
}