PDA

View Full Version : flash video shrank, not sure why?


trigger_tre
10-13-2006, 08:03 AM
Hello and thanks in advance,

I created a simple .swf file and embedded it on my website. It works fine but the images is about 1/3 the original size.

I original .fla stage is 450px by 75px. For some reason when its displayed on the website its about a third the size it should be.

I put a crappy image above the .swf on the webpage so you could see the size it should be.

The website is http://harvestwhitecounty.com/

thanks,

trigger

_Aerospace_Eng_
10-13-2006, 08:08 AM
You must specify width and height. Instead of
<embed src="images/test88.swf"></embed>
use this
<object type="application/x-shockwave-flash" data="images/test88.swf" width="450" height="75">
<param name="movie" value="images/test88.swf">
<param name="scale" value="exactfit">
</object>
Also style tags go within the head tags not within the body tags.

trigger_tre
10-13-2006, 04:59 PM
Excellent,

Thanks once again Aerospace