To register for an Internet.com membership to receive newsletters and white papers, use the Register button ABOVE.
To participate in the message forums BELOW, click here


A Flash Developer Resource Site

Go Back   Flash Kit Community Forums > Flash Help > Flash General Help

Reply
 
Thread Tools Search this Thread Display Modes
Old 05-11-2007, 11:46 AM   #1
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Same flash movie.. different in IE and FF?

Right, so I'm making a little flash banner thing for my company's website and basically it has three 'sections' - each section has a different product/service that we're promoting. The user will rollover the buttons for these three sections and the new banners will come up. In addition, when the user just gets to the page, the banner will pick a RANDOM page to show from one of the three.

This behavior works perfectly in MSIE 6.0 but in Firefox 1.5 the random-page thing doesn't work. What it does instead is if it picks the first page to come up (you can tell by which button is 'up') then the first page will come up (that's fine) - if it generates that the second page should come up then the FIRST page still comes up; and if it generates for the third page to come up then the SECOND page comes up. The third page will never randomly appear in FF so far. The rollovers work fine in both browsers, but this random page thing is just confusing me.

This is really strange also because it's the same software displaying the flash movie - it's not like it has two different versions of flash player or that it's using different players altogether - it's exactly the same! How can it show two different things?! Sigh.

Any help is appreciated,
thanks in advance.

PS. The website I'm making, where you can see this flash in action is http://infoconsol.tuxtank.com/ - it's the only flash there.
DarkSlaya is offline   Reply With Quote
Old 05-11-2007, 02:42 PM   #2
jasonsplace
FK's Official Mac Hater
 
jasonsplace's Avatar
 
Join Date: Mar 2002
Location: Provo, Utah
Posts: 2,242
Can you post HOW you are choosing the random scene to jump to?
__________________
Jason L. Wright
I'm not that hard to imitate. Just make some random negative claim at Apple or anything else for that matter and then have nothing to back it up.
jasonsplace is offline   Reply With Quote
Old 05-11-2007, 03:47 PM   #3
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Quote:
Originally Posted by jasonsplace
Can you post HOW you are choosing the random scene to jump to?
Code:
startpage = Math.round(Math.random()*2)+1;
if (startpage == 1) {
	_root.currentup = "b1";
	_root.gotoAndPlay("sec1");
	_root.b1.gotoAndStop(18);
} else if (startpage == 2) {
	_root.currentup = "b2";
	_root.gotoAndPlay("sec2");
	_root.b2.gotoAndStop(18);
} else if (startpage == 3) {
	_root.currentup = "b3";
	_root.gotoAndPlay(62); // This used to be "sec3" but it didn't go to the frame that was clearly labelled "sec3"? So I changed this one to the frame number.
	_root.b3.gotoAndStop(18);
}
the "_root.currentup" variable determines which button is currently in the 'up' state so the other ones will fall down if they are [going] up - don't mind it.
DarkSlaya is offline   Reply With Quote
Old 05-14-2007, 11:21 AM   #4
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Bump.
DarkSlaya is offline   Reply With Quote
Old 05-15-2007, 11:06 AM   #5
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Is there no solution out there? There has to be something I can do, I don't want firefox users to get a second-rate banner and internet explorer users to get one that works fine (if anything, internet explorer users should suffer ) but anywho...

Bump!
DarkSlaya is offline   Reply With Quote
Old 05-16-2007, 03:50 PM   #6
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Bump. Honestly - no one has any idea?
DarkSlaya is offline   Reply With Quote
Old 05-17-2007, 06:51 PM   #7
rdoyle720
Senior Member
 
Join Date: Apr 2002
Posts: 2,556
There's nothing about your code that seems wrong, though it's not working at all for me in IE. You should really consider using SWFObject or another javascript method to embed the Flash movie. You should also make sure both browsers you're testing with have the same version of the plug-in.
rdoyle720 is offline   Reply With Quote
Old 05-17-2007, 07:50 PM   #8
EvolveDesigns
Ryan Thomson
 
EvolveDesigns's Avatar
 
