zmiq2 -- I think he wants an easy way to "page down" using the keyboard. Of course it's true that you can just use the scroll bar if you have your stylus out, but I'm trying to come up with keyboard equivalents to most commands so I don't need the stylus.
You can use Fn + Up/Down to page up and down in most applications, but this is kind of a pain, since you have to have both hands free. So I came up with a way to do it with by pressing only one key.
To do this, you will need to install InputHelper and KeyHelper. Then you need to add something like the following to your keyhelper.xml file. This allows you to have two different kinds of launchers. One (launch) will only work when the launch button (Address in my case) is pressed at the same time as another button. This is in the file by default. The other (launch1) will work just by pressing one button. You apparently need to have the entries in this order for them to work.
Next, you need to edit your keyhelper.conf file to set up the hotkeys that you want to use.
Add something like this to the file:
[Launch1_opera]
8 = @qcop QPE/InputHelper mouse(QString) "click 620 90"
9 = @qcop QPE/InputHelper mouse(QString) "click 620 415"
0 = @qcop QPE/InputHelper mouse(QString) "click 580 390"
What this does is to simulate mouse clicks at certain places on the screen. In this case, at the top and bottom of the scroll bar (in the places that would trigger a "page up" and "page down"). I imagine that the Opera screen is a bit different from Netfront's, so you may need to change the coordinates a bit. But on my system with these settings, I just have to press 8 to page up and 9 to page down. These settings are only active for opera, so they won't interfere with using other programs. If you do need to use these numbers in Opera, you can use the on-screen keyboard or temporarily disable keyhelper. I added the "0" setting for opera because clicking on the scroll bar apparently shifts the focus away from the content of the page, making it so that you can't select links with the keyboard or scroll down with the arrow keys unless you click back inside the page.
As I said, this is for opera, so for netfront you would change it to [Launch1_netfront3].
You would think it would be possible to emulate the "Fn + Up/Down" keystroke instead of emulating the mouse clicks on the screen, but the sites I visited to figure this stuff out didn't mention that.