# I am literally about to throw my computer out the window

**URL:** https://forum.kirupa.com/t/i-am-literally-about-to-throw-my-computer-out-the-window/289815
**Category:** Uncategorized
**Created:** [June 5, 2009, 1:22am UTC](https://forum.kirupa.com/t/i-am-literally-about-to-throw-my-computer-out-the-window/289815 "2009-06-05T01:22:38Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![frosch45](https://avatars.discourse-cdn.com/v4/letter/f/47e85d/32.png) [@frosch45](https://forum.kirupa.com/u/frosch45)
#### Post date: [June 5, 2009, 1:22am UTC](https://forum.kirupa.com/t/i-am-literally-about-to-throw-my-computer-out-the-window/289815/1 "2009-06-05T01:22:38Z")

</div>

I’m getting the 1009 error with this actionscript 3.0 code:

import fl.transitions.Tween;  
import fl.transitions.easing.\*;

mc\_NavBarAbout.visible = false;

var beginningDelayText:Timer = new Timer(5000,1);  
beginningDelayText.addEventListener(TimerEvent.TIMER, timerDoneTextDelay);  
beginningDelayText.start();  
var textIn:Tween = new Tween(mc\_textMain, “alpha”, Strong.easeOut, 0,1,4, true);  
var parenthesisIn:Tween = new Tween(mc\_par, “alpha”, Strong.easeOut, 0, 1, 4, true);

function timerDoneTextDelay(e:TimerEvent):void{  
mc\_NavBar.visible = true;  
var fadeInNav:Tween = new Tween(mc\_NavBar, “alpha”, Strong.easeOut, 0,1,2,true);

beginningDelayText.removeEventListener(TimerEvent.TIMER, timerDoneTextDelay);  
}

any idea of how to fix it? I know its something to do with mc\_NavBarAbout, I isolated it to that, but I just don’t know what is wrong.

Thanks for the help.
