Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Flash Movie Not Working In Firefox



Hi,

My Flash site is working well in IE but in Firefox there are bits and pieces not working and some content just missing. Are there any known issues that I should be aware of.

I am publishing for Flash 8....

Thanks,



ActionScript.org Forums > Flash General Questions > Flash 8 General Questions
Posted on: 09-27-2006, 12:47 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Why Is My Flash Movie Working Differently In Firefox Then It Is In IE
I have created an movie in flash that pulls it's information from an xml file. The problem that I'm having is that it's not loading all of the images that are dictated from within an array. You can see an example of how it breaks when using this link between the browseres (IE and Firefox): http://www.playdown.com/virtual/testing.swf

Someone out there! Please help!

Flash Movie Scaling In Browser - Not Working In Mozilla/Firefox?
Hey guys,

Nearing the end of this crazy Flash project, and one of the finishing touches we are doing is trying to get our Flash movie to scale to the browser size.

I got this going with IE by setting width and height to 100% (instead of pixel values), but this doesn't work in Mozilla based browsers...

Seems to work in IE/Win and Safari/Mac, but not in Moz/Win, Firefox/Win, or Camino/Mac...

The odd thing is if you serve up a page to Moz/Firefox/Camino with width and height equal to 100% the browser makes the flash movie tiny, not even the default size of the stage...!

Does anyone know of a way to correct this?

Thank you.
mark

Flash >5 Not Working In My Firefox
Sorry, I searched the board but it looks like I am the singlemost person having trouble displaying flash content in my firefox. I updated the PlugIn several times but still I am not able to see any flash version 6 and up in my firefox 1.0 (german version)... even with intact object and embed tags ..

maybe the version sucks or whatever, but my clients want me to produce content for this version and I am obviously a) not able to verify or b) not able to produce

any suggestions?

Flash Not Working In Firefox...
I made a survey in Flash that, after publishing, uses an AC_RunActiveContent.js script. It works in IE, Safari, and Opera, but NOT Firefox.

I can't figure out how to fix this? Why does Flash export this .js file anyway? Can anybody help?

Here's the link:

http://raylee.net/flash/test.html


Here's the external .js script:

//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated. All rights reserved.
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
var version;
var axo;
var e;

// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

try {
// version will be set for 7.X or greater players
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
version = axo.GetVariable("$version");
} catch (e) {
}

if (!version)
{
try {
// version will be set for 6.X players only
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");

// installed player is some revision of 6.0
// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
// so we have to be careful.

// default to the first public version
version = "WIN 6,0,21,0";

// throws if AllowScripAccess does not exist (introduced in 6.0r47)
axo.AllowScriptAccess = "always";

// safe to call for 6.0r47 or greater
version = axo.GetVariable("$version");

} catch (e) {
}
}

if (!version)
{
try {
// version will be set for 4.X or 5.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = axo.GetVariable("$version");
} catch (e) {
}
}

if (!version)
{
try {
// version will be set for 3.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = "WIN 3,0,18,0";
} catch (e) {
}
}

if (!version)
{
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version = "WIN 2,0,0,11";
} catch (e) {
version = -1;
}
}

return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
// NS/Opera version >= 3 check for Flash plugin in plugin array
var flashVer = -1;

if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
var descArray = flashDescription.split(" ");
var tempArrayMajor = descArray[2].split(".");
var versionMajor = tempArrayMajor[0];
var versionMinor = tempArrayMajor[1];
var versionRevision = descArray[3];
if (versionRevision == "") {
versionRevision = descArray[4];
}
if (versionRevision[0] == "d") {
versionRevision = versionRevision.substring(1);
} else if (versionRevision[0] == "r") {
versionRevision = versionRevision.substring(1);
if (versionRevision.indexOf("d") > 0) {
versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
}
}
var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
}
}
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv" ) != -1) flashVer = 2;
else if ( isIE && isWin && !isOpera ) {
flashVer = ControlVersion();
}
return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
versionStr = GetSwfVer();
if (versionStr == -1 ) {
return false;
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
// Given "WIN 2,0,0,11"
tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
tempString = tempArray[1]; // "2,0,0,11"
versionArray = tempString.split(","); // ['2', '0', '0', '11']
} else {
versionArray = versionStr.split(".");
}
var versionMajor = versionArray[0];
var versionMinor = versionArray[1];
var versionRevision = versionArray[2];

// is the major.revision >= requested major.revision AND the minor version >= requested minor
if (versionMajor > parseFloat(reqMajorVer)) {
return true;
} else if (versionMajor == parseFloat(reqMajorVer)) {
if (versionMinor > parseFloat(reqMinorVer))
return true;
else if (versionMinor == parseFloat(reqMinorVer)) {
if (versionRevision >= parseFloat(reqRevision))
return true;
}
}
return false;
}
}

