473,765 Members | 1,956 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

movie not loaded help

35 New Member
I uploaded index.html, index.swf, the Scripts folder with 'AC_RunActiveCo ntent.js' in it to http://www.paulineng.co.uk, it takes a long time to load & once it has loaded and I right-click, it says movie not loaded.
Below is the html/flash file:

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>:: PAULINE NG ::</title>
  6. <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
  7. </head>
  8.  
  9. <body bgcolor="EADBBF">
  10. <script type="text/javascript">
  11. AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','900','height','800','src','index.swf','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','index.swf' ); //end AC code
  12. </script>
  13. <center><script type="text/javascript">
  14. AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','900','height','800','src','index.swf','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','index.swf' ); //end AC code
  15. </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="800">
  16. <param name="movie" value="index.swf" />
  17. <param name="quality" value="high" />
  18. <embed src="index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="800"></embed>
  19. </object></noscript></center>
  20. </body>
  21. </html>
  22.  
Help needed

thanks
Aug 27 '07 #1
8 38433
xNephilimx
213 Recognized Expert New Member
Hi, camphor.
I'm checking the code in your site and it's totally different from the one you posted here.
There are two movies but only one is written by the AC_RunActiveCon tent script (a very very poor adobe code, by the way). The other one is hard coded in html (object/embed). The one that is written by the scripts doesn't load and it's because the src parameter passed to the script is file:///C|/pauline ng/index which is obviously wrong. And the other movie works fine.

Change the src of the one that is not playing to a real source and use the SWFObject script to load the flash movies, that is an effing great script to run flash movies. You can find it here http://blog.deconcept.com/swfobject/
Read the instructions to see how it works and how to implement it.

Kind regards,
The_Nephilim

I uploaded index.html, index.swf, the Scripts folder with 'AC_RunActiveCo ntent.js' in it to http://www.paulineng.co.uk, it takes a long time to load & once it has loaded and I right-click, it says movie not loaded.
Below is the html/flash file:

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>:: PAULINE NG ::</title>
  6. <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
  7. </head>
  8.  
  9. <body bgcolor="EADBBF">
  10. <script type="text/javascript">
  11. AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','900','height','800','src','index.swf','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','index.swf' ); //end AC code
  12. </script>
  13. <center><script type="text/javascript">
  14. AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','900','height','800','src','index.swf','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','index.swf' ); //end AC code
  15. </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="800">
  16. <param name="movie" value="index.swf" />
  17. <param name="quality" value="high" />
  18. <embed src="index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="800"></embed>
  19. </object></noscript></center>
  20. </body>
  21. </html>
  22.  
Help needed

thanks
Aug 28 '07 #2
camphor
35 New Member
thanks The_Nephilim your answer did help, the swf object script is fantastic, one thing though, in firefox, the bgcolor doesn't show up even though it is in the code.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>:: PAULINE NG ::</title>
  6. <script type="text/javascript" src="swfobject.js"></script>
  7. </head>
  8.  
  9. <body bgcolor="EADBBF">
  10.  
  11. <center>
  12. <div id="flashcontent"></div>
  13. <script type="text/javascript">
  14.    var so = new SWFObject("index.swf", "myportfolio", "900", "800", "8", "#EADBBF");
  15.    so.write("flashcontent");
  16. </script>
  17.  
  18. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="800">
  19.   <param name="movie" value="index.swf" />
  20.   <param name="quality" value="high" />
  21.   <embed src="index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="800"></embed>
  22. </object></center>
  23.  
Aug 28 '07 #3
xNephilimx
213 Recognized Expert New Member
You're welcome.
If your background doens't show right, try matching the actual movie's background color with the one in the code of the script..
Also see if there's no movieclip overlapping the background of the movie...
I don't know, I've never had that issue, if the above doesn't solve it, post a link to the fla file and I'll check it.

Best regards,
The_Nephilim

thanks The_Nephilim your answer did help, the swf object script is fantastic, one thing though, in firefox, the bgcolor doesn't show up even though it is in the code.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>:: PAULINE NG ::</title>
  6. <script type="text/javascript" src="swfobject.js"></script>
  7. </head>
  8.  
  9. <body bgcolor="EADBBF">
  10.  
  11. <center>
  12. <div id="flashcontent"></div>
  13. <script type="text/javascript">
  14.    var so = new SWFObject("index.swf", "myportfolio", "900", "800", "8", "#EADBBF");
  15.    so.write("flashcontent");
  16. </script>
  17.  
  18. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="800">
  19.   <param name="movie" value="index.swf" />
  20.   <param name="quality" value="high" />
  21.   <embed src="index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="800"></embed>
  22. </object></center>
  23.  
Aug 29 '07 #4
camphor
35 New Member
The background color on the html page shows up white when testing in firefox, here is the link to the fla file for you to check http://www.paulineng.co.uk/index.fla

