Preloading Script For Netscaspe & Explorer
Hello everyone, I use a preloading script that works well in Explorer, but recently i've noticed that it doesn't work on Netscape and I guess so do on others..... does anybody know a good preloading script for all browsers????? My preloading works with scenes..... could that be the problem????
I'll apreciate solutions.....
Thanx
Musher
DevShed > Flash Help
Posted on: February 17th, 2004, 06:20 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
[cs3] As2 Preloading Problem Explorer Vs. Firefox
Hi Everybody!
I have a little problem, im doing this site with an intro in flv, and i want the movie starts once that is 100% preloaded and im using the code below, the thing is that it works fine in FIREFOX, but in EXPLORER starts streamin before preloading its over.
this is the code im using:
Code:
var connection_nc:NetConnection = new NetConnection();
connection_nc.connect(null);
var stream_ns:NetStream = new NetStream(connection_nc);
my_video.attachVideo(stream_ns);
stream_ns.play("intro_cue.flv");
// SHOWS CUEPOINTS AND META DATA
stream_ns.onMetaData = function(metaProp:Object) {
trace("The metadata:");
traceMeta(metaProp);
// traceObject(metaProp, 0);
};
// PROGRESS
my_video.contentPath = "intro_cue.flv";
var listenerObject:Object = new Object();
listenerObject.progress = function(eventObject:Object):Void {
BytesTotal = eventObject.bytesTotal;
if (eventObject.bytesLoaded>=eventObject.bytesTotal/2) {
my_video.play();
}
};
//
my_video.addEventListener("progress",listenerObject);
this.createTextField("loaded_txt",10,10,160,22);
var loaded_interval:Number = setInterval(checkBytesLoaded, 500, stream_ns);
function checkBytesLoaded(my_ns:NetStream) {
var pctLoaded:Number = Math.round(my_ns.bytesLoaded/my_ns.bytesTotal*100);
loaded_txt.text = " KB loaded ("+pctLoaded+"%)";
progressBar_mc.bar_mc._xscale = pctLoaded;
if (pctLoaded>=100) {
clearInterval(loaded_interval);
}
}
// CUE POINT
var flvListener:Object = new Object();
flvListener.cuePoint = function(eventObject:Object):Void {
if (eventObject.info.name == "End") {
loadMovie("default8.swf", 0);
}
};
my_video.addEventListener("cuePoint",flvListener);
stop();
Thanx to anybody who can help me to resolve this issue!!!
Preloading Difference In Explorer And Firefox?
The preloader is moving from the left the right of the browser width.
BUT why it only works in Firefox and not in Explorer?????
The whole thing does not work in Explorer....it totaly skips the preloader part!
Does that come because of the flash plugin security from Microsoft, or is something wrong with my html file??
Here the html file, hope someone can help me with this!!
Thanx Igor
Internet Explorer And Flash - Freakin Explorer Bar
Okay, I'm pretty new at with Flash, and the whole actionscript/xml/xhtml stuff. When I upload my .swf to the web, I always get that explorer bar dropping bombs everytime I open the page. And I get it on just about every computer. Is there a special embed tag or some trick I'm missing to make that thing go away. Also, why do some sites automatically focus and others not. How do I do that?
Preloading .swf Before Preloading Main Movie
Ummm
Things are getting complicated lol
I have my main movie going ..AND I actually managed to get a pre-loader working ...
and it's all ok as long as you have adsl or cable connection - otherwise it is REALLY messy.
The main .swf uploads onto the web .. but the secondary swf have not yet loaded .. and so it is all out of synch .. if you wait a while and refresh you get it ... but argh it is horrible .....
so .. is it possible to block the preload of the main movie until it has preloaded its secondary swf's ??
I should imagine it's recoding the actions AGAIN .. can any one get me started please ..
Is this often a problem if you add swf to a main movie ???
tyyyy all
julia
Help Required Progress Indicator Bars. NOT PRELOADING BARS AND NOT A PRELOADING QUE
Help required ! progress indicator bars. NOT PRELOADING BARS AND NOT A PRELOADING QUESTION!
OK I have a swf called audio.swf which just contains a 15 minute streaming audio file that it just dragged along the time line.
I want to have some visual indicators in the swf, so that the user has some info of what is going on:
What I require within the swf are the following:
1.Progress Bar: How much of the movie has been played. This will obviously go up as the timeline for the swf progresses.
2.Streaming bar: Giving the user an indication of the amount of swf that has currently been downloaded.
3.Time (minutes and seconds) that the movie clip has been playing for
4.Elaped time (time remaining)
As you can see I have attached no fla, as I am sure that these 4 visual indicators are all fairly simple to code of any of you action script daddies out there.
Any help on one or all the 4 things I require would be brilliant.
If anyone could help me this would be more than appreciated.
Cheers
Explorer
I've seen site's were you can open a new browser window but us flash to give it it's own look any body know how?
MX With Explorer 5/5.1?
I'm having a problem with MX and explorer.
I did this page with MX and OS X and I can't see it with explorer 5.1 on OS X, but if I try with explorer 5 on OS 9 it works.
I know it sounds puzzling but I really have no clue why is this happening.
Any suggestions?
If you want to see the site is www.debrasolomon.com
thanx!!!!
POP-UP In Explorer For MAC
Hello,
I'm hoping someone can help me out. I've created a pop-up window and everything works fine except when I look at it in IE for MAC. It puts extra space at the bottom & the right hand side. It is not an exact fit.
Is there any help someone can provide?
Thanks,
Tracy
Please, Please Help Pop-up In Explorer For Mac
Can someone please help!!! I have created a pop-up window and everything works fine in all of the browsers except IE for MAC. When I look at it there, it creates extra space on the right side and on the bottom. It is not an exact fit. I have put in the proper code:
leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
CAN SOMEONE PLEASE HELP!!! I REALLY NEED TO GET THIS CORRECTED!
THANKS ALL!!!
Tracy
Explorer.exe 99%
When I have Flash MX 2004 open for about an hour "Explorer.exe" runs at 99%. Is there a service pack or some update for my version? I can't seem to find one.
Pop-ups In Explorer
I'm having problems with my website <a ref="http://www.jeremyforsn.com">jeremyforson.com</a>, I have pop-ups for my gallery that don't work in explorer. I'm lost on it. Please help. Also if you hit another thumbnail w/o closing the previous window it loads into the same one.
Here's the actionscript for the first button:
on (release) {
getURL("javascriptpenNewWindow('html/juvinals.html','Jeremy%20Forson','width=700,height =700,toolbar=no,scrollbars=yes');");
}
This is in my head tags:
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
</script>
Also I put this is the <embed> tag:
swLiveConnect=true NAME=site.swf
Explorer/XML/MP3
I've made a sort of online radio/mp3 player that loads text and file paths into my flash movie via an xml file.
It works in Safari, but it's not working in Internet Explorer. It has worked in IE in the past, not sure what could be different today.
bottleboy.net
EXPLORER/PC
Hi everyone. Would anyone here know why my swf does not load in explorer (pc) when it works fine in all other browsers on pc and mac? I may have missed something in the code, but I'm not sure why this could cause such a specific problem in explorer.
Website:
http://www.anrick.com
The flash movie is inside the "reel / photos".
The flash file can be found here:
http://www.anrick.com/html/reel/cont...ash/photos.fla
Any help would be fantastic.
Anrick...
Explorer/XML/MP3
I've made a sort of online radio/mp3 player that loads text and file paths into my flash movie via an xml file.
It works in Safari, but it's not working in Internet Explorer. It has worked in IE in the past, not sure what could be different today.
bottleboy.net
Box Explorer
why wen i view my flash file in explorer is there a box around it. I then have to click it to make it active? Can I turn this off in flash?
Also, I created a scroll bar with text. I want to edit the text inside. Make headings bold, some text i want to change the colour. But it seems to either bold everything in the window or nothing.
Help :)
Movie Explorer
Hey, guys! This is a very general but annoying question. In Flash 5 when I have the Movie Explorer palet open and I want to filter all the info down to just the actions within frames, mcs, buttons, etc., I get a list that does not seem to be in any particular order. I would like it to be in the order of occurence on the timeline so that I can follow the logical structure of the ActionScript within the movie. Has anyone encountered this problem and does anyone know of a way to organize the info within the movie explorer in a customized way - say, in the order of occurence on the timeline as I need it?
As always, your help is greatly appreciated.
Movie Explorer Has Bug?
When I go to the Movie Explorer, I don't see all the symbols I have defined in the library.
For example, I can see three movie symbols in the library, but in the Movie Explorer it only shows two.I have closed and opened the app to make sure it's not a refresh problem but still got the same thing.
Is this a bug or what?
- boon
Explorer Settings
is there any way.. i can detect the Browers Font settings...i.e. are they set to Large, Medium or Small? and set them to default thru any action script or Java Script?
POP UP (with Out Internet Explorer On Top) ?
Hi I wonder how can u create pop UP with out Internet Explorer Text on top
What I want is POP with 1 flash button CLOSE
This is Example
http://www.nightmaresonwax.com/enter.htm
See how they did POP UP !!!
Mac Users On Explorer 5.0
In Explorer 5.0 has anyone had a problem making javascript pop-up windows without scroll bars?
It leaves a white area where there the scroll bars live. I had the same problem on jamescover's Basic Popup Script page. It worked great with netscape but not in IE.
Is there a fix for this?
Explorer Window
Hi,
What do I need to do to a buttons actions to create an explorer window, for example, to explore a cd?
Thanks.
Internet Explorer
Hi everybody,
If nothing is stupid here question then please telll me what should be the size of movie so that it shows fully on internet on a 800-600 resolution and what should be the publish settings
Movie Explorer
My Movie Explorer window doesn't seem to update when I make changes to actionscript commands. Why!?
Thanks!
Ig
Sluggish In Explorer
What's up!
So I am getting very frustrated at the moment. I am trying to create some smooth animations. After raising the fps to 30 and doing some tweens it looks very smooth...in flash.
As soon as I export it and view the html file it looks like **** through a straw. The animation is very sluggish, totally not what I created in Flash.
So I used one the computers on campus. Their craptastic Tangents do display a smooth animation, but then why does my P4 2.5 GHz 1024 mb not?
Do I perhaps have a faulty plugin installed?
Someone please help me before I switch back to pure html/php...
Internet Explorer 6.01
Hi,
I have experienced a strange thing lately. My website worked well with Internet explorer 5.5 and still works well with Internet explorer 6.01. However, since I made a windows update on my pc I get scroll bars at the bottom and on the right hand-side of the content window. The website has been built in php and redirect several pages to flash MX. It is working well from there. But as soon as I am using the link from flash that tells me to come back to the content window in php, I get the scroll bars on the content window when it never used to be the case with my other version of Internet Explorer. Maybe I need to add some lines in my source in flash to make it work.
Thank you,
Seb
Internet Explorer 6
I am using win98 yesterday I install Internet Explorer 6 from the net. I made a websie when I view the website using Explorer 6 I saw unallighed tables but before using Explorer 5 table were aligned and images were right on their place. why is that has Internet Explorer 6 some bugs?
Title Bar Of Explorer
i am trying to make the title bar of explorer to write the title i have, but whenever i press a button of my flash movie it changes to my anchor name. Is there a way to do it?
LoadMovie In Explorer 6?
I've created our company website in Flash MX, and saved down to Flash 5 to allow for more compatibility. Everything works fine on my mac, and it worked on the PCs we tested it on. I have a main movie, with an empty movie clip that other smaller movies load into using the loadMovie action.
The problem is that 2 people who have Explorer 6, on PC, are now not able to view the loadMovie movie clips. Can anyone tell me why and how to fix this problem?
The url is www.blackcatcommunications.ca - go to Portfolio (on the left), click on Print, Campaign, Brand, etc (on the left), then click on one of the sub-submenus that appear in the top left. This *should* load the appropriate portfolio section swf into the white space, but doesn't seem to in IE6.
Thank you for *any* help!
Michelle
pulling my hair out...
Internet Explorer 5.00
i posted my site on the internet,but unfortunately i am unable to open the site while using explorer v.5.00. the site do work with newer version of explorer.any solution?.Appreciating ur help.
New Javascript For Explorer
Hi,
I wonder if somebody could show a real example with html file,
javascript and movie (as zip file) to show how to publish movies for the new explorer. I got this notice from MM and tried the script for 1 movie but did not get it to work.
Microsoft s@#$s
File Explorer
is it possible to make a file explorer that uses roots where you can make new folders copy paste cut and run files with falsh in mx?
just like windows explorer
note: i need it in an application, and not in a site..
please help
Safari But Not Explorer?
Greetings,
I have a quick question. I added the following script to my index.swf (all on one line):
on (release) {
getURL ("javascript:NewWindow=window.open('http://www.dorishenson.com/navigation.html','LOOBA LOOBA','width=800,height=600,left=50,top=50,toolba r=No,location=No,scrollbars=No,status=No,resizable =No,fullscreen=No'); NewWindow.focus(); screen_height = window.screen.availHeight; screen_width = window.screen.availWidth; left_point = parseInt(screen_width/2)-(800/2); top_point = parseInt(screen_height/2)-(600/2); setTimeout('NewWindow.moveTo(left_point,top_point) ',100); void(0);");
}
The script seems to work fine when I use Safari, but Explorer keeps telling me I have some kind of "type mismatch" script error. I have enclosed the source code that the error brought up. But if you want to take a look for yourself, the URL is
www.DorisHenson.com
btw- I am using MX 2004 Pro on a Mac.
Any help would be appreciated.
Thanks,
Mike
How To Let Flash Fit In The Explorer All The Way
if you visit this link you will know what i am talking about
www.the7thinfo.com
You see the Black line's . my background supposed to be all blue all around how do i fix this .. is there any tutorial for this ..
PLs Help i am a Newbie
I thank you in advance.
God bless
Ysman
Internet Explorer Bg
can i make ie have a bg of my choosing and then load my movie ontop of that so when the client resizes or opens favourite tab etc the movie resizes but the bg stays static
Swf Different On Explorer Vs Safari
is it possible for my falsh swf to be performing differently on windows explorer and on safari. In explorer the masks do not work whilst they work perfectly in safari. I tried things such as emptying the cache and it has happened on two seperate computers. Any input would be appreciated.
Why This **** Donīt Work On Explorer
i donīt get...
i make it work on my computer....
but whe i view it with explorer it does not work...
****...
http://www.hemsida.net/canales/v2/flash/flash.zip
Windows Explorer
Hi everybody,
Is it at all possible to open a windows explorer window from flash, browse for a particular file and then send the path of the selected file back to flash?
I'm using Flash MX btw.
TIA.
Movie Explorer Help
Why is it that some thigs in movie explorer show up in the action script editor and some dont? I'm trying to edit some action script, and when I click on it in movie explorer, it wont appear in the edit screen, but every other action in movie explorer will. Is there a setting I'm missing? I've attached a screenshot because the .fla was too large.
Swf Won't Load In Explorer
I am testing a movie and it loads fine in opera and netscape and firefox but when with explorer the preloader does not come up, only an empty space. Even if I type in a direct route to the swf such as http://mysite.com/introvideo.swf nothing happens. All the other browsers work fine. Any ideas what is causing this?
thanks.
What Is Going On With Internet Explorer
I developed a pretty nice website for one of my clients : https://www.chirocurrent.com/indexSSL.php
This site works fine in FireFox, returning data from a database with no problem. When I try to view the page with Internet Explorer everything comes back as "undefined". Any idea why?? Thank you.
Tree Vs Explorer
Hi
Here i have a problem with tree component. Using tree component i can load xml tree nodes, but i need to load my system's hard disk drive information(like explorer) to tree component. How can i do this. if anybody know about this, plz help out...
phani.
Internet Explorer
Internet Explorer is trying to make me download a flash file insted of just playing it.
does anyone know why this would be?
The file that I published opens in safari but it wont open in ie.
Problems With IE Explorer
Hi. I'm currently developing a flash site and I'm experiencing some problems with IE Explorer. In flash I use the LOADVARS method to load some data from an asp page and populate a combobox based on the data I recieve from the asp page. When I publish my site IE explorers seems to block the connection to the ASP page. In firefox and safari it works fine its only in IE explorer where I'm having the problem. Any ideas how can I resolve this issue???
Thanks in advance
Carlos
Explorer Error?
when ever i go in to a site that uses flash, mainly sites with video, explorer shuts down.
it says: internet explorer has encounterd a problem and need to close.
the error summery is: AppName: iexplore.exe AppVer: 7.0.5730.11 ModName: getflash.dll
ModVer: 1.0.0.1 Offset: 00008c20
would re installing flash work? if so how can i do that?
it is very frustraiting could, some one please help me with this?
Swf's And Internet Explorer 7
I have a question. When I view web pages that have just an swf, no html it comes up blank. Is this a problem on my end or the person that posted the swf file?If it's mine how do I fix it?
thanks
I Have Problem When I See My .swf In Explorer
Hi everybody.I have a problem since a lot of time jaja.I habe problems inserting .swf files in dreamweaver 8.I can insert, when I press f12 to see in Internet Explorer you see the movie, but when you put mouse over the banner I design.This has a bad behavior, it transform to hand, because the banner is a buttom, and again transform in default mode and it doesn`t stay in buttom form.When I did the flash, I saw the .sfw file in HTML, that generated the same Flash, and it look good, and had a hood behavior, but when I insert in dreamweaver 8 it doesn`t work correctly.I download the Dreamweaver 8 Update 2. Now I have Dreamveaver 8.0.2 or something like that.
I think that the problems is in the form that Dreamweaver Insert the .swf file.
My way is Insertar - Media - Flash.
Somebody can help me? this problem I canÂīt resolved and I new whit this.
English is not mi first Language, sorry if I had mistakes.
Internet Explorer 6 And SWF
Hello,
I have installed Adobe Flash Player 9 in my PC and when attempt to open to a file swf with Internet Explorer 6, the content is seen in target. When seeing the source code of the generated page appears the following code:
<html><head> <script src= " head of cattle: //xpsp3res.dll/objectembed.js " ></script> <script language= " Javascript " to >var objectSource= " file:///C:/WINDOWS/Help/Tours/mmTour/segment3.swf "; </script> </head><body leftmargin=0 topmargin=0 scroll=no> </body></html>
How I can fix it?
Thanks very much.
Size Of Swf In Explorer
Hi,
I've got a problem with my site:
site
If I see it on firefox the size of the swf file is adjusted as I wante 640x360 but I see this on explorer it' isn't resized
Any idea?. Thanks.
|