function AC_AddExtension(src, ext)
{
if (src.indexOf('?') != -1)
return src.replace(/?/, ext+'?');
else
return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs)
{
var str = '';
if (isIE && isWin && !isOpera)
{
str += '<object ';
for (var i in objAttrs)
{
str += i + '="' + objAttrs[i] + '" ';
}
str += '>';
for (var i in params)
{
str += '<param name="' + i + '" value="' + params[i] + '" /> ';
}
str += '</object>';
}
else
{
str += '<embed ';
for (var i in embedAttrs)
{
str += i + '="' + embedAttrs[i] + '" ';
}
str += '> </embed>';
}

document.write(str);
}

function AC_FL_RunContent(){
var ret =
AC_GetArgs
( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
, "application/x-shockwave-flash"
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
var ret =
AC_GetArgs
( arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
, null
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
var ret = new Object();
ret.embedAttrs = new Object();
ret.params = new Object();
ret.objAttrs = new Object();
for (var i=0; i < args.length; i=i+2){
var currArg = args[i].toLowerCase();

switch (currArg){
case "classid":
break;
case "pluginspage":
ret.embedAttrs[args[i]] = args[i+1];
break;
case "src":
case "movie":
args[i+1] = AC_AddExtension(args[i+1], ext);
ret.embedAttrs["src"] = args[i+1];
ret.params[srcParamName] = args[i+1];
break;
case "onafterupdate":
case "onbeforeupdate":
case "onblur":
case "oncellchange":
case "onclick":
case "ondblclick":
case "ondrag":
case "ondragend":
case "ondragenter":
case "ondragleave":
case "ondragover":
case "ondrop":
case "onfinish":
case "onfocus":
case "onhelp":
case "onmousedown":
case "onmouseup":
case "onmouseover":
case "onmousemove":
case "onmouseout":
case "onkeypress":
case "onkeydown":
case "onkeyup":
case "onload":
case "onlosecapture":
case "onpropertychange":
case "onreadystatechange":
case "onrowsdelete":
case "onrowenter":
case "onrowexit":
case "onrowsinserted":
case "onstart":
case "onscroll":
case "onbeforeeditfocus":
case "onactivate":
case "onbeforedeactivate":
case "ondeactivate":
case "type":
case "codebase":
case "id":
ret.objAttrs[args[i]] = args[i+1];
break;
case "width":
case "height":
case "align":
case "vspace":
case "hspace":
case "class":
case "title":
case "accesskey":
case "name":
case "tabindex":
ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
break;
default:
ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
}
}
ret.objAttrs["classid"] = classid;
if (mimeType) ret.embedAttrs["type"] = mimeType;
return ret;
}

Flash Not Working In Firefox
I made a survey in Flash that, after publishing, uses an AC_RunActiveContent.js script. It works in IE, Safari, and Opera, but NOT Firefox.

I can't figure out how to fix this? Why does Flash export this .js file anyway? Can anybody help?

Here's the link:

http://raylee.net/flash/test.html


Here's the external .js script:

//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated. All rights reserved.
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
var version;
var axo;
var e;

// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

try {
// version will be set for 7.X or greater players
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
version = axo.GetVariable("$version");
} catch (e) {
}

if (!version)
{
try {
// version will be set for 6.X players only
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");

// installed player is some revision of 6.0
// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
// so we have to be careful.

// default to the first public version
version = "WIN 6,0,21,0";

// throws if AllowScripAccess does not exist (introduced in 6.0r47)
axo.AllowScriptAccess = "always";

// safe to call for 6.0r47 or greater
version = axo.GetVariable("$version");

} catch (e) {
}
}

if (!version)
{
try {
// version will be set for 4.X or 5.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = axo.GetVariable("$version");
} catch (e) {
}
}

if (!version)
{
try {
// version will be set for 3.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = "WIN 3,0,18,0";
} catch (e) {
}
}

if (!version)
{
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version = "WIN 2,0,0,11";
} catch (e) {
version = -1;
}
}

return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
// NS/Opera version >= 3 check for Flash plugin in plugin array
var flashVer = -1;

if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
var descArray = flashDescription.split(" ");
var tempArrayMajor = descArray[2].split(".");
var versionMajor = tempArrayMajor[0];
var versionMinor = tempArrayMajor[1];
var versionRevision = descArray[3];
if (versionRevision == "") {
versionRevision = descArray[4];
}
if (versionRevision[0] == "d") {
versionRevision = versionRevision.substring(1);
} else if (versionRevision[0] == "r") {
versionRevision = versionRevision.substring(1);
if (versionRevision.indexOf("d") > 0) {
versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
}
}
var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
}
}
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv" ) != -1) flashVer = 2;
else if ( isIE && isWin && !isOpera ) {
flashVer = ControlVersion();
}
return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
versionStr = GetSwfVer();
if (versionStr == -1 ) {
return false;
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
// Given "WIN 2,0,0,11"
tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
tempString = tempArray[1]; // "2,0,0,11"
versionArray = tempString.split(","); // ['2', '0', '0', '11']
} else {
versionArray = versionStr.split(".");
}
var versionMajor = versionArray[0];
var versionMinor = versionArray[1];
var versionRevision = versionArray[2];

