I'm having problems with addChild() from a class.
I have a Ball class:
package {
import flash.display.Sprite;
import flash.display.MovieClip;
import flash.events.*;
import Achievement;
public class Ball extends Sprite {
//the image I want to add
var mc:MovieClip;
public function Ball() {
addEventListener(Event.ADDED, beginClass);
}
private function beginClass(event:Event):void {
mc = new BallImage();
addChild(mc);
}
}
}
Where BallImage is a movieClip in the library exported for ActionScript.
I add it to the main like this:
import Ball;
var littleBall:Ball = new Ball();
addChild(littleBall);
littleBall.x=100;
littleBall.y=100;
The image loads just fine, and I can see it on screen. But I get a stack Overflow error. Everything seems to work just fine... So I can't figure out what the problem is.
Edit: If I move the addChild() to the constructor of Ball, the error goes away. Still don't know what that means. Why can't I add it just when it loads?
BallImageclass? – rvmook Jan 10 at 16:52Ball) do you add on the scene?<br/> * How many images (instances of the classBallImage) do you add on a ball? It is possible that one ball has several images because you don't clear it.<br/> * How much weight does one image? – Emin A. Alekperov Jan 10 at 17:55