如何用Flash制作拖拽型游戏课件
2024-07-30 15:52:32
1.如何用Flash制作拖拽型游戏课件
//代码写在第一帧上
var buttonNum:Number=10; // 拖拽的对象个数
var i:Number=0;
for(i=0;ilt;=buttonNum;i++)
{
_root[quot;对象名字quot;+i].onPress=function()
{
this.startDrag();
}
_root[quot;对象名字quot;+i].onRelease=function()
{
this.stopDrag();
}
}
元件的名字 : button1,button2,button3等就可以
你这样写累死
如果要添加对象的话
改对象个数就可以