Page 1 of 1

goto page no.

Posted: 2008-01-06 09:48:41
by Ruchama
It may be (another) stupid question but- is there a way to go directly to a specified page without scrolling through the whole document?

thanks

Posted: 2008-01-07 06:03:54
by martin
There's no built-in feature for this, but the following macro should hold you over until we add it:

Code: Select all

$number = Prompt Input "Jump to what page?"
If Select Page $number
    Select Start
Else
    Prompt "Sorry, but page $number doesn't exist."
End

Posted: 2008-01-07 06:32:00
by Ruchama
Thanks, Martin, you are (as always) very helpful.

Posted: 2008-01-07 06:34:17
by martin
No problem- I'm glad to be of help!