// is the major.revision >= requested major.revision AND the minor version >= requested minor
if (versionMajor > parseFloat(reqMajorVer)) {
return true;
} else if (versionMajor == parseFloat(reqMajorVer)) {
if (versionMinor > parseFloat(reqMinorVer))
return true;
else if (versionMinor == parseFloat(reqMinorVer)) {
if (versionRevision >= parseFloat(reqRevision))
return true;
}
}
return false;
}
}

function AC_AddExtension(src, ext)
{
if (src.indexOf('?') != -1)
return src.replace(/?/, ext+'?');
else
return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs)
{
var str = '';
if (isIE && isWin && !isOpera)
{
str += '<object ';
for (var i in objAttrs)
{
str += i + '="' + objAttrs + '" ';
}
str += '>';
for (var i in params)
{
str += '<param name="' + i + '" value="' + params + '" /> ';
}
str += '</object>';
}
else
{
str += '<embed ';
for (var i in embedAttrs)
{
str += i + '="' + embedAttrs + '" ';
}
str += '> </embed>';
}

document.write(str);
}

function AC_FL_RunContent(){
var ret =
AC_GetArgs
( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
, "application/x-shockwave-flash"
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
var ret =
AC_GetArgs
( arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
, null
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
var ret = new Object();
ret.embedAttrs = new Object();
ret.params = new Object();
ret.objAttrs = new Object();
for (var i=0; i < args.length; i=i+2){
var currArg = args.toLowerCase();

switch (currArg){
case "classid":
break;
case "pluginspage":
ret.embedAttrs[args] = args[i+1];
break;
case "src":
case "movie":
args[i+1] = AC_AddExtension(args[i+1], ext);
ret.embedAttrs["src"] = args[i+1];
ret.params[srcParamName] = args[i+1];
break;
case "onafterupdate":
case "onbeforeupdate":
case "onblur":
case "oncellchange":
case "onclick":
case "ondblclick":
case "ondrag":
case "ondragend":
case "ondragenter":
case "ondragleave":
case "ondragover":
case "ondrop":
case "onfinish":
case "onfocus":
case "onhelp":
case "onmousedown":
case "onmouseup":
case "onmouseover":
case "onmousemove":
case "onmouseout":
case "onkeypress":
case "onkeydown":
case "onkeyup":
case "onload":
case "onlosecapture":
case "onpropertychange":
case "onreadystatechange":
case "onrowsdelete":
case "onrowenter":
case "onrowexit":
case "onrowsinserted":
case "onstart":
case "onscroll":
case "onbeforeeditfocus":
case "onactivate":
case "onbeforedeactivate":
case "ondeactivate":
case "type":
case "codebase":
case "id":
ret.objAttrs[args] = args[i+1];
break;
case "width":
case "height":
case "align":
case "vspace":
case "hspace":
case "class":
case "title":
case "accesskey":
case "name":
case "tabindex":
ret.embedAttrs[args] = ret.objAttrs[args] = args[i+1];
break;
default:
ret.embedAttrs[args] = ret.params[args] = args[i+1];
}
}
ret.objAttrs["classid"] = classid;
if (mimeType) ret.embedAttrs["type"] = mimeType;
return ret;
}





























Edited: 12/09/2007 at 12:42:00 AM by bpm125

Flash 10.0 R12 Not Working In Firefox
I installed the latest version of Flash when prompted to by Firefox, but once I had installed it I still got the message saying I don't have the latest version of flash player in the window where the graphics should be displaying. I restarted Firefox and the system, but still no joy. Same thing's happened on another computer as well.

Anyone help??!

cheers

Flash Not Working In Firefox
Java Script and Adobe Flash Player 9 installed and not working in Firefox . Cannot use music players in My Space.com it keeps saying Java Script and Adobe Flash need to be installed. The Java Script Script is checked in options box and I re downloaded Adobe Flash 9 Player.
It works in Explorer not here.
I have restarted my computer many times still not working
for example when I am on sites in Firefox the browser comes down and asks me to install missing plug ins- I have installed Flash like 10 times cannot hear music on my space
I also checked Tools and security options in Firedox and all is checked correctly and sites added to allow installed plug ins.





























Edited: 11/30/2008 at 05:00:03 PM by JewelsMoon

Flash In Firefox Not Working
Well I've tried a ton of things but nothing has worked so far. My site that i'm in the process of making isnt doing too well in firefox, or atleast the top flash isnt.

www.forthesound.com/~danfrohlich/index.php

It works perfectly fine in IE but the same can not be said about firefox. Any suggestions to make the top flash the appropriate size without messing up the IE version? The width and height should be:

width="773" height="100"

Thanks in advance.

FireFox 3 Not Working With Flash UFO?
I have installed Firefox 3 for testing purposes and noticed that my video player on my website (look in sig, Movie Trailers). No longer works. It can't find the video to play or refuses to play the designated FLV.

This worked just fine in Firefox 2 and the player works A-OK when embedded straight into the source code.

But I use the UFO javascript to create the embedded flash, and it doesn't seem to agree with Firefox. Help?

Thanks
Ryan

Flash Not Working In Firefox
I have developed a web page which contains flash. This page works fine with IE, but not with Firefox. That means, flash is not working with firefox. How can I solve this problem ?

[CS3] Cant Get Flash Working Properly In Firefox
Hi having a little bit of trouble with my website working properly in firefox. It works in IE fine but in firefox there seems to be a problem with the background as it comes out white not grey.
Please take a look and any suggestions would be highly appreciated. If it looks normal to you please also let me know.

http://djtommyt.streamlinenettrial.co.uk

Thanx Tommy

Flash Not Working Properly In Firefox
I have created a flash movie with calls to several other sub movies. It works fine in MS-IE and Netscape. It doesn't work in Firefox, but does work in Dreamweaver using Firefox in test mode.

The movie displays a globe and then flattens to a map. It is when clicking on a secondary map the program fails. It is hard to troubleshoot when it works in test mode and other browsers. I have reported this to Firefox, but they don't beleive it is something wrong with thier browser. The web address is http://65.104.36.164/index.html.

Flash Player Not Working In Firefox
Suddenly Firefox will not play flash player content called when I play games online. It worked fine a few days ago.

When I click on the link, it opens the game page, but where the game should appear, I see a blank black box. When I click on the "Play online game" link I also get a large empty black box.

I am running Windows XP on an HP Pavilion ze2315us laptop. I recently installed trial version of Adobe Acrobat 8 Pro.

In efforts to fix the problem I tried the following:
Removed adblocker addresses that might conflict.
Checked blocked sites
Removed and reinstalled Flash Player.
Reinstalled Firefox.
Set folder options to use Firefox to open SWF files
All to no avail.

I tried the web site in IE. Had to download and install Flash Player again but it works fine in IE.
Afterwards, it still did not work in Firefox.

Any tips would be greatly appreciated.

Thanks.

GetURL In Flash Not Working In Firefox
Hi,

I know this problem has been posted on the forums but I cant seem to find a solution to the exact problem im having. Im using Flash 8 and Flash Player 9.0.115.0 in both internet explorer and Firefox. When I use the getURL method with "_blank" it will not do anything in Firefox.

I think the main problem is that within Flash Player 9 the getURL command doesn't let you use "_blank" anymore I believe as a way of stopping pop-ups but for some reason it will still work in IE (maybe it is a pop-up issue within Firefox but I do not get a message alerting me).

If I use " getURL(url, "_self"); " it will work online and offline in both Firefox and IE but I need it to open in a new tab/window. Either that or I will have to add a preview for each item on my portfolio within the swf.

Any ideas?

Thanks,
Mental.

Flash Fullscreen Working In Firefox Not In IE
Can anyone please tell me why the following code works for Firforx but not for IE? Both the Firefox and IE have flash player version 9,0,47,0


Code:
function goFullScreen()
{
Stage['displayState'] = 'fullScreen';
}

function offFullScreen()
{
Stage['displayState'] = 'normal';
}

btn_GoFullScreen.onRelease = goFullScreen;
btn_GoNormalScreen.onRelease = offFullScreen;
I hv also included the allowFullscreen="true" code in the object/embed tags in the html. But still it works for Firfox only but not for IE.

Does the fullscreen functionality require some specific settings/updates for browser also?

Flash Game Not Working In Firefox
Hi,
I have downloaded a free flash game and added it to my website.
It works in IE 6 and 7 but not Flock and FF.
The website where I got the game from works in flock/ff but just not on our website.

Link

I was going to add a few more but will wait until it works in ff.

Any advice would be greatly appreciated! I know nothing about flash btw but willing to learn to understand!

Firefox Not Working With Flash Buttons?
I am stumped, and haven't been able to find anything on google. Flash is not working properly in Firefox 1.0.4

Buttons do not work when I click them. The navigation bar at the top of this site will not go to the links when I click on them. My site, http://www.brandonpadams.com does not work either, as well as just about anything else with flash navigation. I am also having problems with quicktime displaying broken links instead of the .mov with Firefox, I wouldn't be surprised if it is related.

Does anyone have any ideas? I downloaded and installed the latest flash plugin.

Flash Transperency Not Working On / Firefox
Hi All,

i done one flash transperent banner., after the movie ends it shows the HTML link clickable on IE.,i cant clickable on Firefox.,what can i do.,
Help me.,

Thanks.

Mohan.

Flash 10 Working Differently In IE Than In Firefox.
Edit: Thanks to and old post of Tann San's, I'm all up and running


I'm having problems with a Flash portfolio I am working on.

Check out the following link please.

http://www.cheddarcheesemedia.com/photography/

Do it both in Firefox and IE.

Now in IE7, when I visit the site, I can see the white loadbar for the galleries showing me how much of the photo is downloaded when you click between the thumbnails.

In Firefox 3.0.4, the gallery still works, but the white loadbar never shows.

Both have the latest Flash 10 plugin. Have any of you ever seen that before? I have no idea why the heck it would work like that.

Ignore the photos that are in portrait mode, as they won't work. Only click on the ones that are landscape.

Flash Remoting Not Working In Firefox, Works In IE
Hi...I have been trying to fix this problem. The Flash Remoting I am using works perfect in IE, but not in Firefox. Here is some of the key code that is used...again, works wonderfully in IE. The process is running here: http://www.winedefinitions.com/define/define.cfm and I would sure like to get this to work in Firefox. Please advise...Thanks, Stuart


#include "NetServices.as"
#include "NetDebug.as"

//set global URL
_global.URL = "http://www.winedefinitions.com/";

/**************************************
CFC startup code to set up gateway connection
***************************************/
//test to make sure this runs only once
if (init == null)
{
init = true;
NetServices.setDefaultGatewayUrl("http://www.winedefinitions.com/flashservices/gateway");
var gw = NetServices.createGatewayConnection();
//var server = gw.getService("cfc.termsCFC", new letterLookup_Result());
var server = gw.getService("cfc.termsCFC");
}//end if

/**************************************
CFC web service call to termlookup in termsCFC.cfc
***************************************/
function cfcSend(lookup:String){
//call web service for termlookup in termCFC.cfc
server.termlookup(new termlookupResult(), lookup);
}//end cfcSend

function cfcLetterSend(letter:String){
//call web service for termlookup in termCFC.cfc
server.letterlookup(new letterlookupResult(), letter);
}//end cfcLetterSend

HTML With Embeded Flash Not Working In Firefox
Im working on a website and its lookin good, but it isn't displaying right in Firefox! You can see it here:

http://72.3.156.185/ai/index.htm

So I think the problem is with the HTML. Can anyone see something wrong with the HTML that Firefox is misinterpreting?

Thanks!

Web Service Connection In Flash Not Working In Firefox, Is In IE
For some reason, and this just started, flash is no longer able to connect to a web service when the flash is in Firefox.

In IE it works just fine, and in the flash IDE it works just fine, but in firefox, it doesn't go.. No errors are reported... I'm going to fiddle with settings and such and see if I can get some kind of error when this happens, but I'm curious to know if anyone else has had this issue.

Overflow:hidden Not Working On Div With Flash In Firefox
Hi,

we've got an absolutely positioned div which is set to overflow: hidden;
IE does this fine but Firefox still displays the whole flash so the overflow: hidden isn't working. I've been googling for houres and can't seem to find a fix for it so posting here is a least resort.

Thanks in advance.

Flash Working In Firefox, Not Internet Explorer
http://www.geocities.com/makkennzee/GL-RR.html

theres the URL, it should appear with a GTA splash, which it does in Firefox (for me) but not in IE! It's just a white box in the middle.

If anyone could help me (whether it be an HTML or Flash problem) the help would be SO much appreciated!

I'm pretty amateur in both (only 16 :p) so any assistance would be excellent.



Flash Buttons Not Working In IE6, But Do Work In Firefox
Hi, Newbie here. Here's my strange problem. I have a flash menu embedded in an html file. The navigation works fine in firefox and ie7, but not in IE6. Any thoughts? I can give more details if need be, but I don't know where to start. It's not that complex of a flash menu. I'm using a basic actionscript:

Code:

on (release)
{
getURL("/directory/pagename.html");
}


It's Flash 8 using Actionsript 2.0 in the export settings. Thanks.

Flash 8 Popup Window Not Working In Safari And Firefox
Hi, it just seems I can't make this work.
I wanted to create a simple popup window in Flash 8, added the script code to the page and used getURL("function in the script('page')") but it didn't work.
I also tried fscommand even if it's deprecated for Mac browsers.
I downloaded a couple of working .flas and (when I published the swf in Flash 8) didn't work either.

Anyways my code so far is:

Flash:


Code:
btn.onRelease = function () {
getURL("javascript:hey('danilo.htm')");
}
HTML:


Code:
<script language="JavaScript">
function hey(page) {
window.open(page)
}
</script>
Flash parameters:

Code:
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="popup.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="popup.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="popup" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
Some help needed...please!

Flash Site Not Working In IE7 But Ok In Firefox(Newbie To Flash Websites)
So i have created a simple 4 page flash site with CS3 as an actionscript 2.0.

My website works just fine in Firefox but does not work at all in internet explorer. Does anyone know if this is a Flash issue or Internet Explorer doing something weird. Feel free to check out my source file on the site.

I created the layout in Photoshop then imported it into Flash. From there all i did was hit publish. Am i missing a step?

The site is here
Any help would be greatly appreciated.
-shawn

Flash Code For Chromeless Window Working In Expl, But Not Firefox
I have the flash code below on a button which links to a chromeless window (like a pop up). The parameters work in IE and Netscape, but does not work in FireFox. I have a website undercontruction at www.venerationmusic.com and you can see it as an example.

on (release) {
getURL("javascriptpenNewWindow('veneration.htm', 'thewin1','height=800 width=900,toolbar=no,scrollbars=no')");
}

I have no idea why it wont work as Firefox should be based on Netscape.
Please help

tony

Flash Player Not Working Properly In IE But Works Fine In FireFox
Flash player has worked fine on my Dell notebook (Vista) until a couple days ago when I had to do a System Restore due to some error in loading. After the system restore, flash doesn't update itself on the sites I most often visit (MLB.com). Each major league baseball team site has a page where you can watch the virtual game (gameday) that shows each pitch, at bat, play, etc. Since my system restore, the page just stays on that point in the game (in a sense) the moment you click to open it up.

I have tried to uninstall and install etc, to no avail. Firefox works fine. Any ideas?





























Edited: 06/30/2007 at 07:42:59 PM by ezeric

100% Flash Movie In Firefox 1.0
Hello all,

Here is my issue. I am trying to play a flash movie at 100% width and height. It works fine in every browser except firefox. I have looked on various boards and others have posted a 'solution' that they say worked; placing height=100%; in the body style. Many have said this worked. I however am not getting those results.

Here is my HTML placing the flash file:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" id="myconfetti">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="myconfetti.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="#000000" /><param name="SCALE" value="noborder" />
<embed src="myconfetti.swf" width="100%" height="100%" quality="high" wmode="transparent" bgcolor="#000000" name="myconfetti" scale="noborder" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>

If I set the scale to 'no border' or 'exact fit' the flash movie will stretch to 100% widht, but the height remains the same.

Another suggestion was to change the doctype to make ff run in quirks mode, but that doesn't seem to work either.

Thanks for any help....

100% Flash Movie In Firefox 1.0
Hello all,

Here is my issue. I am trying to play a flash movie at 100% width and height. It works fine in every browser except firefox. I have looked on various boards and others have posted a 'solution' that they say worked; placing height=100%; in the body style. Many have said this worked. I however am not getting those results.

Here is my HTML placing the flash file:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" id="myconfetti">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="myconfetti.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="#000000" /><param name="SCALE" value="noborder" />
<embed src="myconfetti.swf" width="100%" height="100%" quality="high" wmode="transparent" bgcolor="#000000" name="myconfetti" scale="noborder" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>

If I set the scale to 'no border' or 'exact fit' the flash movie will stretch to 100% widht, but the height remains the same.

Another suggestion was to change the doctype to make ff run in quirks mode, but that doesn't seem to work either.

Thanks for any help....

Flash Movie In Mozilla & Firefox Vs. IE
Alright, this may not be the right place to ask this question. Hopefully someone can help.

I've created a flash movie that is a group of navigation buttons for a website. I've got it in a folder and am importing it to every page I use using 'php include'.

Now every page I am using is in the same folder, so the linking isn't a problem. I'm actually not really quite sure what the problem is. All I know is that when I load the pages in IE I get everything else to work but the nav buttons that are in Flash.

In Mozilla & Firefox they work perfectly. Does anyone have any help for me.

Thank!
NathanG

Playing A Flash Movie In Firefox
Hello all,

I am building a site that uses various flash elements and also displays a flash movie. My issue is in IE the page and everything loads fine. However in FF (I have v2.0.0.16) the flash logo and movie thumbnails display but not one of the auto play movie on the page. Instead the movie section is just blank. Yet when I right click on where it would be it gives me the flash menu settings (zoom in, quality, etc).

Also all other flash elements on the page load/display fine and also the site works fine in IE??
Here is the flash movie code which is what does not load.









Attach Code

<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','720','height','445','src','thetubes/samples/intro','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','thetubes/samples/intro' ); //end AC code
</script><noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="720" height="445">
<param name="movie" value="movies/samples/intro.swf">
<param name="quality" value="high">
<embed src="movies/samples/intro.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="720" height="445"></embed>
</object></noscript>

Firefox Accessing My Flash Movie
for IE I can use window["FlashMovie"].afunction(); to access actionscript function. But it seems like this doesn't work for Firefox.
I also tried these lines too, but they didn't work.

document["FlashMovie"].afunction
document.getElementById('FlashMovie').afunction();


Any help will be appreciated.

Thanks,

Flash Movie Not Showing Up In FireFox
i have a flash movie and i have created and it will show up in IE but not in FireFox.. i really have never ran into this problem but its not working here is the link to the page

http://www.fspinternational.org

any suggestions? thanks

Flash Movie Scaling In FireFox
I have built a Flash movie, that I have set up in the HTML base to scale to the fill as much of the browser as possible (proportions constrained).

i upload it to my hosting directory, and all works well in IE, scales and runs bueatifully!

In firefox however instead of scalling 100% it seems to resize itself to smaller than the original movie! And places itself top-middle in the browser, as opposed to absolute middle, like the html is telling it too!

I have tried this on a couple of machines, and the result is always the same!

Is there something that i am missing, or is this a goof in firefox?

cheers

Flash Movie Not Loading In Firefox
Hey there,
I'm just learning flash and have some little animations for my site. In IE they work fine, in Firefox they don't even load. I did some reading and they talked about maybe I'm missing the embed tag or the parm tag but they are both in there... anyone run accross this?

Here is my code (basically just copied and pasted from the published HTML from flash):
<html>
<body>
<table align="right" background="display_left.jpg" width=19 border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td></td></tr></table>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="left_menu" align="left">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="left_menu.swf">
<param name="quality" value="high">
<param name="salign" value="lt">
<param name="bgcolor" value="#ffffff">
<embed src="left_menu.swf" quality="high" salign="lt" bgcolor="#ffffff" width="100%" height="100%" name="left_menu" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</object>
</body>
</html>

Thanks!

Flash Movie In Firefox With Validation?
I saw a tutorial but had a bit of trouble, does anyone know a  concise tutorial or specific code to be used? (for both HTML and for the Flash code?)

-Kerry

Working In Firefox, But Not In IE
Hi.
the page is written in asp and I use flash for that final touch. From querystring I get the number and in flash movie it goes to that frame. Here is the Flash code:

I have two layers, one named "images" with 6 images, each in one frame (6 frames) and the second named "action" with a actionscript in the first frame:

if(PeopleID != undefined){
gotoAndStop(PeopleID)
}


And this is the code from asp page:
in param tag:
value="images/group.swf?PeopleID= here I call the PeopleID (I don't know why it doesn't show the code)
and in embed tag:
rc="images/group.swf?PeopleID = here I call the PeopleID (I don't know why it doesn't show the code)


Can anyone tell me why is this working in Firefox, but it's not working in IE 6.0 SP2. In IE it doesn't plays the movie, it just stays in the first frame.

THX for all the help

[F8] Working In Firefox But Not In IE
I posted here a month or so back about getting a Java pop-up woroking from a flash interface on a web page.

Ive got it working flawlessly on Firefox but the pop-up wont work on IE for some reason, maybes someone wiser than me can see whats up?

on (release) {
getURL ("javascript:NewWind=wind ow.open('http://www.coolforcatsdisco.com/pictures/31augu/pic001.JPG','Cool for Cats','width=800,height=6 00,left=100,top=100,toolb ar=No,location=No,scrollb ars=No,status=Yes,resizab le=No,fullscreen=No'); NewWind.focus(); void(0);");
}

URl is http://www.coolforcatsdisco.com/pictures.html

Thanks in advance!

100% Not Working In FireFox?
Hello, everyone. I have made a flash site. I want to make it so that it fits the whole screen without scaling. I read a post on that here in this forum, and I did what it said to, but it didn't work. I've also viewed the source of some pages that do it, but it didn't work. Well, actually I take that back. In IE and Opera it worked. Not in FireFox. In FireFox, the width of the movie is 100%, but it seems like the height is about 150px. Anyone else have this problem? I would really appreciate an answer.

Thanks,
Gerard

Why Is This Not Working In Firefox?
www.vectortrance.com/bathinginsanity/

I have no idea why this is not working in firefox. Can someone please look into this?

Swf Not Working In Firefox
hi,

for some reason I can't get my button to work properly in firefox,
check this
http://www.albramij.nl/index1.html
in IE it works fine but in firefox...zilch

could this possibly have something to do with my CSS?

SWF Not Working In Firefox
Hello Friends,

My SWF is not working (displayed) in firefox but in IE it is working (displayed) properly. When i right click the swf in firefox i get Movie not loaded error & it is unhighlighted can anyone help me on this as i need to launch the site at the earliest? I have latest flash plugin.

Best Regards,
Krishnapratap Vedula

Flash Movie 100% Height Only Works In Firefox
http://www.franklincoveysymposium.com/test/sanDiego/

Try that page out in both IE and Firefox

On the left side I have a flash piece titled: leftBarColor.swf that fits the TD for the entire height (100%) to change the color. It works fine in Firefox, just not in IE.

Any workarounds?

Thanks.

Flash Movie And Incorrect Position In Firefox
Hi, I'm hacking my way through a website. Check out www.dryfly.ca
This displays correctly in ie, but firefox puts the flash movie in the top left corner.

The code for the template is:
[HTML]
</HEAD>
<BODY BGCOLOR="#006699" TEXT="#000000" LINK="#006699" VLINK="#006699" ALINK="#006699" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">

<DIV ID="ImageLayer" STYLE="position:absolute; left:21px; top:16px; width:204px; height:106px; z-index:5; background-color: #FFFFFF; layer-background-color: #FFFFFF; border: 1px SOLID #000000; overflow: hidden; visibility: visible;">
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="204" height="106">
<param name="movie" value="famfade.swf">
<param name="quality" value="high">
<embed src="famfade.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="204" height="106"></embed>
</object>

</DIV>

<p align="center"><font face="Arial" size="-2">This webspace was created with<br>
weapons of mass construction</font></p>

<TABLE WIDTH="100%" HEIGHT="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0">
<TR WIDTH="135" HEIGHT="73" >
<TD WIDTH="135" HEIGHT="73" ALIGN="LEFT" VALIGN="TOP" CLASS="section1"><IMG SRC='spacer.gif' WIDTH="1" HEIGHT="73" HSPACE="0" VSPACE="0" BORDER="0" ALIGN="ABSMIDDLE"></TD>
<TD ALIGN="RIGHT" VALIGN="MIDDLE" CLASS="section2"><TABLE WIDTH="615" BORDER="0" ALIGN="LEFT" CELLPADDING="0" CELLSPACING="0">
<TR>
<TD ALIGN="RIGHT" VALIGN="TOP" CLASS="section2"><FONT CLASS="titlesys"><span class="style9">#LOGO#</span></FONT><FONT CLASS="titlesys"><span class="style9"></span>&nbsp;&nbsp;</FONT></TD>
</TR>
</TABLE></TD>
</TR>
<TR WIDTH="135">
<TD WIDTH="135" ALIGN="CENTER" VALIGN="TOP" CLASS="section3"><IMG SRC='spacer.gif' WIDTH="135" HEIGHT="50" HSPACE="0" VSPACE="0" ALIGN="ABSMIDDLE">
<BR CLEAR=ALL>
<FONT CLASS="menusys">#VMENU#</FONT></TD>
<TD ALIGN="LEFT" VALIGN="TOP" CLASS="section4"><img src="tn5-24.jpg" width="640" height="339" hspace="100" vspace="20">

<!-- Include Spacer Image in Content area for older Netscape Browsers -->
<SCRIPT LANGUAGE=Javascript>
var height = (document.height);
var spacerh = height - 105;
document.write('<IMG SRC='spacer.gif' WIDTH="1" HEIGHT="'+spacerh+'" HSPACE="0" VSPACE="0" ALIGN="LEFT">');
</SCRIPT>

<TABLE WIDTH="615" BORDER="0" ALIGN="LEFT" CELLPADDING="5" CELLSPACING="0">
<TR>
<TD ALIGN="CENTER" VALIGN="TOP" CLASS="section4"> <IMG SRC='spacer.gif' WIDTH="600" HEIGHT="30" HSPACE="0" VSPACE="0" ALIGN="ABSMIDDLE"><BR CLEAR=ALL>
<FONT CLASS="contentsys">#CONTENT#</FONT></TD>
</TR>
<TR>
<TD ALIGN="CENTER" VALIGN="TOP" CLASS="section4"><FONT CLASS="contentsys">#TMENU#</FONT></TD>
</TR>
</TABLE></TD>
</TR>
<TR WIDTH="135" HEIGHT="32" >
<TD WIDTH="135" HEIGHT="32" ALIGN="LEFT" VALIGN="TOP" CLASS="section5"><IMG SRC='spacer.gif' WIDTH="1" HEIGHT="32" HSPACE="0" VSPACE="0"></TD>
<TD ALIGN="CENTER" VALIGN="TOP" CLASS="section6">&nbsp;</TD>
</TR>
</TABLE>
</BODY>
</HTML>[/HTML]

Any ideas on what is going wrong, or how I can correct the code so that it works in both ie and firefox?

thanks

Flash Movie Crashes Firefox And Netscape
Hi all,

I've been looking all over and find other people with some problem like this, but no solutions/facts.

When I run this one SWF that calls in an XML document from a PHP file, and then pulls up content according to that file, Mozilla browsers are hanging up and crashing. Safari, IE and Opera aren't bothered by the movie, but Firefox and Netscape give this warning after loading a couple of bytes of data:

"The plugin performed an illegal operation."

Sometimes, though, Netscape or Firefox will work correctly for a single or a few loads of the movie and then start hanging again.

Any ideas as to what could cause this? Thanks a billion.

[F8] Flash Movie Wont Show Up In FireFox
Hi
This is my first post but not my first time here at this forum.

I recent started working on this flash template and i uploaded it to see my progress so far. i noticed where the flash movie is suppose to be. There is a white empty box

So I opened my site in ie and everything works correctly.

http://turbohost-usa.com

How can this happen?
I have all the updates and plugins installed in FireFox and Macromedia says that its installed correctly
How can i correct this.

Thank you

@ Character Not Showing In Flash Movie,only In Firefox
Hi to everyone and thanks for your time.

I have a strange problem I have never encountered in the many years I have used Flash.

Basically, I can not get the @ character to show up in an input textfiled within my flash contact form. Now here's the weird bit, at least to me. This only happens when the flash movie is viewed in Firefox browsers, Internet explorer works fine and you can use and see the @ character fine.

I have searched for similar topics, tried all available embed options including embed all. I have even tried putting a static textfield on the stage to with the @ character in it so that it used in the movie that way too. Still nothing.

I can't figure this one out as it has never happened to me before and any solution would be greatly appreciated as I can not use my contact form without it.

Thanks in advance,

Flash player version 8
flash software CS3 v9

vReb

Copyright © 2005-08 www.BigResource.com, All rights reserved