Web Design and Development Forums

firefox problem

This is a discussion on "firefox problem" within the Flash & Multimedia Forum section. This forum, and the thread "firefox problem are both part of the Design Your Website category.

Old Apr 14th, 2008, 14:54   #1 (permalink)
Reputable Member
 
Join Date: Aug 2007
Location: netherlands
Posts: 104
Send a message via MSN to ahwell Send a message via Yahoo to ahwell
firefox problem

hello,
can someone tell me why loadMovie works alright in IE and not at all in firefox? and is there a fix for it?
thanks in advance,
MArieke
ahwell is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 15:46   #2 (permalink)
Chief Moderator
 
aso186's Avatar
 
Join Date: Oct 2007
Location: UK
Posts: 715
Blog Entries: 2
Send a message via Skype™ to aso186
Re: firefox problem

Could you post the code you're using?

If you're using the base attribute, try removing it and see if that fixes anything.
__________________

aso186 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 16:22   #3 (permalink)
Reputable Member
 
Join Date: Aug 2007
Location: netherlands
Posts: 104
Send a message via MSN to ahwell Send a message via Yahoo to ahwell
Re: firefox problem

Hi,
Im not sure what you mean by base attribute:P,but i'm using a rather simple code: I've used it before without problems..only difference now is its a swf i made out of an flv..which i had to upload aswell

Code: Select all
loadMovie("http://www.gotoandflash.com/sanderbeenen/video1.swf", rnd3_mc);
and on the stage theres a mc called rnd3_mc
ahwell is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 16:28   #4 (permalink)
Chief Moderator
 
aso186's Avatar
 
Join Date: Oct 2007
Location: UK
Posts: 715
Blog Entries: 2
Send a message via Skype™ to aso186
Re: firefox problem

Sorry, I meant the HTML code you're using to embed the swf.
__________________

aso186 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 16:36   #5 (permalink)
Reputable Member
 
Join Date: Aug 2007
Location: netherlands
Posts: 104
Send a message via MSN to ahwell Send a message via Yahoo to ahwell
Re: firefox problem

uhm i never manually changed the html..i published the html from within Flash cs3. it works alright in IE,but heres the html code,hope it sheds a light:
Code: Select all
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>website_apr14</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<center>
<body bgcolor="#000000">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
99%
-->
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
 if (AC_FL_RunContent == 0) {
  alert("This page requires AC_RunActiveContent.js.");
 } else {
  AC_FL_RunContent(
   'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
   'width', '1024',
   'height', '768',
   'src', 'website_apr14',
   'quality', 'high',
   'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
   'align', 'middle',
   'play', 'true',
   'loop', 'true',
   'scale', 'showall',
   'wmode', 'window',
   'devicefont', 'false',
   'id', 'website_apr14',
   'bgcolor', '#000000',
   'name', 'website_apr14',
   'menu', 'true',
   'allowFullScreen', 'false',
   'allowScriptAccess','sameDomain',
   'movie', 'website_apr14',
   'salign', ''
   ); //end AC code
 }
</script>
<noscript>
 <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/s...ersion=9,0,0,0" width="1024" height="768" id="website_apr14" align="middle">
 <param name="allowScriptAccess" value="sameDomain" />
 <param name="allowFullScreen" value="false" />
 <param name="movie" value="website_apr14.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /> <embed src="website_apr14.swf" quality="high" bgcolor="#000000" width="1024" height="768" name="website_apr14" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
 </object>
</noscript>
</body>
</center>
</html>

Last edited by ahwell; Apr 14th, 2008 at 17:07.
ahwell is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 16:36   #6 (permalink)
New Member
 
Join Date: Apr 2008
Location: London, UK
Age: 25
Posts: 8
Re: firefox problem

I know there is an issue when it comes to Javascript/swf in Firefox at times, are you using JSP pages?
Alex Rehm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 16:43   #7 (permalink)
New Member
 
Join Date: Apr 2008
Location: London, UK
Age: 25
Posts: 8
Re: firefox problem

Sorry, cannot edit my posts. My thought is that your AS-code could refer to files via a '\'.

IE can handle '\', but Firefox (and some versions of Opera) will require all paths to be specified as '/'


Hope that helps?
Alex Rehm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 17:04   #8 (permalink)
Reputable Member
 
Join Date: Aug 2007
Location: netherlands
Posts: 104
Send a message via MSN to ahwell Send a message via Yahoo to ahwell
Re: firefox problem

ok im lost here. Im not using JSP pages (at least i dont think so) and I dont know what you mean by referring to files via a '/' or '\'..I've never used a '\' ..( I had to search for it on my keyboard just now)
I think the problem lies in the flv file. FF has troubles reading it into the SWF or so..
ahwell is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 17:15   #9 (permalink)
New Member
 
Join Date: Apr 2008
Location: London, UK
Age: 25
Posts: 8
Re: firefox problem

Hiya,

What I meant was: if you are loading external files into a movie then you would normally use something like this:
Code: Select all
loadMovie("content/your_content.swf","movie_you_are_loading_content_into");
However, if you are using
Code: Select all
loadMovie("content\your_content.swf","movie_you_are_loading_content_into");
Then this will not work in FFox and some versions of Opera.

Other ideas:
1) Is the flv on the same site as the swf? If not then you need to enter the full (absolute) path
2) It could be that the FLVplayback component is not working correctly. Try to drag the FLVPlayback component onto the stage (different layer so that you can remove it if it doesn't work), and give it an instance name, say "moviePlayer".

Now try:
Code: Select all
 on(release) {
moviePlayer.contentPath = "mymovie.flv";
moviePlayer.play();
}

Does that help?
Alex Rehm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 19:13   #10 (permalink)
New Member
 
Join Date: Apr 2008
Location: London, UK
Age: 25
Posts: 8
Re: firefox problem

Quick update on the situation: I had a chat with ahwell, and it turns out that the flashfile as looking for a connection to the same path within 2 files at the same time (once in the main movie to load the video and twice in total in the main movie and the video movie. Firefox classed this as an unsafe 'connection', but disabling absolute paths and having the video movie in the same folder as the main movie seems to have fixed the issue
Alex Rehm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 14th, 2008, 19:17   #11 (permalink)
Reputable Member
 
Join Date: Aug 2007
Location: netherlands
Posts: 104
Send a message via MSN to ahwell Send a message via Yahoo to ahwell
Re: firefox problem

Thanks ! Im gonna enjoy a very pleasant evening now!
ahwell is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 17th, 2008, 11:44   #12 (permalink)
New Member
 
Join Date: Apr 2008
Location: Sunderland
Age: 20
Posts: 2
Re: firefox problem

Im having problems with flash in firefox too. It seems to be alright to start with and then when one part of the swf file doesnt work, all the actions in the file stop working. any help?
bellyscratch is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Float problem with Firefox Emzi CSS Forum 10 Apr 4th, 2008 12:02
Problem with Firefox divs... WillRevera CSS Forum 3 Aug 31st, 2007 16:29
Firefox and 100% height problem monkey64 CSS Forum 17 Sep 29th, 2006 23:09
Firefox problem Powderhound HTML Forum 6 Sep 6th, 2006 21:46
I'm having a problem with Firefox! majorjc CSS Forum 2 Jan 17th, 2006 15:48



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 19:13.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59