Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

My Loading bar disppear on browser.

Status
Not open for further replies.

KattyKatty

Programmer
Nov 10, 2003
91
TH
Hello, :)
My loading bar show only while I am testing the movie, but it disappear on browser while loading via internet. I use these action script below.Please advise what is wrong to make it disappear? Thank you.

Kathryn
------------------------------
LOADED = Math.round(getBytesLoaded());
TOTAL = 70000;
PERCENT = LOADED/TOTAL;
BAR._width = PERCENT*150;
TEXT = Math.round(PERCENT*100)+"%";
if (LOADED>=TOTAL) {
gotoAndPlay("Scene 2", 1);
}
------------------------------
Note: I use Flash mx 2004
 
Just a guess but are you on a high speed connection? Could be why you only see it in your testing.

Wow JT that almost looked like you knew what you were doing!
 
No, I am not on high speed connection, and I did not see any of my text say "loading..." on the screen, even bigger file I still have to wait too long to see the movie. Any guess?

Thank you,
Kathryn
 
Using components, attached movie clips and/or sounds with Linkage set to export on the first frame, and/or setting up new fonts in your Library?
All of those could be preventing your preloader from displaying anything until they have all downloaded on the first frame.

Other than that, you'll have to post a link to your .fla, zipped up and in MX only format, not MX2004!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top