Re: CTRL and SHIFT keys with mouse [message #38177] |
Wed, 25 February 2004 01:45 |
Gapelyuk Andrej
Messages: 6 Registered: October 1998
|
Junior Member |
|
|
Ingo Salzmann wrote:
>
> Andrej,
> see event.modifiers description in the help about WIDGET_DRAW ... there
> it says:
>
> The value in the MODIFIERS field is generated by OR-ing the following
> values together if a key is depressed.
>
> Bitmask Modifier Key
> 1 Shift
> 2 Control
> 4 Caps Lock
> 8 Alt (See Note following this table.)
>
> --> IF ((event.press EQ 1) AND (event.modifiers EQ 1)) THEN print,
> 'Shift pressed at mouse click'
>
> Regards,
> Ingo
>
Many thanks for your answer and example. It works nice.
Andrej Gapelyuk
|
|
|
Re: CTRL and SHIFT keys with mouse [message #38178 is a reply to message #38177] |
Wed, 25 February 2004 00:27  |
Ingo Salzmann
Messages: 10 Registered: December 2002
|
Junior Member |
|
|
Andrej,
see event.modifiers description in the help about WIDGET_DRAW ... there
it says:
The value in the MODIFIERS field is generated by OR-ing the following
values together if a key is depressed.
Bitmask Modifier Key
1 Shift
2 Control
4 Caps Lock
8 Alt (See Note following this table.)
--> IF ((event.press EQ 1) AND (event.modifiers EQ 1)) THEN print,
'Shift pressed at mouse click'
Regards,
Ingo
Andrej Gapelyuk schrieb:
> Hi folks,
>
> How can I recognise in widget event if CTRL or SHIFT key was pressed
> simulteneously with mouse key.
>
> Andrej Gapelyuk
|
|
|