event Page/Open through script?
I'd like to run a script dynamically at every page, without executing a menu item or running the console at every page change, and not manually as described in this tutorial
https://acrobatusers.com/tutorials/entering-page-actions
I've tried at the folder-level and document-level script
if (event.type === 'Page' && event.name === 'Open') {
app.alert('test')
}
Nothing happened when pages changed.
