Page 1 of 1

Putting Flash into a Website

Posted: Sun Dec 28, 2008 11:23 pm
by YzRiDeR72
Although i know you said you weren't fluent with Flash can anyone help incorporating this into a page?
This is required to run any flash creations on a website (from what i know anyway :p[/sub]



Image

Re: Putting Flash into a Website

Posted: Mon Dec 29, 2008 4:11 am
by 3ICE
All flash programs can create html objects all by themselves. Find that option in their menu:)

Or use this code:

Code: Select all

<object height="640" width="480">
<param name="movie" value="file.swf">
<embed src="file.swf" height="640" width="480"></embed>
</object>
  • Export as swf
  • Upload to your webhost (same directory where the html file will be)
    • Change 640 and 640 to your movie's height.
    • Change 480 and 480 to your movie's width.
    • Change file.swf and file.swf to your movie's filename.
  • Put the updated code in a html page.
  • Upload the html file too.
EDIT: But I'm good with html :)