Skip to content

Instantly share code, notes, and snippets.

@lamberta
Created April 16, 2010 04:04
Show Gist options
  • Save lamberta/367988 to your computer and use it in GitHub Desktop.
Save lamberta/367988 to your computer and use it in GitHub Desktop.
Error #1009: Cannot access a property or method
of a null object reference.
Error #1034: Type Coercion failed: cannot
convert classes::Sprite@8b69259 to mx.core.IUIComponent.
var bouncingBall:UIComponent = new UIComponent();
bouncingBall.addChild(new BouncingBall(myCanvas.width,
myCanvas.height));
myCanvas.addChild(bouncingBall);
var bouncingBall:BouncingBall = new BouncingBall(myCanvas.width,
myCanvas.height);
myCanvas.rawChildren.addChild(bouncingBall);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment