Actionscript 3 :: Move Movieclip Position Opposite Of Mouse Coords On Other Movieclip

Jan 26, 2011

Okay I have a script in which I have added an image to the stage. It is absolute centered. I then have another with is on top but much bigger. I would like the big image to move opposite of my mouse position on the smaller image. ie: cursor is on bottom left corner the bottom left corner of the larger image is in the same spot. And the same thing for any other area.

I have tried many different ways but to no avail. I have done research but no one has been able to give me a solid answer. Anyone know of a way to accomplish this. Keep in mind this it needs to work regardless of the image size.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Moves A Movieclip To The Opposite Y Position Of The Mouse Pointer?

Oct 11, 2007

I have a basic script that moves a movieclip to the opposite Y position of the mouse pointer:

Code:
var cP = this.createEmptyMovieClip("centerPoint", 1);
cP._x = Stage.width / 2;
cP._y = Stage.height / 2;
var myBox = cP.attachMovie("boxMC", "myBox", 2, {_y:cP._y});
cP.onMouseMove = function() {
myBox._y = (cP._ymouse * -0.9);
};

Everything works great, but I'd really love to be able to ease the box to it's Y position, rather than moving it to it's final position immediately. I'm having a difficult time with it because the box is moved based on the mouse position, which obviously doesn't ease.

View 2 Replies

ActionScript 2.0 :: [Flash CS3] Move A Movieclip Based On Mouse X Position

Feb 11, 2009

I need to move a movieclip based on mouse x position. Like this site [URL] - Which I built using a flashloaded app, but I need more control in this project so I'd like to code it without the app. Basically, I have an image of a boy (left) and a girl (right) and I want to move the boy slightly toward the girl when the mouse goes right and slightly away when the mouse goes left. But only about 25-50 pixels in each direction.

I've cobbled some code together from google searching and rough ideas, and it works in a way, but the boy jumps about 400 pixels to the left on the initial mouse move and then floats a bit too far right and left from there. Here's what I've got on the boyMC:

[Code]...

View 2 Replies

ActionScript 2.0 :: Moving Movieclip In Opposite Direction Of Mouse Movement?

Jan 3, 2010

I am about to make a gallery where all the pictures are ligned up, in a vertical row collum.I wan to make the Movieclip move in the opposite direction of my mouse movement

View 2 Replies

ActionScript 3.0 :: Move The Image In The Opposite Direction Of Mouse?

May 2, 2009

Does anyone know the algorithm used in this image panner [URL]

How to move the image in the opposite direction of mouse.

View 14 Replies

ActionScript 3.0 :: Movieclip To Move To The Position Of Each Of Buttons From Any Position?

May 13, 2010

I'm hoping someone can solve this headache. Basically, I want a movieclip to move to the position of each of my buttons from any position along my x axis. Therefore, the movieclip needs to 'flip' to face the way it is traveling.At the moment I have the movieclip moving to the mouse x axis when I ROLLOVER the button and stop following the mouse when I ROLLOUT but the code won't flip the movieclip so I must have something wrong...

btn.addEventListener(MouseEvent.ROLL_OVER,followCa t);
btn.addEventListener(MouseEvent.ROLL_OUT,stopCat);
btn02.addEventListener(MouseEvent.ROLL_OVER,follow Cat);
btn02.addEventListener(MouseEvent.ROLL_OUT,stopCat );

[code]....

View 0 Replies

Get 3D Coords On Some Plane For 2D Mouse Coords In Flash With Away3D?

Aug 1, 2011

Waht is the right way to get 3D coords from 2D mouse coords using Away3D. (version 3.6.0) It's ambigoius problem in general, so there is restriction that 3D point belongs to some fixed plane.

There are some examples with camera.unproject and plane.getIntersectionLineNumbers methods, but they don't work if camera is rotated or plane is not trivial.

View 1 Replies

IDE :: Way To Get 'MovieClip' To Move From Position A In Keyframe 1 To Position B

Feb 3, 2010

What i'd like to do is have a menu/site map that adjusts when you click on a certain icon. For example, I have a AS3.0 flash file with, say, 5 keyframes with 5 buttons that are in different positions on each key frame. The buttons are set to gotoAndPlay the various keyframes. I can set up a tween that links frame 1 to 2, 2 to 3 etc. but what I would like is a tween from, say, 1 to 3, then 3 to 5, then 5 to 1 - basically in a random order rather than sequentially through the key frames. I could set each of these tweens up individually but the site is for a portfolio that I would like to keep adding to and to do this individually would mean an ever increasing amount of tweens.Basically, is there a way to get a 'MovieClip' to move from Position A in keyframe 1 to Position B in another keyframe without a set of tween frames? I'm sure this is simpler than I am making it sound but I don't seem to be able to work it out.

View 1 Replies

ActionScript 3.0 :: Move MovieClip Position When Button Clicked

May 22, 2010

I have a simple arrangement where a movieclip moves to a new x y position when a button is clicked. I want the movieclip to slowly move or 'glide' there instead of jumping straight to the new position.

