Re: [Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-12 Thread Stefano Palmeri
Il domenica 12 luglio 2009 03:55:12 Marc Carson ha scritto: > Stefano Palmeri wrote: > > Il domenica 12 luglio 2009 01:30:26 Stefano Palmeri ha scritto: > >> PUBLIC SUB Form_MouseWheel() > >> > >> > >> SELECT CASE Mouse.delta > >> > >> CASE 1 > >> PRINT "mouse wheel up" > >> CASE

Re: [Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Marc Carson
Stefano Palmeri wrote: > Il domenica 12 luglio 2009 01:30:26 Stefano Palmeri ha scritto: > >> PUBLIC SUB Form_MouseWheel() >> >> >> SELECT CASE Mouse.delta >> >> CASE 1 >> PRINT "mouse wheel up" >> CASE -1 >> PRINT "mouse wheel down" >> >> END SELECT >> >

Re: [Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Stefano Palmeri
Il domenica 12 luglio 2009 01:30:26 Stefano Palmeri ha scritto: > PUBLIC SUB Form_MouseWheel() >   >   >   SELECT CASE Mouse.delta >     >     CASE 1 >         PRINT "mouse wheel up" >     CASE -1 >          PRINT "mouse wheel down" >   >   END SELECT   > > END I forgot about SHIFT+CTRL: PUBLIC S

Re: [Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Stefano Palmeri
Il sabato 11 luglio 2009 23:58:03 Marc Carson ha scritto: > I would like to create a program that increments/decrements the system > master audio volume if the mouse's mousewheel is scrolled up/down, in > combination with a hotkey (like ctrl+shift+mousewheel). > > Is this possible in Gambas? I see

[Gambas-user] Can I use the mousewheel to control system audio volume?

2009-07-11 Thread Marc Carson
I would like to create a program that increments/decrements the system master audio volume if the mouse's mousewheel is scrolled up/down, in combination with a hotkey (like ctrl+shift+mousewheel). Is this possible in Gambas? I see that the mousewheel can be detected, but I don't see anything ab