Mouse trailer - text?

Hello,

Anybody knows where to get tutorial or code to create mouse trailer-text (text mask that follows mouse pointer)?

I’ve been looking for it, and they all seemed hard to understand.

thx alottt…

m4non

If you want the text to follow the mouse, I’d convert the text into a movie clip symbol and then use some code in the MC to make it follow the mouse:

onClipEvent (enterFrame) {
clip._x = _root._xmouse;
clip._y = _root._ymouse;
}

You can offsett the text to one side by adding or subtracting values from _xmouse and _ymouse.