V-cam

Started by: XaioShadow | Replies: 4 | Views: 548

XaioShadow
2

Posts: 1,735
Joined: Feb 2012
Rep: 10

View Profile
Jul 16, 2012 1:23 PM #698773
Hi guys i was just wondering if any of you could send me the Fla. for a V-Cam that follows your mouse
like in http://www.fileize.com/view/e47a3ddb-09c/ that

thx everyone ^^
Drone
2

Posts: 11,650
Joined: Mar 2012
Rep: 10

View Profile
Jul 16, 2012 1:38 PM #698777
That's probably some kind of code you have to input, not a different v-cam.
Zed
2

Posts: 11,572
Joined: Feb 2009
Rep: 10

View Profile
Jul 16, 2012 1:49 PM #698787
A vcam isn't much more than a mass of code to begin with. Someone could send him a .fla with the code attached to the vcam, or someone could post the code and he could attach it himself. No real difference.
S-Critical
2

Posts: 2,848
Joined: Feb 2012
Rep: 10

View Profile
Jul 16, 2012 4:21 PM #698891
are you talking about the DDC v-cam? im not sure but maybe ask jeff for it
Kingster7
2

Posts: 719
Joined: Jun 2012
Rep: 10

View Profile
Jul 19, 2012 6:30 AM #700574
Try putting this code on your v-cam,
It doesn't work exactly like your link but it does follow your mouse :/


onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
}
onClipEvent (mouseDown) {
this.gotoAndPlay(2);
}