Welcome to GraphicForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

getURL fails in Firefox on PC only

 
   Graphic Forums (Home) -> Browser Issues RSS
Next:  Flash showing in browser issue  
Author Message
paracleteweb

External


Since: Mar 12, 2008
Posts: 5



(Msg. 1) Posted: Wed Mar 12, 2008 5:13 pm
Post subject: getURL fails in Firefox on PC only
Archived from groups: macromedia>flash (more info?)

Links are failing in Firefox on a PC (macs work, IE works on pc and mac, safari
works)
http://www.paracletepress.com/index.html



It works if I view the swfs directly without embed eg:
http://site.paracletepress.com/sections/tabbedAd.swf

Please help!

Here's what I'm doing with the link

on (release) {
//Goto Webpage Behavior
getURL("http://www.paracletepress.com/baptism.html");
//End Behavior
}

 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
xm night rider

External


Since: Mar 12, 2008
Posts: 1



(Msg. 2) Posted: Wed Mar 12, 2008 5:54 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

why are you using goto webpage behavior, I would take that out and the end behavior, see what happens.

 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
urami_

External


Since: Nov 12, 2007
Posts: 20



(Msg. 3) Posted: Thu Mar 13, 2008 8:16 am
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

xm night rider wrote:
> why are you using goto webpage behavior, I would take that out and the end behavior, see what happens.

These are just comments and they have absolutely no effect on action script.
It's not even an action, just a side comment.

MY guess is the problem is within the fo.addParam("wmode","transparent");
WMODE is known to cause all problems.
I suggest use the page background to match it with the layout rather then
turning it off.

--
Best Regards

Urami


--
"Never play Leap-Frog with a Unicorn."


<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
paracleteweb

External


Since: Mar 12, 2008
Posts: 5



(Msg. 4) Posted: Tue Mar 18, 2008 4:08 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

took out the wmodes, it did not fix the links (i put them back in now).
are others having the same problem where IE works but dfirefox doesn't- but only on PCs?
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
paracleteweb

External


Since: Mar 12, 2008
Posts: 5



(Msg. 5) Posted: Tue Mar 18, 2008 4:08 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

took out the wmodes, it did not fix the links (i put them back in now).
are others having the same problem where IE works but firefox doesn't- but only on PCs?
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
Stace Baal

External


Since: Apr 24, 2008
Posts: 1



(Msg. 6) Posted: Thu Apr 24, 2008 1:16 am
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

We currently have the same problem. It seems to be a crossdomain issue
specific to Firefox on Windows. If you serve your swf from the same domain as
your site, notice it will work again. (Your site is www. but the swf is hosted
at site.)

This is becoming a huge problem for my company as all static assets are
required to come from a different sub-domain as they are edge cached via
Alamai.

Anyone else having this problems? Any potential solutions?
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
paracleteweb

External


Since: Mar 12, 2008
Posts: 5



(Msg. 7) Posted: Thu Apr 24, 2008 12:55 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Try setting param "allowScriptAccess" to "always", seems to fix the issue.
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
__icarus__

External


Since: Jul 09, 2004
Posts: 4



(Msg. 8) Posted: Mon Aug 04, 2008 4:51 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

did you ever get a solution for this? I tried the allowscriptacess=always and it did nothing for me
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
paracleteweb

External


Since: Mar 12, 2008
Posts: 5



(Msg. 9) Posted: Mon Aug 04, 2008 6:01 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

script access was my problem, weird to me that its browser specific, any thoughts?
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
Cliff Johnson

External


Since: Nov 04, 2008
Posts: 1



(Msg. 10) Posted: Tue Nov 04, 2008 1:25 pm
Post subject: Re: getURL fails in Firefox on PC only [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

This was useful. I had a similar problem ? and allowScriptAccess worked for me.

It has to appear twice in the HTML code as noted *** once in the param and
once in the embed.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=5,0,0,0" width="750" height="52">
<param name=movie value="test.swf">
<param name="allowScriptAccess" value="always"> ***
<param name="menu" value="false">
<param name="quality" value="high">
<param name="LOOP" value="false">
<param name="SCALE" value="exactfit">
<param name="BGCOLOR" value="#000033">
<embed src="test.swf" width="750" height="52" loop="false"
allowScriptAccess="always" *** menu="false" quality="high"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Vers
ion=ShockwaveFlash" type="application/x-shockwave-flash" scale="exactfit"
bgcolor="#000033"> </embed></object>

CLiFF
 >> Stay informed about: getURL fails in Firefox on PC only 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
getURL problems with Firefox and Safari - I am using getURL to do GET and POST to a named window. The window is the parent window of the popup window which contains the swf. I have verified that the window is named what I think it is, (I'm using javascript window.name="myname" in...

swf nav bar suddely fails in Explorer - Why would suddenly my movie nav bar on the web stop working in internet explorer mac OS X, but OK in OS 9. Also, the movie nav bar works ok in FireFox and Safari. Does this have anything to do withg that "security" thing? If so, I got to f...

IE fails silently when acessing JavaScript from a local - If you attempt to run JavaScript from a inside a local non-trusted SWF(the default), Firefox pops-up a dialogue "Adobe Flash Player Security has stopped a potentially unsafe operation". IE just fails silently. The Flash documentation suggest...

getURL glitch with IE v7. - I glanced through the prior posts but didn't see anything on this subject. I've run into an interesting "undocumented feature" of Microsoft Internet Explorer version 7. Here are the details: 1) I'm running a simple Flash presentation. ...

getURL() IE iFrame Bug - I have a flash movie inside an iFrame (I know how bad that is, but I have no other options) and 99% of the time everything works fine in IE... However, every once in a while anything using getURL() to open a link will stop working in IE. Everything..
   Graphic Forums (Home) -> Browser Issues All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]