On Sat, Jul 10, 2010 at 6:37 PM, Radioactivelizard
<[email protected]>wrote:
> originally i had it written like this
>
> package
> {
> import flash.display.*;
> import MyBSPProject
>
> public class main extends Sprite
> {
> trace("X")
>
>
> MyBSPProject
>
you need to initialize this class like this:
var p:MyBSPProject = new MyBSPProject();
and you may need to do other things depending on that does MyBSPProject
class do. For example, you may also need to added it to stage:
addChild(p);
if this doesn't work, tell us more about the MyBSPProject class.
- Rujia