¿Es posible crear un juego sencillo tipo Mario usando flashMX?

Sí. Crear juegos pequeños en flash es relativamente simple, pero es necesario aprender a programar scripts en flash, pero es muy simple. Puede aprenderlo buscando este tutorial o viendo videos en línea. Agregue código como este en la acción: stop();

var i=0;

time=20;

score=0;

T=0;

onEnterFrame=función (){

T++;

if(i%5==0){

adjuntarMovie("algo","algo"+i,i);

}

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

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

_root["algo"+i].onEnterFrame=función(){

this._y-=10;

if(this._y<-200){

this.removeMovieClip();

}

};

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

{

this.removeMovieClip();

}

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

{

puntuación +=5;

this.removeMovieClip();

};

if(T==12)

{time--;
T=0 ;
}

if(score>=100)

{delete onEnterFrame;
gotoAndStop("Escenario 4",1
}

);

if(time==0)

{eliminar onEnterFrame;
gotoAndStop("Escenario 3",1);
}

i++;

} Recomendado: Tutorial en Flash: Utilice lenguaje de secuencias de comandos para crear juegos de mecanografía/article/25/Article1202_1.html