setting the active doc and adding page numbers
var openDoc = app.openDoc({cPath: myPath});
var d = app.activeDocs; <--gets all open docs
app.alert("this.path: " + this.path); <--this.path is not always the openDoc.
app.alert("openDoc.path: " + openDoc.path);
How do I make the openDoc the active Doc? Essentially I am needing to add page numbers to it.
