How to give my flash (.swf) a specific height and width in order to crop it in my html page?
ok lemme explain in detail. I have my web page in which i am using a flash template. so at the end of the flash there is a text written (Sound on/off). I wanna crop it! I know it's impossible to edit a flash file, but how can i give my html a specific height and width in order to crop the below part
Public Comments
- Just put it in a div, change the height to whatever you need to crop off the bottom, then give the div an overflow of hidden. <div style="height:200px;width:200px;overflow:hidden;"> <!-- embed your swf here --> </div> Just change height and width to whatever you need.
Powered by Yahoo! Answers