Heres the code..
btn_up.addEventListener(MouseEvent.CLICK, moveUp) ;
function moveUp(event:MouseEvent):void {{
allcontent.x += 200;
allcontent.y += 200;
}}

View 1 Replies

ActionScript 2.0 :: Script That Makes A Movieclip Move To A Certain X Position?

Nov 9, 2005

I'm looking for a script that makes a movieclip move to a certain x position (_x = -563) and when it reach that x position it should jump back to its original position (_x = 0 and start moving again to _x = -563

View 2 Replies

ActionScript 2.0 :: MovieClip Cannot Get Back To Coords It Was Before

Feb 25, 2005

If you check my site I'm trying to make [URL] and click one of my buttons the menu/logo/music/.. will move to the coords..

Here's the script I used:
1st frame:
speed = 5;
Frame in which the action will take place:
MovieClip.prototype.move = function() {
[Code] ....

But if you try to click for example on the "contact" button and after "about" button you can see that my music button (right side) is closer to the main border... so why the mc's coords are little off if you had clicked different button before (or if the mc's coords are different than before)? [note that I need to use Math.floor and Math.round to make it look sharp and that the speed value is for all MC's number 5]. Also my MC location is set up to hole pixels..

View 14 Replies

Flash :: Center Movieclip At Mouse Position

Oct 22, 2011

I am using Action Script 3.0 to animate an instance (MovieClip class) to follow the mouse positron the thing is, the left corner of the instance follows the mouse courser. Now there is a cross on the to left corner and my guess would be that the mouse follows that cross, but i can not change the position of the cross within the instance/ original object. Does anyone know how to make the center of that instance follow the mouse cursor?

View 2 Replies

Flash :: Center Movieclip At Mouse Position?

Oct 9, 2008

am using Action Script 3.0 to animate an instance (MovieClip class) to follow the mouse positron the thing is, the left corner of the instance follows the mouse courser. Now there is a cross on the to left corner and my guess would be that the mouse follows that cross,but i can not change the position of the cross within the instance/ original object.Does anyone know how to make the center of that instance follow the mouse cursor?

View 2 Replies

ActionScript 2.0 :: Rotating MovieClip Towards Mouse Position

Feb 12, 2005

Any way to rotate a movieclip to face the mouse location?

View 1 Replies

ActionScript 3.0 :: Move Mouse Erases Movieclip?

Aug 23, 2011

I'm doing a game where there are 12 movieclips (cards) on the screen that are draggable. The cards can also be turned around (using 3d rotation).

My client is experiencing problems: Cards sometimes stick to the screen and can't be dragged. Moving the cursor over the card erases it (like negative masking). The game has no features that are even remotely close to this issue.

View 2 Replies

ActionScript 2.0 :: How To Get MovieClip To Move On Mouse Click

Apr 20, 2004

How do I get a movieclip to move to the mouse when it is clicked and released and have it rotate in the direction that it moves?

View 5 Replies

ActionScript 2.0 :: How To Get MovieClip To Move With Mouse Direction

Apr 20, 2004

How do I get a movie clip to move to the mouse when it is clicked and released and have it rotate in the direction that it moves?

View 5 Replies

ActionScript 1/2 :: Mouse Position Inside A Movieclip Area?

May 20, 2009

how can i test the position of the mouse inside the area of a specific movieclip WITHOUT using rollover and rollout events?
 
the movieclip is the irregular shape (star)
 
i need to do some action according to the position of mouse (inside/outside of the movieclip area) but i can not use rollover event because i have a button placed over the movieclip.

View 1 Replies

Flash :: Ease Rotation And Position Of MovieClip To Mouse?

Jun 25, 2010

Essentially what I'm trying to do is nearly the same as this: http:[url].......However I'd like to ease/tween the movieclip position and rotation to the mouse position.The main issue I see is trying to get the current movieclip rotation and the target rotation,then tween it cockwise or counterclockwise from current to target.The way a movieclips rotation uses positive and negative numbers throws it off.If you just want to lock the mc rotation to the mouse rotation its fine, but once you try to tween it you run into difficulties. So the end effect would be like if you were to draw imaginary clockwise circles around the object, it should just keep rotating clockwise towards the mouse. Then if you started going counter clockwise it should just keep easing counter clockwise to the mouse.

View 1 Replies

Actionscript 3 :: Rotate Movieclip On Different Axis On Mouse Position?

Mar 27, 2011

I am looking for direction to this old UFC effect - [URL] that appears on the main page. It is movieclips rotating on different axis based on the mouse position. So far I have found this script:

stage.addEventListener(MouseEvent.MOUSE_MOVE,EnterFrame);
function EnterFrame(e:Event)
{
mc.rotation = (180*Math.atan2(mouseY-mc.y,mouseX-mc.x))/Math.PI + 90;
}

But this only rotates on x and y. What's a way to approach this effect?

View 1 Replies

ActionScript 3.0 :: Ease Rotation And Position Of MovieClip To Mouse

Jun 25, 2010

I'd like to ease/tween the movieclip position and rotation to the mouse position.The main issue I see is trying to get the current movieclip rotation and the target rotation, then tween it cockwise or counterclockwise from current to target. The way a movieclips rotation uses positive and negative numbers throws it off. If you just want to lock the mc rotation to the mouse rotation its fine, but once you try to tween it you run into difficulties. So the end effect im looking for would be like if you were to draw imaginary clockwise circles around the object, it should just keep rotating clockwise towards the mouse. Then if you started going counter clockwise it should just keep easing counter clockwise to the mouse.

View 3 Replies

ActionScript 3.0 :: HitTest For Mouse Position Over A Bitmap Inside A MovieClip?

Dec 1, 2009

This seems like it should be simple, but... I've been trying to figure out how to do the following, and I can't seem to make it work. It all works except for the hit test part. I have a working drag and drop application. I need something different to happen when the user drops an object while the mouse x,y is, or is not over a certain (very irregularly shaped) bitmap inside a movieClip. how to do this? I have found some complicated ways to hit test between 2 bitmaps, but not 1 bitmap and mouse x,y.

View 3 Replies

ActionScript 2.0 :: Show Hide Movieclip In Mouse Cursor Position?

Jan 24, 2012

I want to ask how to show/ hide movieclip by one click in the same position of the mouse cursor .

The idea is that i have 10 square shapes and i want to click one of them to put a small circle inside the square and do the same with the other squares .

View 4 Replies

Actionscript 3.0 :: Scrolling Thumbs - When I Move The Mouse To The Left, The MovieClip.x = 0?

Jan 18, 2010

Im making a horizontal thumbnail-scroller. Thumbnails are loaded in to a MovieClip and placed side-by-side with some spacing.When I move the mouse to the far right of the stage, the last thumbnail is to the far right on the stage, and when I move the mouse to the left, the movieClip.x = 0.

I can do this and have a script ready. BUT: If I would like the first thumb to be at 0 when my mouse is 100px from the left side and the last thumb to be to the far right of the screen when my mouse is 100px from the right side, how would I make this happend?I've spent $30 on scripts from activeden and 5 hours on trying to make this happend, but I just CAN'T find the solution..

Code: Select allfunction moveScrollerThumbs(e:Event):void
{
if (mouseY > box.y && mouseY < box.y +box.height)[code]....

View 2 Replies

ActionScript 3.0 :: Moving Playhead Inside MovieClip Based On Mouse Position

Dec 16, 2009

I am having difficulty with getting the playhead to move inside a movieclip based on the horizontal or vertical position of the mouse on the screen. I can get the horizontal motion to move the playhead, but I can't get the vertical movement to do the same. I have attached the document class .as file for it.

View 2 Replies

ActionScript 2.0 :: Force A Mouse Follow Movieclip To Snap To A X Y Position If It Reaches X Y Boundaries?

Mar 30, 2009

How would you force a mouse follow movieclip to snap to a x y position if it reaches x y boundaries or perhaps if a button is released the movie clip snaps to a x y position? Of course if the mouse returns to x y boundaries I'd like for the movie clip to follow again.

Right now this is the code I'm using to make the movieclip follow the mouse within x y boundaries:

Code:
onClipEvent (load) {
_x = 0;
_y = 0;

[code]....

View 4 Replies

ActionScript 3.0 :: Scrub That Manipulates A MovieClip, But Tracks A Change In Mouse Position From Click To Release?

Oct 25, 2010

The other is a scrub that manipulates a MovieClip, but tracks a change in mouse position from click to release, instead of tracking the changes in position of a slider playhead. But here is the download for that one:(sorry not a link due to not having over 50 posts yet, you will need to copy and paste)I have found plenty of AS1+2 ways of doing this idea, yet just haven't found any solid AS3 versions.I am currently in a class to learn Actionscript and have tried to figure out this problem yet I am just not yet to that level.

View 0 Replies

ActionScript 2.0 :: Make A Movieclip In Flash That Makes Buttons Spin Around A Point Depending On The Mouse Position?

Oct 9, 2007

I have recently followed a tutorial to make a movieclip in flash that makes buttons spin around a point depending on the mouse position. I have made my own version off this and would like to use it in a full flash website that i am making at the moment.

The only problem that i am having is with aligning this clip and as it is made up of script i cant physicly drag it to were i want it. I understand how to alighn this with x/y positioning but when i preview the flash in a web browser it is positioned correctly but then when i 'full screen' the browser this clip jumps about 4 inches down the page.

View 1 Replies

IDE :: CS3 - Possible To Move The Mouse To A Certain Position?

Jan 27, 2009

I have a panning background with buttons in it. It would be nice if when the button is pressed i could move the position of the mouse so that the movie pans and catches up with the new position. Is this possible?

View 4 Replies

Thumbnail(S) Move On Mouse Position?

Jun 10, 2010

i want to make my thumbnails move opposite of where the mouse is.so for example, if i move the mouse up the thumbnail moves down, if i move the mouse left, the thumbnail goes right etc...im trying to google this but i dont even know what its called so im not getting good results, or rather TOO many varied results lol. i was told on another forum that its called parallax menu or something like that but when i research it, i get millions of pages refering to this type of effect (they have other that move vert/horiz too)

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved