goto page no.

Everything related to our flagship word processor.
Post Reply
Ruchama
Posts: 213
Joined: 2006-08-19 18:35:27

goto page no.

Post 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
User avatar
martin
Official Nisus Person
Posts: 5227
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Post 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
Ruchama
Posts: 213
Joined: 2006-08-19 18:35:27

Post by Ruchama »

Thanks, Martin, you are (as always) very helpful.
User avatar
martin
Official Nisus Person
Posts: 5227
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Post by martin »

No problem- I'm glad to be of help!
Post Reply