Re: [ql-users] Patching SMSQ Mouse routines

2002-01-20 Thread Dilwyn Jones
Wolfgang Lenerz wrote: Any ideas how I could do this 'legally' in such a background job? This is how I did it for az job that blzanks the screen if no keyborad/mouse activity after a certain time: truejob MULU #$3C,D7 ; number of seconds Thank you for this. Might prove very

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-14 Thread Wolfgang Lenerz
On 13 Jan 2002, at 13:33, Dilwyn Jones wrote: Any ideas how I could do this 'legally' in such a background job? This is how I did it for az job that blzanks the screen if no keyborad/mouse activity after a certain time: truejob MULU #$3C,D7 ; number of seconds

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-14 Thread P Witte
Wolfgang Lenerz writes: On 13 Jan 2002, at 13:33, Dilwyn Jones wrote: Any ideas how I could do this 'legally' in such a background job? This is how I did it for az job that blzanks the screen if no keyborad/mouse activity after a certain time: snip MOVE.L(A3),A3

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-13 Thread Dilwyn Jones
] [EMAIL PROTECTED] Date: 13 January 2002 19:23 Subject: RE: [ql-users] Patching SMSQ Mouse routines Hi The pointer record is attached to the channel #0 driver. It can be found by : chbas=PEEK_L(svbas+120) : REM svbas is start of system variables Channel0driver=PEEK_L(PEEK_l(chbas)+4) and if addr

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-13 Thread P Witte
Dilwyn Jones writes: What I wanted to do was a simple background job looking to see if the mouse or keyboard had been used for a given number of minutes. If not, start a job to do something else. Trouble was, every time I used RDPT and the job got buried by another job, it 'suspended' and no

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-13 Thread P Witte
Dilwyn Jones writes: What I wanted to do was a simple background job looking to see if the mouse or keyboard had been used for a given number of minutes. If not, start a job to do something else. Trouble was, every time I used RDPT and the job got buried by another job, it 'suspended' and no

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-10 Thread Richard Zidlicky
On Wed, Jan 09, 2002 at 02:08:58PM -0500, Phoebus R. Dokos wrote: Hmmm another undocumented feature... nothing in the SMS reference manual :-) Or at least I didn't see it. Thanks Richard it is documented (like any other undocumented feature) in Hans-Peter Recktenwalds Programmieren in

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread Dilwyn Jones
Phoebus R. Dokos wrote: What, the driver? Not really. Wrong question... what I meant is... is it read (the status of the mouse) at the same addresses as QIMI ? Certainly, if you're using a QIMI interface. But not on QPC, Q40, QXL... Marcel Is there a way to directly read the pointer

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread Marcel Kilgus
Dilwyn Jones wrote: Is there a way to directly read the pointer position [take the example of a screen saver program which is displaying a screen saver module (external program) but needs to monitor the mouse to see if it's been moved in order to to restore the screen] which is compatible

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread Richard Zidlicky
On Wed, Jan 09, 2002 at 04:35:12PM -, Dilwyn Jones wrote: Phoebus R. Dokos wrote: What, the driver? Not really. Wrong question... what I meant is... is it read (the status of the mouse) at the same addresses as QIMI ? Certainly, if you're using a QIMI interface. But not on QPC,

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread Phoebus R. Dokos
At 07:57 ìì 9/1/2002 +0100, you wrote: On Wed, Jan 09, 2002 at 04:35:12PM -, Dilwyn Jones wrote: Phoebus R. Dokos wrote: What, the driver? Not really. Wrong question... what I meant is... is it read (the status of the mouse) at the same addresses as QIMI ? Certainly, if

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread Marcel Kilgus
Phoebus R. Dokos wrote: Hmmm another undocumented feature... nothing in the SMS reference manual :-) Or at least I didn't see it. Thanks Richard No, this isn't documented anywhere, but I did post a quite comprehensive list just one month or so ago. Marcel

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread Dilwyn Jones
Thank you. -- Dilwyn Jones [EMAIL PROTECTED] http://www.soft.net.uk/dj/index.html Is there a way to directly read the pointer position [take the example of a screen saver program which is displaying a screen saver module (external program) but needs to monitor the mouse to see if it's been

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-09 Thread P Witte
Phoebus R. Dokos writes: Hmmm another undocumented feature... nothing in the SMS reference manual :-) Or at least I didn't see it. Thanks Richard No, but it is in the Qptr manual - a must for writing PE programs! Is it still available (Jochen)? Per Below is a small S*Basic program to

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-07 Thread Roy Wood
In message [EMAIL PROTECTED], Phoebus R. Dokos [EMAIL PROTECTED] writes Hi all, does anyone know of a way to patch the SMSQ Mouse driver in order to change its behaviour, ie. making double click to DO and right click something else...? Is it at the same addresses as the Qimi? Is this so you

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-07 Thread Marcel Kilgus
Phoebus R. Dokos wrote: does anyone know of a way to patch the SMSQ Mouse driver in order to change its behaviour, ie. making double click to DO and right click something else...? Not much of a problem with the sources, but hard to do otherwise. Is it at the same addresses as the Qimi? What,

Re: [ql-users] Patching SMSQ Mouse routines

2002-01-07 Thread Phoebus R. Dokos
At 01:34 ðì 8/1/2002 +0100, you wrote: Phoebus R. Dokos wrote: does anyone know of a way to patch the SMSQ Mouse driver in order to change its behaviour, ie. making double click to DO and right click something else...? Not much of a problem with the sources, but hard to do otherwise. Is