Code for SWF

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need help with writing code for a SWF file. The SWF video file is 320 X
240. But in the browser it fills the screen. I need it to constrain to 320 X
240. I don't know html...that's why I use Front Page 2000.

Can some write the code that I need to insert? And explain to me where &
how it should be inserted in the code that Front Page writes. Thanks.
 
Specify width and height in pixels.

Example from:
http://www.w3schools.com/flash/flash_inhtml.asp
--
Open the HTML page where you want to insert your Flash movie. Insert
this code:

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>
 
It has been a while since I was in Frontpage 2000, but try this

In edit mode, try doulble click on swf file. From there you can set the
parameters. ie: play once, loop, & size.

Hope this helps
 
Back
Top