Javascript – I have been working on an InDesign script that will select the actual image inside of a graphic frame … is this possible
Here is where I'm at: // Check if any document is open if (app.documents.length > 0) { var doc = app.activeDocument; // Check if any frame is selected if (doc.selection.length > 0 && doc.selection[0].constructor.name == "Rectangle") { var selectedFrame =…