thanks
Aug 30 '07 #5
xNephilimx
213 Recognized Expert New Member
Ohhh!! I totally missed that part, you missed the # before the hex value of the background.
You put:
<body bgcolor="EADBBF ">And it must be:
<body bgcolor="#EADBB F">That should solve it.

Best regards,
The_Nephilim

The background color on the html page shows up white when testing in firefox, here is the link to the fla file for you to check http://www.paulineng.c o.uk/index.fla

thanks
Aug 30 '07 #6
camphor
35 New Member
thank you very much, you have been a great help
Aug 31 '07 #7
xNephilimx
213 Recognized Expert New Member
You're welcome.
And good luck with the project!

Best regards,
The_Nephilim

thank you very much, you have been a great help
Aug 31 '07 #8
ppp4you
1 New Member
I get a script error and flash does not play (2Dahani.com):
SWFObject is not defined
[Break on this error] var so = new SWFObject ("public_htm l/templates/flashbanner1.sw f", "300", "60", "8",...

Here is my code (Please help)
Expand|Select|Wrap|Line Numbers
  1. </script>
  2. <script type="text/javascript" src="scripts/swfobject.js"></script>
  3.  
  4. <div id="flashcontent"></div>
  5. <script type="text/javascript">
  6.    var so = new SWFObject ("public_html/templates/flashbanner1.swf", "flashbanner1", "300", "60", "8", "#000000");
  7.    so.write("flashcontent");
  8. </script>
  9.  
  10. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="(URL address blocked: See forum rules)=7,0,19,0" width="300" height="60">
  11.   <param name="movie" value="/public_html/templates/Flashbanner1.swf" />
  12.   <param name="quality" value="high" />
  13.   <embed src="/public_html/templates/Flashbanner1.swf" quality="high" pluginspage="(URL address blocked: See forum rules)" type="application/x-shockwave-flash" width="300" height="60"></embed>
  14. </object></
Mar 15 '08 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

4
3415
by: AES/newspost | last post by:
Can anyone provide a quick tip on the html structure to link from a thumb to a movie poster and from there on to a QuickTime movie, all in one go, using EMBED? I have a number of (large) QuickTime movie files, each of them matched to a one-frame QuickTime movie poster of the same screen size and also to a much smaller JPEG thumb of the same image as the movie poster. I want to put the small thumbs into individual Table cells to serve...
3
2498
by: Dean Arpajian | last post by:
Looking to find info/ libs on creating (small) video files. Basically what I'm looking for is a tutorial for constructing a short video... (nothing nasty: output from a transmission line simulation). I've been searching for a while now, and all I get is info for creation inside someone else's app. Rather useless for me. The sim needs to be web accessible. So I was thinking mpeg, quicktime, wmv, avi, etc.
1
3327
by: torbs | last post by:
I have a problem when I use javascript to get the length and position of a movie I recieve from a rtsp stream. The length and position is extremely high and not the actual length and position of the movie. When I try Real Player and it's methods I recieve a length and position of 0.
2
2309
by: jamjam19 | last post by:
Hello, I've created a Flash movie with animation as a header for my website. This movie is embedded into my "header.html" file which is called by every page on the site (by way of PHP). Is there a way that I can have this movie only load on the first page the user visits, and then have the movie stay at its last frame whenever the user goes to another page (as opposed to reloading every time a new page is loaded? I hope I made this...
3
1964
by: suresh_nsnguys | last post by:
Respected sir/madam, right now i am displaying movie (.wmv) file using <embed> and <object> tags inside <div> tag. Everything is working fine. But when user upload 10 MB size movie (.wmv) File, My browser screen is blank ,bcz the browser will start play the movie once the movie (.wmv) file is completely loaded in cache. I am trying to...
2
1952
by: vimal.424 | last post by:
Dear All, Please help me......... Please tell me how can we store the flash movie in data base,after storing how can we retreive flash movie from data base. I want have to do, also the preview the flash movie before save in database.............. thanks in advance
2
2632
elamberdor
by: elamberdor | last post by:
A main movie on the root directory, calls in swf's on button press from "flash" folder, each contain one XML field that updates for each. XML located in flash folder. The XML displays fine when it loads into a flash movie on the page, however, when that movie is called into another movie - the XML content wont display. Any ideas? not sure if: this._lockroot = true; will help, but i put it in my swfs anyways.
7
3706
nathj
by: nathj | last post by:
Hi, I'm stuck. Obviously I'm stuck or I wouldn't be posting a new question. I have a php script that takes information from a database and outputs it to the screen. The information in questions relates to a SWF file that I wish to use to display the members of the network team in our organisation. $lcDisplay .= '<div id="peopleContent">' ; $lcSelectTeam = "SELECT
0
10007
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9835
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8832
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7379
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5276
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5423
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3924
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.