What is the DOM expression to get current page where the cursor is:

app.activeDocument.currentPage ?
link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You want:

app.activeWindow.activePage.name;

This will give you the actual page number name as a string (i.e. if your pages are numbered in roman then this will give 'v' for the fifth page).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.