PDA

View Full Version : How to put a flash file in a webpage


Lei
03-19-2006, 02:37 AM
:confused: :confused: :confused:
Hi, I am a beginner of using bluehost. I was trying to use pagewizard to build my web page from a blank page. But I cannot upload flash and video.Is there any other way to do this. I really need your help.
Thanks;)

WebJDC
03-19-2006, 10:46 AM
is the question how to upload a flash and video files, or put them on a webpage?

to insirt a flash file to a webpage try this code

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="33" height="33">
<param name="movie" value="YOUflashFILEhere.swf">
<param name="quality" value="high">

<embed src="YOURflashFILEhero.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="THEWIDTH" height="THEHEIGHT" ></embed>
</object>


to upload it, upload it exactly how you would your normal html pages.
i dont know anything about pagewizard though, so i cant tell you how to do it within there

timberford
03-21-2006, 03:17 AM
Unfortunately the above method invalidates the page. For anyone interested in a standards compliant method I suggest you have a read of this... http://www.alistapart.com/articles/flashsatay/

WebJDC
03-21-2006, 07:16 PM
i dunno thats what dreamweaver spit out for me and works.
i dont know what invalidates mean.

timberford
03-23-2006, 12:53 AM
take a read of the article and you'll find out.

WebJDC
03-23-2006, 02:46 PM
Of what that page said, if your using XHTML don't use the defeault way of doing it.

There seems to be no point of doing it his way otherwise.

Sai
03-23-2006, 07:51 PM
i just use dreamweaver and click the insert flash button... the code dreamweaver put out is the one posted above...

the code on top works fine on IE and FireFox... so what's invalidates? not standard? but dreamweaver is a standard program for webmaster. the codes produce by dreamweaver are today's standard...
it works fine for me on all browser so what's wrong with it? why not use it?

lazynitwit
03-24-2006, 02:28 PM
i just use dreamweaver and click the insert flash button... the code dreamweaver put out is the one posted above...

the code on top works fine on IE and FireFox... so what's invalidates? not standard? but dreamweaver is a standard program for webmaster. the codes produce by dreamweaver are today's standard...
it works fine for me on all browser so what's wrong with it? why not use it?

Just because it works does not mean it is Standards Compliant, especially as you move onto XHTML. While to a lot of people being standards compliant means nothing, it is becoming a common trend to follow them. Dreamweaver is standards compliant for the most part, however it's built-in validator is not as strict as the one at the W3C (http://validator.w3.org/).