NWP v2: Non-native scrollbars?

Everything related to our flagship word processor.
User avatar
martin
Official Nisus Person
Posts: 5227
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Re: NWP v2: Non-native scrollbars?

Post by martin »

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?
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.
Þorvarður
Posts: 410
Joined: 2012-12-19 05:02:52

Re: NWP v2: Non-native scrollbars?

Post by Þorvarður »

ScottinPollock wrote:Disheartening to discover it's been almost 2 years and this still has not been fixed
The thread started in 2011, so it seems it's actually been 6 years…

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
2) Then open Users & Groups in the System Preferences
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.
Vanceone
Posts: 211
Joined: 2013-05-03 07:06:31

Re: NWP v2: Non-native scrollbars?

Post by Vanceone »

Þorvarður, here is an applescript to set the "jiggle" correctly.

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
Save that as an application and it will do the "jiggle" for you.
Þorvarður
Posts: 410
Joined: 2012-12-19 05:02:52

Re: NWP v2: Non-native scrollbars?

Post by Þorvarður »

Vanceone wrote:here is an applescript to set the "jiggle" correctly.
Great! Thank you Vanceone!
User avatar
Hamid
Posts: 777
Joined: 2007-01-17 03:25:42

Re: NWP v2: Non-native scrollbars?

Post by Hamid »

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
Post Reply