Add a flash video in my website

hi,
I like to add a flash video in my website but the problem is images that I included in flash are little smaller than the width, How can I stretch those images so that it look in proper shape as per flash

<snip/>

Use the free transform tool to scale

The “object” tag is used to embed an object within the document. “Classid” is used to specify the location of the objects data. Microsoft Internet Explorer versions 3.0 and later use the “codebase” attribute to detect which version of the Adobe Flash Player ActiveX Control is installed on a user’s computer. If the user’s version is earlier than the version specified by “codebase”, Internet Explorer can automatically download and install the newer version of the Flash Player from the location specified in “codebase”. The rest is pretty self-expanatory.

@Ashley Wilis

OK, I’ll bite.

How are your two posts in this thread even related?

Here is how you can add a flash video on your website:

<script type=‘text/javascript’ src=‘swfobject.js’></script>
<script type=‘text/javascript’>
var s1 = new SWFObject(‘player.swf’,‘player’,‘320’,‘240’,‘9’);
s1.addParam(‘allowfullscreen’,‘true’);
s1.addParam(‘allowscriptaccess’,‘always’);
s1.addParam(‘flashvars’,‘file=video.flv&autostart=false’);
s1.write(‘preview’);
</script>

<snip/>