Here's my .html file:
<hmtl>
<head>
<style type="text/css">
.button{
background: url('images/1.png');
}
.button:hover{
background: url('images/2.jpg');
}
</style>
</head>
<body>
<img class="button" src="images/1.png">
</body>
The files are set correctly in the correct ...
I'm having a really weird problem with the MOUSE_OVER event. I'm building dynamic tabs representing mp3 songs containing textfields with info and a dynamic image for the cover art. I am trying to get a simple MOUSE_OVER working over the whole tab, such that you can select the next song to play.
I am using a Sprite with alpha 0 that over...
Hi,
i want to code a html with a dynamically background-image with a widht of ~1920px.
The Image must be displayed with its center. When i move to the left side with my mouse the background should go to the right and display the hided left content - if i go right the same effect but inverted. I can remember i saw something similar as an...