View Single Post
  #3 (permalink)  
Old Dec 6th, 2007, 13:57
marSoul's Avatar
marSoul marSoul is offline
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 29
Posts: 422
Blog Entries: 2
Thanks: 6
Thanked 4 Times in 4 Posts
Re: Help with preloader

Do you have it working online ? Or if you send the file it will be better...
Also i think your code should be like this

Code: Select all
onClipEvent (enterFrame) {
total = _root.getBytesTotal();
    loaded = _root.getBytesLoaded();
    percent = int(loaded/total*100);
    text = percent+"%";
    gotoAndStop(percent);
    if (loaded == total) {
        _root.gotoAndPlay(2);
    }
}
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com


Last edited by marSoul; Dec 6th, 2007 at 14:27.
Reply With Quote