How is this flash done?

Drakkon

Diamond Member
Aug 14, 2001
8,401
1
0
its nothing that hard really...looks like takes a few images, turns them into movie clips, stacks them in a random order, then through tweens moves them on top of one another
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
I'm not a flash programmer, but I can't see why it would be much more than this:

image.onClick() = bringToFront();
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
I'm not a flash programmer, but I can't see why it would be much more than this:

image.onClick() = bringToFront();
 

Drakkon

Diamond Member
Aug 14, 2001
8,401
1
0
in flash we have:
Code:
image.onPress = function () {
   image.swapDepths(image2);
}
:D