Hi
Anybody knows how the mouse efect is realised in Flsh on thanks
Anybody knows how the mouse efect is realised in Flsh on thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function followMouse() {
x += (_xmouse-x)/speed;
y += (_ymouse-y)/speed;
this.clear();
this.lineStyle(1, 0x000000);
this.moveTo(x, 0);
this.lineTo(x, 400);
this.moveTo(0, y);
this.lineTo(550, y);
updateAfterEvent();
}
//
speed = 10;
x = y=0;
this.onEnterFrame = followMouse;code]
function followMouse() {
x += (_xmouse-x)/speed;
y += (_ymouse-y)/speed;
this.clear();
this.lineStyle(1, 0x000000);
this.moveTo(x, 0);
this.lineTo(x, 400);
this.moveTo(0, y);
this.lineTo(550, y);
updateAfterEvent();
}
//
speed = 10;
x = y=0;
this.onEnterFrame = followMouse;