Split Images with Action Script

Can I split Images by Action Script? Watch this. Currently all pieces are done manually. Any solutions? thx 4 help.

This is extremely simple to do using actionscript.
Draw one square,convert to a movieclip,give it a linkage identifier mc.Go back to the main timeline and if you have a square, delete it.
open the actions panel,click the first frame and type
createEmptyMovieClip(“box”, 1);
columns = 20;
rows = 15;
for (var y = 0; y<columns; y++) {
for (var x = 0; x<rows; x++) {
i++;
box.attachMovie(“mc”, i, i);
box*._x = xbox._width;
box*._y = ybox._height;
box*.onRollOver = move;
}
}
function move() {
this.onEnterFrame = function() {
this._rotation += 2;
this._xscale = this._yscale -= 2;
if (this._xscale<10) {
removeMovieClip(this);
}
};
}

you`ll have to play about a bit with variables etc.

yeah thx, but this was not what i am searching for.

its not about squares each equal, i wanna split graphics like the background picture u know? so imagine they gray layer in the example as another model photograph which should be splitted by action script.

All you have to do is put your 2 model photos in different layers, convert to movieclips and then mask the top one with box.
say you call it clip1
just use the same code and put
clip1.setMask(box) after you have created the empty movieclip.

well, i dont think you can actually split an image like that. But what you can do is make a mask over your 2nd image. And when the blocks disappear, the other image shows up. It all depends on what you want to mask and unmask.

snap!

k thx this should at least help me to fulfill my task

if there are any other ideas for really splitting images please let me now.