How can i get sprite thats up开发者_StackOverflow中文版dates the image with this interface?
public class DinImageSprite extends Sprite
{
public function DinImageSprite() {
super();
}
public setImage(a:Class) {
}
}
Tanks
Edit your question and elaborate more on what you are passing into the set image function. Or you can be more vague so we can keep on guessing.
public setImage(a:Image) {
this.addChild( a );
}
精彩评论