Hello, I'm quite new at flex and have been following a game tutorial. I've created a class named Bounce (Bounce.as) but when I try to compile, I get the above error. I've been searching forums and help, but the only people who seem to get this error is with HTTPServer. How can I specify to actionscript 3.0 that I want to use a created class (Bounce) instead of a mx class (mx.effects.easing:Bounce)? How would I formulate that?
public function startup():void
{
lastFrame = new Date();
new Bounce().startupBounce();
}
Thanks for any help or pointer.