Hallo.
Ich hab diesen Code für ein Spiel was ich erstellen will, von einem Tutroial kopiert, doch das Problem ist, dass das Tut für Flash 5 erstellt wurde. So sieht der Code aus:
In Action Script 2 funktioniert es leider nicht. Weiß jemand, was ich daran ändern soll?
Ich hab diesen Code für ein Spiel was ich erstellen will, von einem Tutroial kopiert, doch das Problem ist, dass das Tut für Flash 5 erstellt wurde. So sieht der Code aus:
PHP:
fscommand ( "allowscale", false );
myMap = [ [1,1,1,1,1,1,1,1],
[1,0,0,0,0,0,0,1],
[1,0,1,0,0,0,0,1],
[1,0,0,0,0,1,0,1],
[1,0,0,0,0,0,0,1],
[1,1,1,1,1,1,1,1] ];
var tileW = 64;
var tileH = 64;
function buildMap(map) {
var mapWidth = map[0].length;
var mapHeight = map.length;
for (var i = 0; i<mapHeight; ++i) {
for (var j = 0; j<mapWidth; ++j) {
this.attachMovie("tile", "t_"+i+"_"+j, d++);
this["t_"+i+"_"+j]._x = (j*tileW);
this["t_"+i+"_"+j]._y = (i*tileH);
this["t_"+i+"_"+j].gotoAndStop(map[i][j]+1);
}
}
}
buildMap (myMap);
In Action Script 2 funktioniert es leider nicht. Weiß jemand, was ich daran ändern soll?