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
SitePoint > Design Your Site > Flash and Actionscript
Posted on: Jun 23, 2008, 14:06
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
- Flash >5 Not Working In My Firefox
- Flash Not Working In Firefox...
- Flash Not Working In Firefox
- Flash 10.0 R12 Not Working In Firefox
- Flash Not Working In Firefox
- Flash In Firefox Not Working
- Flash Not Working In Firefox
- [CS3] Cant Get Flash Working Properly In Firefox
- Flash Movie Not Working In Firefox
- Flash Not Working Properly In Firefox
- Flash Player Not Working In Firefox
- GetURL In Flash Not Working In Firefox
- Flash Fullscreen Working In Firefox Not In IE
- Flash Game Not Working In Firefox
- Firefox Not Working With Flash Buttons?
- Flash Transperency Not Working On / Firefox
- Flash 10 Working Differently In IE Than In Firefox.
- Flash Remoting Not Working In Firefox, Works In IE
- HTML With Embeded Flash Not Working In Firefox
- Why Is My Flash Movie Working Differently In Firefox Then It Is In IE
- Web Service Connection In Flash Not Working In Firefox, Is In IE
- Overflow:hidden Not Working On Div With Flash In Firefox
- Flash Working In Firefox, Not Internet Explorer
- Flash Buttons Not Working In IE6, But Do Work In Firefox
- Flash 8 Popup Window Not Working In Safari And Firefox
- Flash Site Not Working In IE7 But Ok In Firefox(Newbie To Flash Websites)
- Flash Code For Chromeless Window Working In Expl, But Not Firefox
- Flash Movie Scaling In Browser - Not Working In Mozilla/Firefox?
- Flash Player Not Working Properly In IE But Works Fine In FireFox
- Working In Firefox, But Not In IE
- [F8] Working In Firefox But Not In IE
- 100% Not Working In FireFox?
- Why Is This Not Working In Firefox?
- Swf Not Working In Firefox
- SWF Not Working In Firefox
- Preloader Working In Firefox, But Not IE
- Website Not Working In Firefox?
- XML.load Working With Firefox, But Not With IE?
- Bookmark Not Working In Firefox
- Html Not Working In IE Yet In Firefox?
- Firefox, SWFObject, ALT-key Not Working
- Play Once Not Working In Firefox
- Firefox 3, Buttons Not Working
- Preloader Not Working In Firefox Or IE
- Netstream Not Working In Firefox
- Buttons Working On IE But Not On Firefox
- Working Fine In IE Not In Firefox?
- LocalConnection Not Working In Firefox 2.0
- LoadSound Not Working In Firefox
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.
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 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,
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!
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!
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 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 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
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
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
Preloader Working In Firefox, But Not IE
I have two preloaders on my page, one for the main images and navigation and another for the content which loads into a loader component on the main timeline. The first preloader for the main images and navigation works as it should. The second one for loading the content into the loader works well in Firefox but does not work at all in IE. The scripts for both loaders are identical, simply looking at a different source, and of course instance names and stuff are different.
The page I'm talking about it here:
http://www.heidihensley.com/test/allbuttons7.html
(its the second loader for the "news" content I'm talking about.)
The fla. is here:
http://www.heidihensley.com/test/allbuttons7.fla
Thanks for the help.
Website Not Working In Firefox?
Hey all,
I just put up a website I created in Flash MX 2004, it works fine in Internet Explorer and Safari but not in firefox?
www.cue.cc/new/
Anyone got any ideas?
-Bowds
XML.load Working With Firefox, But Not With IE?
Hi all,
I've written a live scoreboard type of application that, generally speaking, does something like this:
var myXML = new XML();
function loadData() {
myXML.load(myfile);
}
myXML.onLoad = function() {
// does the dirty work
}
setInterval(loadData,10000);
Now this works 100% correctly in Firefox; it continues to refresh the file every 10 seconds, and the data objects get updated. It also works in the test environment (Control -> Test Movie). But when I load it in Internet Explorer in a "real" environment, it does not work. The first load seems to occur with no problems, but no future loads occur.
This is in Flash MX 2004, not 8, although I have tested IE with both 7 and 8 plug ins.
Any ideas? I am really stuck.
Bookmark Not Working In Firefox
Hi Flash gurus,
I found this code in this forum for 'bookmark' ing a flash page.
instanceNameOfBtn.onPress = function() {
getURL("javascript:if (window.external) {window.external.addFavorite('http://www.flashkit.com/', 'Flash Kit');} else { alert('Please bookmark this!'); }void(0);");
};
Unfortunately it's not working for firefox.. i get the alert message which is shown in the else statement above. Please help!
Thanks!
Html Not Working In IE Yet In Firefox?
hi all!
Just need to know why my html doesn't work in Internet Exporer yet works in Firefox. I believe it has something to do with the swf file.
Please experiment with Internet Exporer:
http://www.axytrixdesign.com/index2.html
thanks in advance!
Firefox, SWFObject, ALT-key Not Working
Anybody experienced this yet? In firefox I can't seem to get my "Alt Gr" key to work when using the SWF-object to embed flash.
This is really annoying cause I'm using a form with email and number fields... which obviously won't work without @ or 123 on a windows laptop.
Any solutions?
Opera seems to do this too... only seems to work in IE. What can I be doing wrong?
Play Once Not Working In Firefox
I'm relatively new to flash and having trouble with setting my intro video to only play once. It works perfect on IE7, but doesn't work at all on Firefox2. I'm using Flash8.
Here's the website: www.mattgiannetto.com
It's actually setup to play the intro if you haven't visited the site in the past hour. If anyone has any suggestions, I thank you in advance.
Here's the code (courtesy of argie at www.laflash.org):
Code:
Now = new Date();
headerTimeSet = Now.getHours() + "/" + Now.getDate() + "/" +
Now.getMonth() + "/" + Now.getYear();
headerCookie = SharedObject.getLocal("HourTime");
if(headerCookie.data.headerTimeSet == headerTimeSet) {
gotoAndPlay(45);
} else {
play();
}
headerCookie.data.headerTimeSet = headerTimeSet;
headerCookie.flush();
-Matt
Firefox 3, Buttons Not Working
Hello,
Recently I made a flash part in a website from a friend of mine.
The buttons don't work in Firefox 3, but it did in 2!
Anybody knows what may be the problem?
Maybe it has something to do with the inline frames?
Very strange!
the website url is: www.museartic.com
tnx.
GJ
Preloader Not Working In Firefox Or IE
Hey guys. I've been designing my first flash website and am having problems with a preloader that I created in AS3. It's a very simple preloader and it works great when I test it and Simulate download. But when I actually run the website with a web browser it doesn't work at all. I simply see a blank screen for a10 seconds or so and then my site just pops up. Any help with this issue would be appreciated. Thanks.
The following is the code:
//I'm used to codeing in C/C++ and am in the habit of declaring my functions //at the very beginning of my code.
//loadbar refers to a simple bar graphic symbol and loadtext is a dynamic text //box
import flash.display.*;
function pre_loader(event:ProgressEvent):void {
var pcent:Number=event.bytesLoaded/event.bytesTotal*100;
loadbar.scaleX=pcent/100;
loadtext.text=int(pcent)+"%";
if(pcent==100){
gotoAndPlay(2);
}
}
stop();
loaderInfo.addEventListener(ProgressEvent.PROGRESS , pre_loader);
Netstream Not Working In Firefox
Code:
function netStatusConnection(event:NetStatusEvent):void
{
switch (event.info.code)
{
case "NetConnection.Connect.Success":
connectStream();
break;
}
}
function onMetaData(data:Object):void
{
text_txt.appendText("metaData IS : " + data.duration);
bufTime = data.duration;
ns.bufferTime = bufTime;
text_txt.appendText("the data is now: " + bufTime + "
");
}
function connectStream():void
{
ns = new NetStream(connection);
ns.bufferTime = 2;
ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
ns.play(videoURL);
vd_video.attachNetStream(ns);
}
function netStatusHandler(event:NetStatusEvent):void
{
text_txt.appendText("bytes loaded: " + ns.bytesLoaded + "
");
text_txt.appendText("bytes Total: " + ns.bytesTotal+"
");
if (event.info.code == "NetStream.Play.Start")
{
text_txt.appendText("event is: "+event.info.code+"
");
text_txt.appendText("esdfgsdfg: "+ ns.bufferTime+"
");
}
text_txt.appendText("event is: "+event.info.code + "
");
}
-------------
bytes loaded: 1130
bytes Total: 1055824
event is: NetStream.Play.Start
esdfgsdfg: 2
event is: NetStream.Play.Start
metaData IS : 29.997the data is now: 29.997
bytes loaded: 18170
bytes Total: 1055824
event is: NetStream.Buffer.Flush
-----------
The following code seems to work fine in IE but when i use it in firefox it never listens to my events, instead the movie just plays,stops,plays,stops, it doesnt seem to be listening to my bufferTime sets. Why is it doing this if it works fine in IE????
Buttons Working On IE But Not On Firefox
Hello Everybody, i'm new to this forum and well, I have a browser issue, there is a navigation I've made for a site I'm working on for a client. I've put it on a temporal server: http://205.205.200.231/~h806372/ozomate_test/
The main navigation on top (cause theres also a component one at the left side) is not working as it should, because when you roll over over the 4 main buttons, it displays a SUBMENU for each, in which the mouse pointer doesn't recognize them as buttons, and so they don't work, you can not even see the rollover effect over them. But if you try this page on Internet explorer it will function perfectly, Can anyone please give me hand???
I wonder if it got to do with the Divs, or the Z-Index???
Working Fine In IE Not In Firefox?
Hi
i am using this code to close the swf file.. but it's working fine in I.E not in the firefox...
can any one help me from this issue...
~SK
Attach Code
on(press){
getURL("javascript:window.close();");
}
LocalConnection Not Working In Firefox 2.0
Does anyone have any idea why the LocalConnection I'm using to communicate between two .swf files is not working in Firefox 2.0? It works in FF 1.5 (Mac and PC), and Safari. It also does not work in IE7 (not sure about past versions).
I don't even know where to start to begin figuring out why it doesn't work.
Thanks...
michael
LoadSound Not Working In Firefox
Hello,
I have made a small swf that has a button which plays an mp3 file with loadSound. I use SWFObject to embed the swf to html page. Everything works fine with IE(7) but Firefox gives me some weird behavior. In FF it only plays few seconds from the start of the mp3 and then stops.
The AS in my flash is like this:
ActionScript Code:
var startStopToggle:Boolean = false;var my_sound:Sound = new Sound(this);mp3_btn.onRelease = function(){ if (startStopToggle == false) { startStopToggle = true; my_sound.start(0,1); mp3_btn.gotoAndPlay("start"); } else { startStopToggle = false; my_sound.stop(); mp3_btn.gotoAndPlay("stop"); }}my_sound.onSoundComplete = function(){ startStopToggle = false; my_sound.stop(); mp3_btn.gotoAndPlay("stop");}my_sound.loadSound(my_mp3);
Where "my_mp3" is a variable that I pass via SWFObject like this: so.addVariable("my_mp3", "./mp3/19.06/mp3_file.mp3");
With FF the onSoundComplete vent isn't invoked at all. I also tried attachSound but I had the same problem.
This is very strange. Has anyone had this same problem?
Sumo
|