# Need help cause i am stupid

**URL:** https://forum.kirupa.com/t/need-help-cause-i-am-stupid/137576
**Category:** Uncategorized
**Created:** [February 15, 2005, 9:36pm UTC](https://forum.kirupa.com/t/need-help-cause-i-am-stupid/137576 "2005-02-15T21:36:14Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ultraloveninja](https://avatars.discourse-cdn.com/v4/letter/u/71e660/32.png) [@ultraloveninja](https://forum.kirupa.com/u/ultraloveninja)
#### Post date: [February 15, 2005, 9:36pm UTC](https://forum.kirupa.com/t/need-help-cause-i-am-stupid/137576/1 "2005-02-15T21:36:14Z")

</div>

alright, i am at my wit’s end with this, so i will take any help that i can get.

i am putting a preloader in a seperate scene in my flash movie.  
for some goofy reason, it will go to the preloader and get to lik 99% and stop, and will not proceed to the next frame. i have tired EVERYTHING that i know to make it work, but it will not.

here’s my code for the preloader that i am using:

onClipEvent (enterFrame) {  
loading = \_parent.getBytesLoaded();  
total = \_parent.getBytesTotal();  
percent -= (percent-((loading/total)_100))_.25;  
per = int(percent);  
percentage = per+"%";  
loadBar.\_width = per;  
if (percent\>99) {  
\_parent.gotoAndPlay(“Scene 2”, 16);  
}  
}

it is placed on a moive clip that retains all the text and graphics for the preloader.

like i said the only thing that won’t work is that it will not proceed to the next frame.

i have replaced the \_parent, to \_root. i have used frame labels instead of (“Scene 2”, 16). i have no idea what else to do.

if anyone has anything, i will be VERY happy.

thanks all very much!
