Hello, When listening to DOM MouseEvent events the modifier keys attributes (shiftKey, ctrlKey and altKey) should indicate 'true' when those keys are pressed when a mouse event (click, move, etc...) occurs.
It turns out that, for listeners attached to the SVGDOM using JavaScript, the following behaviour is exhibited when a mouse event occurs: 1) None of the modifier key attributes indicate 'true' when they are individually pressed. 2) If [Ctrl] + [Shift] are pressed together the shiftKey == true. 3) If [Alt] + [Shift] are pressed together the shiftKey == true. 4) If [Alt] + [Ctrl] are pressed together the ctrlKey == true. This is not the correct behaviour. I have run the same example in ASV3, Opera 9 and FireFox 1.5.5 and they all behave correctly. As this is a DOM Events problem I will combine it with the multiple event listener problem I reported last week and create a test example that covers both. Regards Philip Fennell --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
