"A educação é a arma mais poderosa que você pode usar para mudar o mundo. (Nelson Mandela) "

quinta-feira, 1 de agosto de 2013

Flash: Efeito de texto no Mouse

Olá!!
Vamos aprender a fazer um divertido efeito de mouse, com as letras de um nome seguindo o cursor para onde ele for.
Basta seguir as instruções e se divertir ^^ .
1º Crie um novo documento no flash com o tamanho e FPS que achar melhor.
2º Click no frame 1 e vá no painel de Action Script.
3º Copie e cole o código abaixo e divirta se!!
Text = “WarezDesign.com”; // seu texto
letters = Text.split(“”);
letterformat = new TextFormat();
letterformat.font = “Comic Sans MS”; // fonte a ser usada
letterformat.align = “center”; // alinhamento
letterformat.size = “14″; // tamanho da fonte
letterformat.color = 0×550099; // cor da fonte
letterformat.bold = true; // negrito
spacing = 6;
speed = 4;
for (var LTR = 0; 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;
};
}
}
►Resultado final◄
Testado em Flash CS3 e CS4 – AS2

Nenhum comentário:

Postar um comentário