hi,
If you mean stopping IE trying to select the image, this should do that:

if (is.ie) document.body.onselectstart = function() { return false; }

To allow selecting again:

if (is.ie) document.body.onselectstart = null;

Cheers,
Richard
www.richardinfo.com




----- Original Message ----- 
From: "Robelix" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, October 24, 2001 2:21 PM
Subject: [Dynapi-Help] disabling marking in IE


> I'm looking for something that can disable marking of images in nested 
> layers.
> 
> I'm currently working on a game where the player has to "shoot" moving 
> layers containing an image. In IE it happens that you accidently mark 
> the images and they get an ugly blur. 
> All the "sprites" are nested in one window-size layer.
> 
> Or is it possible to change the layer-background-image?
> 
> a testversion of the game can be found at
> http://www.robelix.com/dynapi/xmash2test/
> All test-reports are welcome!
> I hope you are not offended by the subject of the game :)
> 
> -- 
> Roland "Robelix" Obermayer
> Authorisierter Nichtdenker
> http://www.robelix.com
> [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
> 
> --
> God is real, unless declared as an integer.
> 
> _______________________________________________
> Dynapi-Help mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/dynapi-help
> 


_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to