hi, ich habe ein tutorial gefunden mit dem ich nicht ganz klar komme.
ich bin soweit: http://www.kvr-clan.de/matrixcode.swf
ich will die zahlen in schrift ändern, d.h einen andren font einbauen.
außerdem müssen die zeichen kleiner werden und das gesamte ding soll eine fläche von 1020x180 einnehmen.
der code lautet bisher:
counter=1;
irows=22;
for (j=0; j<10; j++) {
for (i=0; i<irows; i++) {
duplicateMovieClip("clippy", "clippy"+i+j, counter++);
_root["clippy"+i+j]._x= 25*i; //set col distance to 25
_root["clippy"+i+j]._y= 25*j; //set row distance to 25
_root["clippy"+i+j].varyme=randno(); //fill up with a random number
}
}
clippy._visible=false; //hide original MovieClip "clippy"
function randno() {
imm=random(19);
if (imm>9) imm=" "; //fill up with blank space if out of number range*
return imm;
}
wäre nett wenn mir jemand helfen kann.
ich bin soweit: http://www.kvr-clan.de/matrixcode.swf
ich will die zahlen in schrift ändern, d.h einen andren font einbauen.
außerdem müssen die zeichen kleiner werden und das gesamte ding soll eine fläche von 1020x180 einnehmen.
der code lautet bisher:
counter=1;
irows=22;
for (j=0; j<10; j++) {
for (i=0; i<irows; i++) {
duplicateMovieClip("clippy", "clippy"+i+j, counter++);
_root["clippy"+i+j]._x= 25*i; //set col distance to 25
_root["clippy"+i+j]._y= 25*j; //set row distance to 25
_root["clippy"+i+j].varyme=randno(); //fill up with a random number
}
}
clippy._visible=false; //hide original MovieClip "clippy"
function randno() {
imm=random(19);
if (imm>9) imm=" "; //fill up with blank space if out of number range*
return imm;
}
wäre nett wenn mir jemand helfen kann.