I assume you're asking about the problem where Nisus Writer does not respect the system setting regarding what happens when the user clicks in the scroll bar. You're right, this should have received our attention sooner. I'll make sure we prioritize taking a look at this issue. I'm sorry you (and others) are still suffering it.ScottinPollock wrote:Disheartening to discover it's been almost 2 years and this still has not been fixed in 2.1.7. @Martin, any idea when we can expect a fix?
NWP v2: Non-native scrollbars?
- martin
- Official Nisus Person
- Posts: 5230
- Joined: 2002-07-11 17:14:10
- Location: San Diego, CA
- Contact:
Re: NWP v2: Non-native scrollbars?
Re: NWP v2: Non-native scrollbars?
The thread started in 2011, so it seems it's actually been 6 years…ScottinPollock wrote:Disheartening to discover it's been almost 2 years and this still has not been fixed
I use an AppleScript to correct the behavior, and I think it might perhaps be a good idea to share it with the community. It's a simple, but effective work-around that solves the problem for me.
1) Save this as an AppleScript application. Call it "Open System Preferences General" and place it wherever you want on your internal hard drive.
Code: Select all
tell application "System Preferences"
activate
set the current pane to pane id "com.apple.preference.general"
end tell
3) Click on the Login Items tab
4) Drag Nisus Writer Pro and the AppleScript into the window
Now, every time the computer starts, the General pane will be opened, and all you have to do is to jiggle the handle. Assuming "Jump to the spot that's clicked" is enabled when the machine starts, then click once on "Jump to the next page" and then back on "Jump to the spot that's clicked."
When you jiggle, NWP is already running and that should establish the correct behavior and remain like that… as long as Nisus stays open.
If anybody knows how to integrate the jiggle in the AppleScript, then please share that knowledge.
Re: NWP v2: Non-native scrollbars?
Þorvarður, here is an applescript to set the "jiggle" correctly.
Save that as an application and it will do the "jiggle" for you.
Code: Select all
tell application "System Events"
tell appearance preferences
set scroll bar action to jump to here
set scroll bar action to jump to next page
set scroll bar action to jump to here
end tell
end tell
Re: NWP v2: Non-native scrollbars?
Great! Thank you Vanceone!Vanceone wrote:here is an applescript to set the "jiggle" correctly.
Re: NWP v2: Non-native scrollbars?
Or you can save a combined script as an app and launch it (or place it as a login item) instead of NWP:
Code: Select all
tell application "Nisus Writer Pro"
activate
end tell
tell application "System Events"
tell appearance preferences
set scroll bar action to jump to here
set scroll bar action to jump to next page
set scroll bar action to jump to here
end tell
end tell