Hi
I believe by setting this as default would cause problems
to users who are already using tiled bgimages as they would
have to alter every instance of setBgImage in their code
and widgets causing a lot of unneeded reworking of existing
code, also w3c specifications are that background images
should tile unless otherwise stated, so would seem natural
to continue this as background images have allways tiled
(at least since ns3)
hence this isnt a bug, its on purpose :)
if you are not bothered about ns4 you can simply use
or alternativly if you want to use a image that doesnt tile
simply use
yourobj.setHTML('<img src="blah.gif">')
instead and use a nested cover layer for events
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=176079
Hi
I believe by setting this as default would cause problems
to users who are already using tiled bgimages as they would
have to alter every instance of setBgImage in their code
and widgets causing a lot of unneeded reworking of existing
code, also w3c specifications are that background images
should tile unless otherwise stated, so would seem natural
to continue this as background images have allways tiled
(at least since ns3)
hence this isnt a bug, its on purpose :)
if you are not bothered about ns4 you can simply use
if(is.ie||is.dom)
yourobj.css.backgroundRepeat="no-repeat"
or alternativly if you want to use a image that doesnt tile
simply use
yourobj.setHTML('<img src="blah.gif">')
instead and use a nested cover layer for events