My SWF Works Fine With Firefox, Not With IE...
Hello all,
I have a problem with Internet Explorer (6 et 7) while everything works fine with Firefox 3 and Google Chrome.
Here is my problem :
1 – I have one SWF (a map of which can be clicked) inserted in a HTML page via the Satay method with the following code:
Code:
<!-- Swf map - Satay method -->
<div id="map">
<fieldset>
<legend>Region</legend>
<object type="application/x-shockwave-flash" data="./flash/zzzzPost.swf" width="350" height="293.8">
<param name="movie" value="./flash/zzzzPost.swf" />
<param name="wmode" value="transparent" />
</object>
</fieldset>
</div>
This insertion works fine with all the browsers: the map is displayed and the colour of the regions change when the mouse is over them.
2 – My HTML page also contains 15 checkboxes and 2 text zones that users can fill with dates.
3 – It also contains a Javascript function called valeurElements(). This function returns an array whose first indice contains the ckeckboxes that have been checked (1,7,15 for example) and the second indice contains the dates (10/30/2008,10/31/2008 for example).
I just want to specify that this function works correctly with all the browsers and return the good values when I use it with a submit button, even with IE. I am nearly sure that this function in not the problem.
4 – Finally, in the Action Script code (AS3) of my zzzzPost.swf, I read the result of the Javascript function valeurElements() so that I can affect the returned values to some variables that I place as parameters in the URL where I want to redirect users, as follows:
Code:
function sourisUp(evt:MouseEvent)
{
var valeurElements:Array;
valeurElements = ExternalInterface.call("valeurElements");
// PHP page where users will be redirected.
var adresse:URLRequest = new URLRequest("./mapage.php");
// Variables to be sent.
var variables:URLVariables = new URLVariables();
variables.type_entite = typeEntite;
variables.code_entite = codeEntite;
variables.type_evenement = valeurElements[0];
variables.date_evenement = valeurElements[1];
// Variables are sent to the URL.
adresse.data = variables;
// Datas are sent with the Post method.
adresse.method = URLRequestMethod.POST;
// URL is sent.
navigateToURL(adresse);
}
Unfortunately, if everything works fine with Firefox and Google Chrome, IE returns the following error when I click on my SWF map:
Quote:
Line : 1
Car : 7
Error : Syntax error
Code : 0
URL : http://localhost/mancom/recherche.php
I really need help to fix this problem, could you please give me a solution?
In advance, thank you very much!
Best regards,
Mafate
ActionScript.org Forums > ActionScript Forums Group > ActionScript 3.0
Posted on: 10-30-2008, 06:11 PM
View Complete Forum Thread with Replies
Sponsored Links:
- Works Fine Firefox Not IE
- Site Not Functioning In IE, Works Fine In Firefox
- LoadMovie Don't Work In IE, But Works Fine In Firefox...
- Program Works Fine In Firefox Runs VERY Slow In IE
- Image With Wierd Lines On Top In IE7, Works Fine In FireFox?
- Flash Not Displaying Correctly On IE, But Works Fine On Firefox.
- Site Works Fine In Firefox, But Not In Internet Explorer...
- Site Works Fine In Firefox, But Not In Internet Explorer...
- Flash Player Not Working Properly In IE But Works Fine In FireFox
- Flash 8 And Firefox Problem. Works Fine In Flash 9 Or IE
- Working Fine In IE Not In Firefox?
- [F8] Works Fine In PC (IE And FF) But Not In Mac...
- .swf Loading Fine In Firefox, But Not Even Appearing In IE
- *.swf Sees Fine In Firefox But Not In Explorer
- Fine In Firefox, But Missing Graphics In IE
- SWF Plays In Firefox Fine But Disappears In IE 6
- Works Fine - But Not When Publish
- Preloader Works Fine But Not On IE
- Works Fine @ Home, But Not On The Net.
- SWF Works Fine...HTML Does Not
- Works Fine In Actionscript 1 But Not 2?
- Getting Variables Works Fine But...
- Flash Movies Not Loading In IE...fine In Firefox And Others...
- Flash Buttons Work Fine In IE But Not In Firefox
- Flash Loads Twice In IE Fine In Firefox/ Safari
- Flash Buttons Work Fine In IE But Not In Firefox
- High CPU For Wmode=transparent On IE (Firefox Is Fine)
- Preloader Problem In IE But Workin Fine Firefox
- LoadMovie Help Anyone? Works Fine On PC, But Not Online
- Mask Works Fine In Editor, Not In Swf
- Loadmovie Works Fine Until I Upload...
- Navigation Works Fine When Viewed On PC But Not On Mac, Why?
- [CS3][A2] Gallery Works Fine In IE, But Not In FF And Opera
- My First Button Bar, Almost Works, Just Needs Some Fine Tuning
- LoadmovieNum Works Fine On Harddisk But Not On The Web
- .swf Works Fine On My Machine.. But Not Once Uploaded
- *The Flash Mx Form With Php Works Fine But,..
- Improving The Xml Gallery(actually Works Fine)
- Terrible Issues With AS3. AS2 Works Fine.
- MC Won't Work In Timeline - Works Fine On It's Own
- .swf Works Fine On My Machine.. But Not Once Uploaded
- *The Flash Mx Form With Php Works Fine But,..
- CSS Problem Fine In IE/Safari Horrible In Netscape/Firefox
- Question - FLV's Play Fine In IE, But Not Firefox, Safari Or Opera -Why?
- Flash Buttons Dont Work In FIREFOX, But Fine In IE
- Flash Doesn't Work Properly In IE 6/7 But Fine In FireFox
- Mp3 Flash Player Loads Fine In Firefox, Takes 15 Sec In IE - Help
- Site Fine In Firefox...STRANGE Bugs In Explorer...HELP
- Movie Works Fine In Standalone SWF But Not In Html
- Forms. Works Fine On The PC/Mac But Doesn't When Uploaded
- Geturl(javacode) Works Fine But Not In Opera
Works Fine Firefox Not IE
i make a pop-up window. and it works fine in firefox but not in IE.
any ideas about this one. i use this code.
ActionScript Code:
_root.openWinCentre = function (url, winName, w, h, toolbar, location, directories, status, menubar, scrollbars, resizable) { getURL ("javascript:var myWin; if(!myWin || myWin.closed){myWin = window.open('" + url + "','" + winName + "','" + "width=" + w + ",height=" + h + ",toolbar=" + toolbar + ",location=" + location + ",directories=" + directories + ",status=" + status + ",menubar=" + menubar + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",top='+((screen.height/2)-(" + h/2 + "))+',left='+((screen.width/2)-(" + w/2 + "))+'" + "')}else{myWin.focus();};void(0);");} _root.openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);*/
thanks guys.
View Replies !
View Related
Site Not Functioning In IE, Works Fine In Firefox
Hi all,
First time posting in this forum, hope you guys can help! I just uploaded a site and it works just fine in firefox, but not in IE--preloaders dont work and the external .swf files take forever to work, i was hoping somebody might know why this is. I can post .fla and html if necessary
http://www.vccgraphics.com
Cheers!
View Replies !
View Related
Program Works Fine In Firefox Runs VERY Slow In IE
Hi this is my first day learning flash and I have created a Pong game.
It works perfectly fine in Firefox and Flash player but then I open it through IE it runs super slow.
It tried it on another computer(computers r very fast btw) and I have the same problem.
All im doing is File Open and open the .swf file and play it. As I said works fine in Firefox. Firefox and IE and both fully updated with the flash player.
Is there anything im doing wrong? or should I copy and paste the code?
View Replies !
View Related
Image With Wierd Lines On Top In IE7, Works Fine In FireFox?
Hey guys
I have this website where I have the txt on the right in alphatransparent pngs. On my computer it works fine in FireFox browser, but when opening in my IE7, it has some crappy lines in the top!?
All of this is not shown locally, so when I compile everything and run the website there's nothing wrong!?
http://www.gramrode.dk
Can somebody explain why this is happening!?
View Replies !
View Related
Site Works Fine In Firefox, But Not In Internet Explorer...
Having some trouble with my site...
http://www.insomber.cjb.net
You're supposed to be able to click that writing button and have it open a centered, chromeless window of this page...
http://www.insomber2.cjb.net
It works fine in firefox, but when you click the button in IE to open the second page, it says that it cant be found. (havent tried it in netscape or any other browsers yet).
Any ideas?
View Replies !
View Related
Site Works Fine In Firefox, But Not In Internet Explorer...
Having some trouble with my site...
http://www.insomber.cjb.net
You're supposed to be able to click that writing button and have it open a centered, chromeless window of this page...
http://www.insomber2.cjb.net
It works fine in firefox, but when you click the button in IE to open the second page, it says that it cant be found. (havent tried it in netscape or any other browsers yet).
Any ideas?
View Replies !
View Related
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
View Replies !
View Related
Flash 8 And Firefox Problem. Works Fine In Flash 9 Or IE
Here's the site: http://www.nzography.com/
From feedback I've gotten, it appears that under certain circumstances the first image in a set of images does not load properly, although I haven't seen it myself.
I'm told this happens only in Firefox. And I believe only Flash player 8. Works fine with FF and Flash player 9, or IE with 8 or 9 I believe.
Can anyone out there with Firefox and Flash player 8 confirm this?
Any ideas of why this might be happening? The SWF is published at flash 8.
View Replies !
View Related
[F8] Works Fine In PC (IE And FF) But Not In Mac...
Hi,
I have made this application for a customer (it can be viewed at http://www.personalcoder.com/samples..._creator.html).
Basically it is a memory game editor, where you can upload, crop and rotate your own pictures. And, at the end you can save and play it.
The case is that currently we are at the latest bug fixes stage, and regardless the fact it works trully fine in Internet Explorer and Firefox on PC, my client just noticed that it is not working properly on Mac (he didnt tell me what browser).
He told me that when in a Mac, after to click the "upload photos" button, the preloader starts spinning, keep seated there forever and doesnt do anything after that.
I suspect that it may be gathering some bad PHP response from server (that I didnt handled) due to a file reference failure. The case is that I have not a Mac to test it, and I would like to hear some advices.
At first sight I think that there is not anything wrong with the application itself because it works fine on PC browsers, and my only guess is that may have a bug in the Mac browser plugin regarding to file reference that makes it fails when trying to handle uploads.
There is any known issue about Flash, Mac and file reference?
Any other idea?
Thanks!
View Replies !
View Related
.swf Loading Fine In Firefox, But Not Even Appearing In IE
I'm trying to put together a website and this one page (a characters profile page) has simply an embedded swf with some links at the bottom of the page....this works fine in firefox...with the swf loading and everything, but once I test it in IE, I get nothing but the links at the bottom of the page.
Heres the code:
<html>
<head>
<title>The Whole Gang</title>
<link href="custom.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<BODY bgcolor="black">
<center><OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
ID=newintro WIDTH=780 HEIGHT=500>
<PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#000000> <EMBED src="images/Profile Shot.swf" quality=high WIDTH=780 HEIGHT=500 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT></center>
<div align="center">
<p><br>
<font color="#FF0000" size="5"> <a href="home.html" class="btn_More"><span class="greenText_Bold">Home</a><a href="cartoons.html" class="btn_More"><span class="greenText_Bold"> Cartoons</a><a href="music.html" class="btn_More"><span class="greenText_Bold"> Music<a/> <a href="archives.html" class="btn_More"><span class="greenText_Bold"> Archives</a><a href="contact.html" class="btn_More"><span class="greenText_Bold"> Contact Us</a></font></p>
</body>
</html>
Mind you, I'm VERY new at html and all and this is mainly built off a template....I'm sure theres something obvious in there, but I can't figure this out for the life of me....
Any help would be greatly appreciated.
Also, I'm currently building this with Dreamweaver and its not an actual site yet....its simply an assortmant of folders on my HDD right now....but the Profle Shot.swf is in the html folder. If it helps better to actually post this to my website, I can....Just let me know
View Replies !
View Related
Fine In Firefox, But Missing Graphics In IE
Hello,
I have a flash banner that plays great in Firefox, and even looks great in IE on my PC, but my client says that when he views it in IE on his PC, some graphics are missing. Now, I did strip out the javascript that Flash generated in the HTML file, just so I don't have to include that pesky JS file, but I don't know if that would cause the problem. Has anyone had this issue before? Thank you!
View Replies !
View Related
SWF Plays In Firefox Fine But Disappears In IE 6
I have created a presentation in Flash 8 Professional and exported the swf to require flash player 8.
If I view the presentation in Firefox, it works as expected.
If I view the presentation in IE6, a portion of the swf disappears - usually the lower 1/3 of the presentation. The swf keeps playing, but the bottom disappears.
Why?
View Replies !
View Related
Works Fine - But Not When Publish
Hi "freaks" ha ha
I have this little problem (i think). I cant get my text to load when i load my new .swf into my 1st .swf. But the problem only comes on the NET and not when i ctrl + enter to roll my flash. (all files have been ftp's to server)
Heres the link and code on button. (when button i push some text comes besides or not!!!)
http://www.borisfoss.dk
on (rollOver) {
_level0.stop();
}
on (rollOut) {
_level0.play();
}
on (release) {
_level0.stop();
loadMovie("tekst1.swf", 1);
loadVariablesNum("Borisstart.txt", 1);
}
From Denmark
Tony.
View Replies !
View Related
Preloader Works Fine But Not On IE
im having a problem with internet explorer
showing the preloader but when but all works
fine when i publish the swf and "show streaming"
here is the code i am using:
onClipEvent (enterFrame) {
counter = math.floor(_parent.getBytesLoaded()/_parent.getBytesTotal()*100);
_parent.counterpercent = counter+"%";
if (counter>=100) {
_parent.play();
}
}
thanks for any help =)
View Replies !
View Related
Works Fine @ Home, But Not On The Net.
Could someone possible take the time to look at my code here?
It works fine at home, but on the web it doesnt work properly at all. I've allways sucked with preloaders and this is my first time with xml and flash gettting info from an xml doc.
What this should be is a small gallery swf, that loads all the pics listed in my xml doc and then displays them in thumbnail form.
There are 12 frames. al with action script on them. All frames except for the last contain a mc called loader which holds all the dynamic text fields. I know the code is dirty, but it was my first time with xml and flash.
Frame 1
Code:
loading = true;
to_load = new Array();
var pic_list = new XML();
pic_list.ignoreWhite = true;
pic_list.load("picture_loading.xml");
loader.amount.text = 0;
Frame2
Code:
pic_list.onLoad = function() {
//xml loader
loaded = pic_list.getBytesLoaded();
needed = pic_list.getBytesTotal();
loader.amount.text = (loaded/needed)*100;
if (loaded == needed) {
loader.xml.text = "done";
loading = false;
}
};
Frame3
Code:
if (loading == true) {
gotoAndPlay(2);
}
Frame4
Code:
loader.xml.text = "done";
loader.files.text = "working";
parent = pic_list.firstChild;
list = parent.childNodes;
i = 0;
Frame5
Code:
loader.xml.text = "done";
loader.files.text = "working";
to_load[i] = list[i].attributes.file;
trace("I:"+i);
amount = (i/(list.length-1))*100;
loader.amount.text = Math.round(amount);
Frame6
Code:
i++;
if (i != (list.length)) {
gotoAndPlay(5);
}
Frame7
Code:
loader.xml.text = "done";
loader.files.text = "done";
loader.pics.text = "working";
line = 1;
a = 0;
Frame8
Code:
trace(to_load[a]);
if (a == 5 || a == 10 || a == 15) {
line++;
}
_root.attachMovie("pic_holder", "pic_holder"+a, a);
_root["pic_holder"+a].loadMovie(to_load[a]);
if (line == 1) {
_root["pic_holder"+a]._x = (a*100)+(5*a);
}
if (line == 2) {
_root["pic_holder"+a]._x = ((a-5)*100)+(5*(a-5));
}
if (line == 3) {
_root["pic_holder"+a]._x = ((a-10)*100)+(5*(a-10));
}
if (line == 1) {
_root["pic_holder"+a]._y = 5;
}
if (line == 2) {
_root["pic_holder"+a]._y = 110;
}
if (line == 3) {
_root["pic_holder"+a]._y = 215;
}
Frame9
Code:
if (_root["pic_holder"+a].getBytesLoaded>=_root["pic_holder"+a].getBytesTotal) {
_root["pic_holder"+a]._visible = false;
loader.amount.text = a+"/"+to_load.length;
}
Frame10
Code:
if (_root["pic_holder"+a].getBytesLoaded>=_root["pic_holder"+a].getBytesTotal) {
_root["pic_holder"+a]._visible = false;
loader.amount.text = a+"/"+to_load.length;
a++;
if (a != to_load.length) {
gotoAndPlay(8);
}
}
if (_root["pic_holder"+a].getBytesLoaded<_root["pic_holder"+a].getBytesTotal) {
gotoAndPlay(9);
}
Frame11
Code:
loader.amount.text = to_load.length+"/"+to_load.length;
for (b=0; b<to_load.length; b++) {
_root["pic_holder"+b]._height = 100;
_root["pic_holder"+b]._width = 100;
}
Frame12
Code:
for (b=0; b<to_load.length; b++) {
_root["pic_holder"+b]._visible = true;
}
stop();
View Replies !
View Related
SWF Works Fine...HTML Does Not
I'm not sure if this should go in this section or in the General Discussions forum.
I'm attempting to write a carousel SWF that will get weather images from a XML file that is being created from a previous PHP script call. First, I know that the XML file is being created, but nothing is being passed back to the SWF. If I hardcode ECHO statements, the SWF displays the correct icons. Secondly, and most importantly, if I call the SWF file directly from the browser address line, it works fine (with the hard coded XML data). But if I embed the SWF into a HTML page...the SWF does not get the XML data and therefore does not display the icons. Why is that?
Any help would be appreciated.
TIA,
Mike
Edited: 11/18/2007 at 08:08:23 PM by kratzmike
View Replies !
View Related
Works Fine In Actionscript 1 But Not 2?
HI all,
ive got a pre loader that works fine when i export on actionscript 1 but not in AS2??
ive spent a week using the mx 2004 pro demo and im finding it very hard to get to grips with!!
heres all the AS for the loader
ActionScript Code:
#initclip
function LoaderClass() {
this.slideColor = new Color(this.slide);
this.bordColor = new Color(this.bord);
this.update();
}
//
LoaderClass.prototype = new MovieClip();
//
LoaderClass.prototype.update = function() {
this.slideColor.setRGB(this.scolor);
this.bordColor.setRGB(this.bcolor);
//
this.bord._width = this.SlideWidth+4;
this.slide._width = this.SlideWidth;
this.bord._height = this.SlideHeight+4;
this.slide._height = this.SlideHeight;
//
this.createTextField("mytext", 1, this.bord._x, this.bord._y, 300, 40);
delete this.mtextFormat;
this.mtextFormat = new TextFormat(this);
//
this.mTextFormat.font = this.fname;
this.mTextFormat.color = this.bcolor;
this.mTextFormat.size = this.fsize;
this.mytext.text = "";
this.mytext.setTextFormat(this.mtextFormat);
//
};
//-----------
LoaderClass.prototype.setSlideWidth = function(b) {
this.SlideWidth = b;
this.update();
};
LoaderClass.prototype.getSlideWidth = function() {
return (this.SlideWidth);
};
LoaderClass.prototype.setSlideHeight = function(h) {
this.SlideHeight = h;
this.update();
};
LoaderClass.prototype.getSlideHeight = function() {
return (this.SlideHeight);
};
LoaderClass.prototype.setTintColor = function(c) {
this.tcolor = c;
this.update();
};
LoaderClass.prototype.turnOnTint = function() {
this.applyTint = true;
this.update();
};
// Connect the class with the linkage ID for this movie clip
Object.registerClass("Loader", LoaderClass);
#endinitclip
and
ActionScript Code:
onClipEvent (load) {
_root.stop();
this.topScale = this._width;
this._xscale = 0;
ft = int(_root.getBytesTotal()/1024);
}
onClipEvent (enterFrame) {
fl = int(_root.getBytesLoaded()/1024);
this._xscale = (fl/ft)*this.topScale;
_parent.mytext.text = "LOADING "+fl+" KB OF "+ft+" KB";
_parent.mytext.setTextFormat(_parent.mtextFormat);
// _parent.llt = "LOADING "+fl+" KB OF "+ft+" KB";
if (fl == ft) {
tellTarget ("_root") {
play();
}
}
}
thanks in advance!!!
View Replies !
View Related
Getting Variables Works Fine But...
Hey guys I've got this code:
Code:
LoadVariablesNum ("forumstats.php", 0, "GET");
totalonline = "Online: "+this.totalonline;
threads = "Threads: "+this.threads;
posts = "Posts: "+this.posts;
It works very well, however even with the stop command, it continuously refreshes the variables, which is a drain on my bandwidth.
What can I do to get it to load ONCE ONLY? I'm using Flash MX 2004 Professional.
Cheers for any help!
View Replies !
View Related
Flash Movies Not Loading In IE...fine In Firefox And Others...
Hi all,
I can't get my flash movies to load in Internet Explorer. They are loading fine in Safari, and Firefox. In IE, it says "Movie not loaded" when I right click on the white space where the movie should be. I've tried a bunch of different things but can't get it to work. Any help would be really appreciated. The webpage is at www.gunaratnam.ca. (The page needs higher than 1024x768 to view properly.) Thanks
View Replies !
View Related
Flash Buttons Work Fine In IE But Not In Firefox
Hi
I m working on a web page that consists of flash buttons that plays external mp3 files when pressed. It is very simple page all i did was to embed flash buttons to an html file. It works fine with IE it loads all the buttons on the page but firefox loads only couple button at a time. Also when i refresh the page in firefox it loads additional buttons but not all of them and loaded buttons seems to be random. I would appreciate if anyone experienced the similar behavior and how it is solved.
View Replies !
View Related
Flash Loads Twice In IE Fine In Firefox/ Safari
I have a flash movie set up to call a selection of Jpgs from an xml file. Everything works fine locally but when deployed to the server the flash loads the movie and then quickly reloads the movie and starts again. This is most noticable in IE6 but it has happened in FF as well. Is anyone aware of an issue that would cause this. Hopefully there is a fix I can set up.
I am attacing a selection of html code as well since I believe the issue may lay in that.
Thanks for any help!
Attach Code
<param value="submittedfiles/c-series/C80Flash/scrolling_gallery_image loading_v5.swf" name="movie"><param value="xmlPath=submittedfiles/c-series/C80Flash/images.xml&imagePath=submittedfiles/c-series/C80Flash/images/" name="FlashVars"><param value="high" name="quality"><param value="#ffffff" name="bgcolor"><embed name="submittedfiles/c-series/C80Flash/scrolling_gallery_image loading_v5" pluginspage="http://www.macromedia.com/go/getflashplayer" src="submittedfiles/c-series/C80Flash/scrolling_gallery_image%20loading_v5.swf" type="application/x-shockwave-flash" flashvars="xmlPath=submittedfiles/c-series/C80Flash/images.xml&imagePath=submittedfiles/c-series/C80Flash/images/" quality="high" bgcolor="#ffffff" allowscriptaccess="sameDomain" align="middle" height="284" width="752">
View Replies !
View Related
Flash Buttons Work Fine In IE But Not In Firefox
Hi
I m working on a web page that consists of flash buttons that plays external mp3 files when pressed. It is very simple page all i did was to embed flash buttons to an html file. It works fine with IE it loads all the buttons on the page but firefox loads only couple button at a time. Also when i refresh the page in firefox it loads additional buttons but not all of them and loaded buttons seems to be random. I would appreciate if anyone experienced the similar behavior and how it is solved.
View Replies !
View Related
High CPU For Wmode=transparent On IE (Firefox Is Fine)
I've got a transparent Flash embed in a <div> with a tiled background image, and the CPU usage is near 50%. I can understand the CPU usage being high with wmode=transparent, but it only happens in IE; Firefox is more reasonable (10%).
Anyone else notice significantly higher CPU usage in IE? (for wmode=transparent on a div with a background image).
View Replies !
View Related
LoadMovie Help Anyone? Works Fine On PC, But Not Online
Hey everyone,
Trying to use LoadMovie on a button to load a SWF (just a picture) into a MC called Preview. My code looks like this right now:
on (rollOver) {
loadMovie("files/Movie4.swf", Preview);
}
on (rollOut) {
loadMovie("files/Blank.swf", Preview);
}
on (release) {
getURL("documents/resume.pdf", "_blank");
}
This works great on my PC. Once I put in the webspace, the SWF (Movie4.swf) does not load into the MC (Preview). I can still click on the button and go to the PDF, but the loadmovie doesn't work.
Any help would be appreciated.
View Replies !
View Related
Mask Works Fine In Editor, Not In Swf
I have set up a mask, drawing a rectangle symbol and having it float from left to right over some text, thus relevealing it. It works great in Flash MX (editor) but when I preview it I don't see the text, or the box or anything.
Anyone have any troubleshooting tips? On OS 10.2.4, Flash MX.
View Replies !
View Related
Loadmovie Works Fine Until I Upload...
Hi there. I have an image gallery that loads pics from a folder called images such as below. When I try the movie locally, it works fine.
When I upload the files to my server, however, the images do not show up. I've got my targets set up the same and can't figure out what I'm doing wrong. Any thoughts?
}
if (square._alpha<10) {
loadMovie("images/image"+whichPic+".jpg", "square");
fadeOut = false;
fadeIn = true;
}
Thankyou for any help
View Replies !
View Related
[CS3][A2] Gallery Works Fine In IE, But Not In FF And Opera
hey
ok, not sure how simple this is, but ive made a gallery, loosely based on the kirupa one. basically, I have a border that resizes, then the image shows in it. This all works fine in IE, but when it is viewed in FF and Opera, the box does not resize, it goes all small. Hard to explain lol. here are some links;
the actual flash page:
http://munkydesigns.co.uk/burls/index.html
the files
http://munkydesigns.co.uk/burls/burls.zip
Here is the code in question for the resizing:
PHP Code:
function resizeMe(w, h){
mc_border._visible = true;
var speed = 3;
_root.mc_image._alpha = 0;
mc_border.onEnterFrame = function(){
this._width += (w - this._width)/speed;
this._height += (h - this._height)/speed;
if(Math.abs(this._width-w)<1){
this._width = w;
this._height = h;
_root.mc_image._x = this._x - this._width/2 + spacing/2;
_root.mc_image._y = this._y - this._height/2 + spacing/2;
_root.mc_image._alpha = 100;
delete mc_border.onEnterFrame;
}
}
}
Ive got to have this in for a deadline on Monday
If anyone can help, it'd be greatly appreciated!
View Replies !
View Related
My First Button Bar, Almost Works, Just Needs Some Fine Tuning
Total newb here, but I couldn't find anything through searches for this particular problem.
I can't get a couple bugs out of my navigationmenu, I want to make a drop-down menu that allows me to have the drop-down menu's drop-down over HTML, an image, or possibly another Flash object.
I want the flash menu to retract when you go from one button to another, however currently it only retracts if your mouse moves over the invisible button, but because my dropdowns are wide, sometimes the mouse will pass directly from the drop-down, to the button, and not pass over the invisible button. There must be another way to code the drop-down to retract the first menu when you mouseover the 2nd menu... Currently I sometimes have 2, or even 3 menu's open simultaneously. Here is what I am talking about:
I took a screen capture of the overlapping menu's, it is at this link. Any advice is very much appreciated.
This is a link to a screenshot
http://www.trittonusa.com/Images/buttonbarproblem.bmp"
And this is a link to my .fla file
http://www.trittonusa.com/Images/ButtonBare.fla
I also currently have the size of the drop-down menu such that when I try to insert it into an HTML file, it makes a large space below it, when I try to make it smaller, the drop-downs don't appear.
Thanks in advance for any advice you guys can provide, I really appreciate it.
View Replies !
View Related
LoadmovieNum Works Fine On Harddisk But Not On The Web
I'm really a flash rookie so I often have problems that may result really basics.
I've searched the forums without results. My homepage is a swf that after a short intro stops and loads "start.swf" on top (same folder), which contains all my menu items.
The same when you click on a button (part of the start.swf) you load something else on _level2 on different folders in this case (i.e. "english/main.swf" or "spanish/main.swf", ... ), and so on.
Everything works fine on my pc, but when I try on my web space the introduction starts and at the end it doesn't load "start.swf" eventhough they are on the same folder. Here is the code inserted in the last keyframe of my homepage.swf. Thank for your help.
ActionScript Code:
loadMovieNum("start.swf", 1);
stop();
_paolo
View Replies !
View Related
.swf Works Fine On My Machine.. But Not Once Uploaded
i'm having troubles with a jukebox script i found by eric bridges.
the .fla
my problem is that it works on my machine.. but not once i upload it to a website. http://www.akae.net/abide/music.swf
it looks like its not reading the txt file... but its all in the same directory soo i can't figure out why that would be.
if anyone could give me some advice i'd really apreciate it.
View Replies !
View Related
Terrible Issues With AS3. AS2 Works Fine.
Okay I've just got around to converting a game-in-progress of mine to AS3, all in classes. The code inside class Character mimics the coding inside the sonic movieclip of the AS2 version. The code is exactly the same in execution, it is simply structured slightly differently so it is more organized as a class.
The failed hittests when transferring over a block isn't even all of it. It looks choppy, and the character will begin to walk into the block when on a curver, and eventually fall through it.
This is a very big problem for me. Any help would be very, very, very much appreciated.
AS2 Version (Simply click Play, Main, then New Game)
AS3 Version
View Replies !
View Related
MC Won't Work In Timeline - Works Fine On It's Own
Hi Everyone,
I have a simpel 5 page website which is controlled by my main timeline. The first movieclip which is an animation works fine. The second movieclip which is an interactive scrolling gallery does not work.
(All the movie clips are controlled by the menu link buttons, which indicate which frame to play upon release).
When I test the scene on the movieclip itself, independent of the main timeline it works fine, however once I drop the instance into my main timeline it no longer works.
Can anyone help please? Any help is much appreciated.
Thank you.
View Replies !
View Related
.swf Works Fine On My Machine.. But Not Once Uploaded
i'm having troubles with a jukebox script i found by eric bridges.
the .fla
my problem is that it works on my machine.. but not once i upload it to a website. http://www.akae.net/abide/music.swf
it looks like its not reading the txt file... but its all in the same directory soo i can't figure out why that would be.
if anyone could give me some advice i'd really apreciate it.
View Replies !
View Related
CSS Problem Fine In IE/Safari Horrible In Netscape/Firefox
here's the site: www.brainvise.com/testing
specifically: www.brainvise.com/testing/home.html
It works in IE and Safari, but I can't seem to get it to work in Firefox or Netscape (at least on a mac). On these, it displays a humongous bottom margin of white. I'm thinking it's a css problem, but I've tried a bunch of different combinations. Does anyone have any ideas?
View Replies !
View Related
Question - FLV's Play Fine In IE, But Not Firefox, Safari Or Opera -Why?
Hi I really hope someone can help on this... my flash developer's all but given up and I have no clue how to fix this problem.
I've made a series of trailers available on my site (www.WorldCinemaOnline.com), and encoded them using flash video.
The issue is that i'm having problems getting these trailers to work in any other browser apart from Internet Explorer... A typical example of where the problem can be found is at: http://www.worldcinemaonline.com/fil...-Le-Monde.html
In Internet Explorer, when you press 'play' the video player fades in, begins buffering, and starts to play back as expected.
In every other browser I have tried, however, (Safari, Opera & Firefox) the video player fades in, looks like it's about to buffer - and then nothing happens.
Am I missing something really obvious here that causes the player, or my code to be incompatible with other browsers?
If anyone can help it'd be very much appreciated & there's a good few free films in there if someone manages to come up with the answer. )
Thanks!
Pierre
View Replies !
View Related
Flash Buttons Dont Work In FIREFOX, But Fine In IE
Hi guys... im having problems with flash buttons in firefox, when i click on a flash link i have made to another page nothing happens, but in IE the links work perfectly. Originally i thought it could be a problem with adbock, until i uninstalled it and the problem is still there. Interestingly everything work totally fine in firefox on my wifes laptop.
Could anyone please shed any light on this headache for me...
thanks!
View Replies !
View Related
Flash Doesn't Work Properly In IE 6/7 But Fine In FireFox
I just started having issues with flash displaying in IE. For example, I know there is a swf on the page but nothing visual shows up. If I right-click on the swf I get a greyed out "movie not loaded" and About Flash Player. I've tried the uninstall tool several times, reinstalled, even reinstalled version 7, then 8 and then 9. Then (as I was going to do anyway) upgraded IE to ver 7 and still the same problem. No problem with FireFox, though. It's driving me crazy. Any ideas? Some kind of plug-in folder problem?
FWIW - I have Studio 8 with Flash 8 Pro, etc. I also have Studio MX still installed. Also, I noticed that some programs, like Quickbooks and a few others, seem to use flashplayer 6. Not sure if that's screwing me up suddenly.
Thanks for any ideas you can throw my way!
-Scott
View Replies !
View Related
Mp3 Flash Player Loads Fine In Firefox, Takes 15 Sec In IE - Help
Hi,
We have 57 different mp3 flash players on our page that use the below code, they all work fine and all load in 2-3 seconds in Firefox.
Can be seen here on a test page: www.lacantinaproductions.com/catalogue_new.htm
In IE, 57 different instances of the code had to be created in order for the flash players to even appear. So the code was adapted in the following way (see "1") for each instance:
<!-- Begin Code -->
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashPlayer1">
This text will be replaced by the flash music player.
</div>
<script type="text/javascript">
var so1= new SWFObject("playerMini.swf", "mymovie", "75", "30", "7", "#FFFFFF");
so1.addVariable("autoPlay", "no");
so1.addVariable("soundPath", "song.mp3");
so1.write("flashPlayer1");
</script>
<!-- End Code -->
Problem is that it takes the page at least 15 seconds to load in IE, when it loads in 3 in Firefox
Is there anyway to fix this issue? Why does it happen? Agree that the page in question is not coded in the neatest of ways (working on that), but it still loads fine in Firefox and therefore should work in IE as well?
Thank you for your help
View Replies !
View Related
Site Fine In Firefox...STRANGE Bugs In Explorer...HELP
I've just put up a site...and any computer I try to load it on with firefox, it loads fine, but with internet explorer WIERD things keep happening, like some symbols load and others don't...I've even seen one instance of a symbol load, and another not...right next to each other on the same screen...I've never seen anything like it...maybe someone out there can give me some help...
here's the site... http://www.studioxproductions.net
the site was designed in flash 8 professional
it's too big to upload, but I'll send it over to anyone who is willing to help
thanks
View Replies !
View Related
Movie Works Fine In Standalone SWF But Not In Html
Hi Peeps
I made a movie last night which works fine in the standalone swf player on my hdd. However when I attempt to open it from the html file which was produced by Flash MX when I published the movie It does not work and all I get when I right click on the movie is "Movie Not Loaded".
This is not the first time this has happened. Has anyone come across this before? I am using Flash MX with latest Flash Player for Internet Explorer.
Thanks.
View Replies !
View Related
Forms. Works Fine On The PC/Mac But Doesn't When Uploaded
Hi there,
I've got a simple form which sends data to an asp page where I can view who's answered what etc. The asp page is already uploaded. The swf works fine locally on the PC and Mac. When I upload the swf, it doesn't send the data. Any ideas why? Do I have to add some code into the htnl page?
Any help greatly appreciated,
Cheers
Ben
View Replies !
View Related
Geturl(javacode) Works Fine But Not In Opera
i'm doing a getURL with javascript to open a popup-window. it works fine with IE, but with Opera nothing happens. i've set Opera to accept all pop-ups. here's the code:
Code:
getURL ("javascript:n_name=window.open('checkuser.php?fname=upimage.htm','new_name1','width=500,height=200');void(0);");
View Replies !
View Related
|