Oh my god... IT BIT HIS HEAD OFF!

…lol

Hey Fellow Tech Geeks :trout: ,

Ok some major problems since the last time we talked.

Does neone know alot about mouse trails and random movement.

  1. I’m trying to create randomly moving objects that vibrate at the same time. This can be easily done by combining two of kirupa’s tutorials together (i.e. Flash MX random movement and Vibration tutorials.)… but how, heh.

  2. I need to create a mouse trail layer layer over this. But first i need to create the mouse trail.

Here’s the code I have so far:



onClipEvent (mouseMove) {
 i++;
 this.duplicateMovieClip("PPointer"+i, i+6);
 _root["Pointer"+i]._x = _root._xmouse;
 _root["Pointer"+i]._y = _root._ymouse;
}
onClipEvent (enterFrame) {
 if (this._name == "PPointer") {
 _visible=0;
 }else{
 this._alpha -= 5;
 this._rotation += 2;
 this._xscale += 5;
 this._yscale += 5;
 if (this._alpha <= 5) {
 removeMovieClip(this);
 }
 }
}

But it doesn’t seem to be working all to well. I’m sure i’m missing stuff.

  1. Also the biggest problem I’m having is combining scenes 1 and 2. And still mantaining the mouse and mouse trail over-layer.

Unforunatly, it is too big to attach here but i’d be happy to e-mail it to neone interested in helping out. I will attach the project that i have done so far, along with what scene 2 should look like (also immediatly after the flash movie ends (not suppose to loop like it does) it is suppose to initiate the main page)…

Again I’m sure i’m just missing alot of actionscript. Thx in advance for nebody who can assist in knocking out some of these minor bugs. :hair: