|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Flash movie won't play in ASP web page?
I have just designed a small intro movie in Flash and have tried to insert it into my webpage via dreamweaver.
There is also some asp on the page therefore it is named intro.asp. When i preview the page on my web server it doesn't play the flash movie? Have you any ideas why? Many thanks |
|
#2
|
|||
|
|||
|
Don't know if this might help:
<object width="550" height="400"><param name="movie" value="somefilename.swf"><embed src="somefilename.swf" width="550" height="400"></embed></object> this is what ww3 says for swf in an html ![]() |
|
#3
|
||||
|
||||
|
The code dreamweaver should provide is perfectly usable so don't make changes to it. First make sure of a couple things...
The path to the .swf is correct The .swf is uploaded to the server Then change the URL to the path of the swf and view it alone in the browser. If you can see the .swf in the browser when you view its path and the two other things I mentioned are both ok, then let us know. There should be nothing funny going on. Post your code next time too.
__________________
If you found a post of mine helpful, please click on the on my post to add to my reputation.
|
|
#4
|
|||
|
|||
|
Managed to get it sorted! I hadn't loaded it properly into the root folder of IIS.
Thanks for your replies. Here is the code anyway. Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>'Welcome to Fairfields'</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <div align="center"> <p> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/...ersion=6,0,29,0" width="550" height="400"> <param name="movie" value="/Flash Intro/Fairfield_Intro.swf"> <param name="quality" value="high"><param name="LOOP" value="false"><param name="BGCOLOR" value="#FFFFFF"> <embed src="/Flash Intro/Fairfield_Intro.swf" width="550" height="400" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" bgcolor="#FFFFFF"></embed> </object> </p> <p><em><strong><a href="/Frames/Frameset.asp" target="_self">Enter Website </a></strong></em></p> <p> <%=Date%></p> </div> </body> </html> |
![]() |
| Viewing: ASP Free Forums > Programming > HTML, JavaScript And CSS Help > Flash movie won't play in ASP web page? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|