Flash as3问题???
stage.focus=this;this.addEventListener(KeyboardEvent.KEY_DOWN,keyDown);functionkeyDow...
stage.focus=this;
this.addEventListener(KeyboardEvent.KEY_DOWN,keyDown);
function keyDown(e:KeyboardEvent):void
{
var keyCode:uint=e.charCode;
var str:String=String.fromCharCode(keyCode);
var txt:TextField=new TextField();
txt.text=str;
txt.x=Math.random()*550;
txt.y=400;
txt.addEventListener(Event.ENTER_FRAME,txtMove);
this.addChild(txt);
}
function txtMove(e:Event):void
{
var txt:TextField=e.target;
txt.y+=(Math.random()*400-txt.y)/10;
if(txt.y<1)
{
txt.removeEventListener(Event.ENTER_FRAME,txtMove);
this.removeChild(txt);
}
}
报错:1118: 属于 static 类型 Object 的值的隐式强制指令的目标可能是非相关类型 flash.text:TextField。var txt:TextField=e.target;
不明白,求解???
转型后,没有出错啦,但没有输出什么 展开
this.addEventListener(KeyboardEvent.KEY_DOWN,keyDown);
function keyDown(e:KeyboardEvent):void
{
var keyCode:uint=e.charCode;
var str:String=String.fromCharCode(keyCode);
var txt:TextField=new TextField();
txt.text=str;
txt.x=Math.random()*550;
txt.y=400;
txt.addEventListener(Event.ENTER_FRAME,txtMove);
this.addChild(txt);
}
function txtMove(e:Event):void
{
var txt:TextField=e.target;
txt.y+=(Math.random()*400-txt.y)/10;
if(txt.y<1)
{
txt.removeEventListener(Event.ENTER_FRAME,txtMove);
this.removeChild(txt);
}
}
报错:1118: 属于 static 类型 Object 的值的隐式强制指令的目标可能是非相关类型 flash.text:TextField。var txt:TextField=e.target;
不明白,求解???
转型后,没有出错啦,但没有输出什么 展开
3个回答
展开全部
e.target默认是object类型,不能直接传递给TextField
还要转型吧
function txtMove(e:Event):void
{
var txt:TextField=e.target as TextField;
txt.y+=(Math.random()*400-txt.y)/10;
if(txt.y<1)
{
txt.removeEventListener(Event.ENTER_FRAME,txtMove);
this.removeChild(txt);
}
}
这样你试试。
还要转型吧
function txtMove(e:Event):void
{
var txt:TextField=e.target as TextField;
txt.y+=(Math.random()*400-txt.y)/10;
if(txt.y<1)
{
txt.removeEventListener(Event.ENTER_FRAME,txtMove);
this.removeChild(txt);
}
}
这样你试试。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询