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
goto page no.
- martin
- Official Nisus Person
- Posts: 5230
- Joined: 2002-07-11 17:14:10
- Location: San Diego, CA
- Contact:
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