Here's how I got scrolling in Netscape.
------------------------------------------------------------------------------
Should work with all netscape versions. I tested with 2.02, 3.01, 4.02, 4.04,
4.05, 4.5. Contributed by Sergey V. Kovalyov on June 11, 1998, after attempts
by myself and
Alexey Marinichev and Alexey Solovyov.
Add to your ~/.Xdefaults:
!## NETSCAPE
Netscape*drawingArea.translations: #replace \
<Btn1Down>: ArmLink() \n\
<Btn2Down>: ArmLink() \n\
~Shift<Btn1Up>: ActivateLink() \n\
~Shift<Btn2Up>: ActivateLink(new-window) \
DisarmLink() \n\
Shift<Btn1Up>: ActivateLink(save-only) \
DisarmLink() \n\
Shift<Btn2Up>: ActivateLink(save-only) \
DisarmLink() \n\
<Btn1Motion>: DisarmLinkIfMoved() \n\
<Btn2Motion>: DisarmLinkIfMoved() \n\
<Btn3Motion>: DisarmLinkIfMoved() \n\
<Motion>: DescribeLink() \n\
<Btn3Down>: xfeDoPopup() \n\
<Btn3Up>: ActivatePopup() \n\
Ctrl<Btn4Down>: PageUp()\n\
Ctrl<Btn5Down>: PageDown()\n\
Shift<Btn4Down>: LineUp()\n\
Shift<Btn5Down>: LineDown()\n\
None<Btn4Down>: LineUp()LineUp()LineUp()LineUp()LineUp()LineUp()\n\
None<Btn5Down>:
LineDown()LineDown()LineDown()LineDown()LineDown()LineDown()\n\
Alt<Btn4Down>: xfeDoCommand(forward)\n\
Alt<Btn5Down>: xfeDoCommand(back)\n
Netscape*globalNonTextTranslations: #override\n\
Shift<Btn4Down>: LineUp()\n\
Shift<Btn5Down>: LineDown()\n\
None<Btn4Down>:LineUp()LineUp()LineUp()LineUp()LineUp()LineUp()\n\
None<Btn5Down>:LineDown()LineDown()LineDown()LineDown()LineDown()LineDown()\n\
Alt<Btn4Down>: xfeDoCommand(forward)\n\
Alt<Btn5Down>: xfeDoCommand(back)\n
Then type: xrdb -merge ~/.Xdefaults
to make it happen, run up netscape and try it out!
--------------------------------------------------------------------------------
There are also some button hacks to get rid of stuff you may or may not use.
--------------------------------------------------------------------------------
Buttons.....We don't need no stinking buttons:
"Shop", "Search", "MyNetscape", "Security"... these gotta go.
Add the first 4 lines below to your ~/.Xdefaults file to turn them off.
The ~/ refers to your /root or user directory (not to be confused with the ( / ) directory, in my case it would be /home/roy. The dot before the Xdefaults indicates that this is a hidden file. You'll have to go into the file manager and choose to "show hidden files" then right click on the .Xdefaults file, open with a text editor and cut and paste the lines below into the file:
Netscape*toolBar.myshopping.isEnabled: false
Netscape*toolBar.destinations.isEnabled: false
Netscape*toolBar.search.isEnabled: false
Netscape*toolBar.viewSecurity.isEnabled: false
Netscape*toolBar.userCommand1.commandName: findInObject
Netscape*toolBar.userCommand1.labelString: Find
Netscape*toolBar.userCommand1.commandIcon: Search
Add the last 3 lines above and you'll have a 'Find In Page' icon on your Toolbar.
Next open a console and type (exactly as it is here):
xrdb -merge ~/.Xdefaults
Then restart Netscape. Now there should be only 'Back', 'Forward', 'Reload' 'Home', 'Find' and 'Stop' icons.
------------------------------------------------------------------------
Good luck and enjoy.