Join Date: Oct 2001
Location: British Columbia
Posts: 3,332
won't load for me in ie either
__________________
Evolve Designs Interactive Media
the natural selection
EvolveDesigns is offline   Reply With Quote
Old 05-18-2007, 11:02 AM   #9
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
They do have the same version (the two browsers), and it used to have the same glitch even before I changed the method it was embedded with. The method I used now was mentioned on some site to help make it valid XHTML transitional.
DarkSlaya is offline   Reply With Quote
Old 05-22-2007, 03:30 PM   #10
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Bump. again.
DarkSlaya is offline   Reply With Quote
Old 05-22-2007, 04:00 PM   #11
jasonsplace
FK's Official Mac Hater
 
jasonsplace's Avatar
 
Join Date: Mar 2002
Location: Provo, Utah
Posts: 2,242
It doesn't show up for me in IE either. You really need to change your code to embed the video. It doesn't really matter if it's valid XHTML if it doesn't work the way that it's supposed too. Use SWF Object and everything should be fine. I've refreshed the file a few times here and it's jumped to different places in the Flash.
__________________
Jason L. Wright
I'm not that hard to imitate. Just make some random negative claim at Apple or anything else for that matter and then have nothing to back it up.
jasonsplace is offline   Reply With Quote
Old 05-23-2007, 09:59 AM   #12
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
I don't think you're understanding the problem... When you put your mouse over the buttons it works fine but when you JUST enter the page without putting your mouse over anything it should pick one of the three pages randomly and go to it. This doesn't happen properly in firefox as when it shows the middle button up initially it's actually at the left button's page, and the right button shows the middle button's page. AFTER you mouseover it, it works properly. I will change the embed code but the same problem occurs for me EVEN when i can see the flash movie "properly" embedded into the page.
DarkSlaya is offline   Reply With Quote
Old 05-23-2007, 11:38 AM   #13
jasonsplace
FK's Official Mac Hater
 
jasonsplace's Avatar
 
Join Date: Mar 2002
Location: Provo, Utah
Posts: 2,242
When I load it in Firefox it was randomly going to the different pages and I didn't mouseover any buttons.
__________________
Jason L. Wright
I'm not that hard to imitate. Just make some random negative claim at Apple or anything else for that matter and then have nothing to back it up.
jasonsplace is offline   Reply With Quote
Old 05-23-2007, 12:21 PM   #14
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Did it get to ALL THREE different pages this way?

DarkSlaya is offline   Reply With Quote
Old 05-23-2007, 12:31 PM   #15
jasonsplace
FK's Official Mac Hater
 
jasonsplace's Avatar
 
Join Date: Mar 2002
Location: Provo, Utah
Posts: 2,242
It didn't. Can you post the FLA or at least an FLA that is having this problem? Youu could do that or e-mail it to me at jwright [at] jasonlwright [dot] com and i'll take a look at it.
__________________
Jason L. Wright
I'm not that hard to imitate. Just make some random negative claim at Apple or anything else for that matter and then have nothing to back it up.
jasonsplace is offline   Reply With Quote
Old 05-23-2007, 01:20 PM   #16
DarkSlaya
aka Arcanimus
 
Join Date: Dec 2002
Posts: 247
Sure, here it is.

http://infoconsol.tuxtank.com/promotional.fla

Thanks in advance.
DarkSlaya is offline   Reply With Quote
Old 05-23-2007, 01:59 PM   #17
jasonsplace
FK's Official Mac Hater
 
jasonsplace's Avatar
 
Join Date: Mar 2002
Location: Provo, Utah
Posts: 2,242
Thank you. I've downloaded and started playing with it. I'll let you know what I find.
__________________
Jason L. Wright
I'm not that hard to imitate. Just make some random negative claim at Apple or anything else for that matter and then have nothing to back it up.
jasonsplace is offline   Reply With Quote
Reply

Go Back   Flash Kit Community Forums > Flash Help > Flash General Help

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

Forum Jump


All times are GMT -4. The time now is 06:13 PM.


internet.commerce
Be a Commerce Partner
 »  »  »  »  »  »  »
 »  »  »  »  »  »
 

    

Acceptable Use Policy


The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.