PDA

View Full Version : Mouse Tail....


htsm
02-21-2007, 05:21 PM
1.Open new flash Document.
2.Go 2 Action script(F9)
3.Copy & Paste Dis

Text = "RCRC";
letters = Text.split("");
letterformat = new TextFormat();
letterformat.font = "Verdana";
letterformat.align = "center";
letterformat.size = "10";
spacing = 8;
speed = 3;
for (var LTR = 0; LTR<letters.length; LTR++) {
mc = _root.createEmptyMovieClip(LTR+"l", LTR);
mc.createTextField(letters[LTR]+"t", LTR, LTR*spacing, 10, 20, 20);
with (mc[letters[LTR]+"t"]) {
text = letters[LTR];
setTextFormat(letterformat);
selectable = false;
}
if (LTR) {
mc.prevClip = _root[(LTR-1)+"l"];
mc.onEnterFrame = function() {
this._x += (this.prevClip._x-this._x+5)/speed;
this._y += (this.prevClip._y-this._y)/speed;
};
} else {
mc.onEnterFrame = function() {
this._x += (_root._xmouse-this._x+10)/speed;
this._y += (_root._ymouse-this._y)/speed;
};
}
}


4.If u want 2 change da words, edit
"RCRC" [1st Line]

htsm
02-22-2007, 03:27 PM
SWF
http://d02.fileflyer.com/d/4425914a-43cb-432c-bf2b-cda16b22745d/0/RCRC.swf

fazaal24
02-22-2007, 03:32 PM
elaela gr8 job macho

htsm
02-22-2007, 03:36 PM
elaela gr8 job macho
THx.......

Tissaka
02-22-2007, 03:38 PM
ela ela ;):D

GNS
02-23-2007, 04:25 AM
:cool:

ashley
02-23-2007, 04:30 AM
nice