webscriptprogrammer
Programmer
I have a div and inside that div I have a flashplayer
At start I like to hide most of the flash except a 100x100px at the left up corner.
when I push a button inside the flash the div get bigger and another button show.
when I push that it shrink to 100x100px again.
I use overflow: hidden to hide that I dont want to show and that work great in IE but in FF it still show hole flash player?
At start I like to hide most of the flash except a 100x100px at the left up corner.
when I push a button inside the flash the div get bigger and another button show.
when I push that it shrink to 100x100px again.
I use overflow: hidden to hide that I dont want to show and that work great in IE but in FF it still show hole flash player?
Code:
#myflash {
position:absolute;
width:100px;
height:100px;
z-index:100;
border: 2px solid black;
overflow:hidden;
left: 167px;
top: 44px;
}