用flashMX可不可以做出简单的类似马里奥的小游戏

可以的。flash制作小游戏还是比较简单的但是要学习flash脚本,不过很简单的。找本教程,或者上网看看视频就能学会。在动作中添加类似这种代码:stop();

var i=0;

time=20;

score=0;

T=0;

onEnterFrame=function (){

T++;

if(i%5==0){

attachMovie("something","something"+i,i);

}

_root["something"+i]._x=550*Math.random();

_root["something"+i]._y=400;

_root["something"+i].onEnterFrame=function(){

this._y-=10;

if(this._y<-200){

this.removeMovieClip();

}

};

if(time==0||score>=100)

{

this.removeMovieClip();

}

_root["something"+i].onPress=function()

{

score +=5;

this.removeMovieClip();

};

if(T==12)

{time--;<br> T=0;<br> }

if(score>=100)

{delete onEnterFrame;<br> gotoAndStop("场景 4",1); <br> }

if(time==0)

{delete onEnterFrame;<br> gotoAndStop("场景 3",1);<br> }

i++;

} 推荐个:Flash教程:巧用脚本语言制作打字游戏/article/25/Article1202_1.html