water effect what do you think
i was playing with this thing maybe i ll use it for a pirate game
the file size is 34kb but its not compressed though
http://magnetos.lazoom.com/pirates.swf
if anybody is interested on how i do it its quite simple
i got a big jpg picture i break it a part and idivide it in to 4 movie clips
then i add the code below on each mc i just slightly changed the decimal value for each mc so it waves at a different speed
thats it :)
code:
onClipEvent (enterFrame) {
// Creates a slight bobbing motion
z = 4*Math.cos(ang += 0.092);
_xscale = _yscale=z+100;
}