Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Middle mouse Wheel support

 [1/5] from: philb::upnaway::com at: 28-May-2001 19:13


Hi Guys, Didn't Carl say there was no support for middle mouse wheel in Rebol ? How does the middle mouse scroll work in the Rebol Editor ? Cheers Phil

 [2/5] from: petr:krenzelok:trz:cz at: 28-May-2001 13:32


[philb--upnaway--com] wrote:
> Hi Guys, > > Didn't Carl say there was no support for middle mouse wheel in Rebol ? > > How does the middle mouse scroll work in the Rebol Editor ?
Mouse wheel support was implemented upon my request (maybe not only mine) during the Express beta period. It is not reflected thru all styles though yet .... -pekr-

 [3/5] from: g:santilli:tiscalinet:it at: 28-May-2001 14:11


[philb--upnaway--com] wrote:
> Didn't Carl say there was no support for middle mouse wheel in Rebol ?
Support was added in 1.0 AFAIK. (To be more precise, it was added in /Link sometime around January.) Still having 1800 unread messages from the list, Gabriele. -- Gabriele Santilli <[giesse--writeme--com]> - Amigan - REBOL programmer Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/

 [4/5] from: holger:rebol at: 28-May-2001 5:12


On Mon, May 28, 2001 at 07:13:12PM +0800, [philb--upnaway--com] wrote:
> Hi Guys, > > Didn't Carl say there was no support for middle mouse wheel in Rebol ? > > How does the middle mouse scroll work in the Rebol Editor ?
There is no support for the middle mouse button. There IS support for the scroll wheel, on all four View platforms (Amiga, BeOS, Linux, Windows). -- Holger Kruse [holger--rebol--com]

 [5/5] from: allenk:powerup:au at: 28-May-2001 23:27


----- Original Message ----- From: <[philb--upnaway--com]> To: <[rebol-list--rebol--com]> Sent: Monday, May 28, 2001 9:13 PM Subject: [REBOL] Middle mouse Wheel support
> Hi Guys, > > Didn't Carl say there was no support for middle mouse wheel in Rebol ? > > How does the middle mouse scroll work in the Rebol Editor ? > > Cheers Phil >
Hi Phil, Mousewheel support events are scroll-line & scroll-page scroll-line -> (Mousewheel) scroll-page - > (CTRL+Mousewheel) You can catch these via detect. event/offset/y will return either a postive or negative value relating to the direction of the mouse scroll. The value returned on each scroll appears to depend on the users mouse driver settings. On my machine with the driver settings as scroll = 3 lines, a move of the scroll button returns offsets of 3 and -3. Cheers, Allen K