ActionScript 3.0 :: Changing X And Y Coordinates Of A Tweened Object?
May 12, 2010
I have a string of about 5 movieclips that are tweened so that when you click left or right they slide in that direction. When you click on the movieclips themselves I want them to:
on mouse down - move to (y-5)
on mouse-up - move back (y+5)
this all works fine, however after I have clicked on one of the movieclips to make it jump, when I click left or right to slide them all over again they don't slide with the rest of the clips anymore?
View 1 Replies
Similar Posts:
Aug 26, 2011
How would I go about accessing the object I am moving with a tween through TweenEvent? or is this even possible? I think e.currentTarget will give me the tween object instead of the movieclip it is controlling, but I'm not sure.
Example:
ActionScript Code:
var tweens:Array = new Array();
[code].....
View 1 Replies
Aug 26, 2011
How would I go about accessing the object I am moving with a tween through TweenEvent? or is this even possible? I think e.currentTarget will give me the tween object instead of the movieclip it is controlling, but I'm not sure.
Example:
Code:
var tweens:Array = new Array();
var aryObjects:Array = {mc1,mc2,mc3,mc4};
function someFunction():void {
for(var i:int = 0; i < aryObjects.length; i++) {
[Code] .....
Is it possible to access current mc the tween is moving through TweenEvent here? If not possible, how would I pass the current object in the loop to the function? I had one idea of creating a function within the addEventListener line and passing both the event and current object, but it is not working for some reason.
Code:
tweens[i].addEventListener(TweenEvent.MOTION_FINISH, function done(e:TweenEvent){tweenFinished(e,aryObjects[i]);});
I know that Tweener or TweenLite would work well but I want to do this without using them.
View 3 Replies
Oct 25, 2009
I'm trying to update a dynamic text field based on the scaleY value of a mask that I'm tweening using TweenLite. Example: as the mask scales from 1 to 0, the date in my text field would change from 1970 to 1980. But it doesn't want to broadcast that scaleY property during the tween.
View 1 Replies
Mar 4, 2006
Now I know I can use the MCTween classes for this, but I want to figure it out myself
I have
Code:
MovieClip.prototype.blurTo = function(strength, size) {
//Blur and tween fn.
var myBlur = new flash.filters.BlurFilter(size,size,strength);
[Code].....
What I can't figure out for the life of me, is how to disable the blur when the object being tweened comes to a halt?
View 2 Replies
Oct 29, 2008
I have a few MovieClips that are motion-tweened via the timeline. I have a function that places a glow filter on the tweened movieclip. The glow works, but... the movieclip no longer moves. I found that if I tween via actionscript (AS3) that it does tween. However, I have about 1000 movieclips, all w/ different tween properties.Is there a (much easier) walk around or am I going to have to code for a few days/weeks?
View 1 Replies
Apr 15, 2011
explain why the lines drawn between the circles in the code below are not aligned with the centre of the circles? It seems the x and y properties of the circles are not up to date with their actual positions but how can this be?
import flash.display.Sprite
import fl.transitions.*;
import fl.transitions.easing.*;
var mcs=[];
[Code]...
View 1 Replies
Nov 4, 2009
I am trying to change the cursor with coordinates.
I have attached the cursor to the mouse, which is a Red Circle
what I want to happen is when it gets beyond the half way point on the screen for it to turn blue.
I can do it as a rollover but I need to make it to it with if statements and coordinates.
Below is the code I have used to attache the cursor to the mouse
circle_mc.onEnterFrame = function(){
this._x = _xmouse;
this._y =_ymouse;
Mouse.hide();
};
View 6 Replies
Nov 4, 2009
I have a simple Actionscript 3 project. The code is on the timeline:
ActionScript Code:
import pti.dmutility.layout.ConfigElement;
//this Class simply extends the fl.controls.Button with variables
Then I put some instances into the stage, and make them Drag&Drop. Here is the Dragging function. I want to remember the item's puck up position when clicked, I use ConfigElement's OldX and OldY properties:
ActionScript Code:
function dragStarterItem(e:MouseEvent):void{
var item = e.target;
item.OldX = item.x;
item.OldY = item.y;
item.startDrag();
item.addEventListener(MouseEvent.MOUSE_UP, dragStopperItem);
}
When I click on the item, the OldX and OldY gets the actual position of the item, BUT after dropping it somewhere else, and picking up it again, the OldX and OldY is still the same! Holds the initial position, and not changing to it's new location coordinates. Every instance remembers it's initial position only. Why not change every time I click? Why remembering the first click's position only?
View 7 Replies
Sep 22, 2009
I was thinking that it will be an easy task but something is not right. Here is what I am trying to do. I want to be able to run a function if the mouse is moved over certain areas of the movie clip on stage. Based on which area of the movie clip the mouse is moved I'd like to be able to trigger different behaviour. Below is the code which I was thinking shoud do it:
Code:
var posY:Number;
var mouseListener:Object = new Object();
mouseListener.onMouseMove = function() {
[Code].....
For some reason, the trace statement is ran always when the mouse moves regardless if it is over the movie clip or not. It also only shows the first trace statement. It is never chaged even if the mouse is in the different areas of the movie clip.
View 5 Replies
Sep 23, 2009
I was thinking that it will be an easy task but something is not right. Here is what I am trying to do. I want to be able to run a function if the mouse is moved over certain areas of the movie clip on stage. Based on which area of the movie clip the mouse is moved I'd like to be able to trigger different behaviour. Below is the code which I was thinking shoud do it:
ActionScript Code:
var posY:Number;
var mouseListener:Object = new Object();
[code]......
View 0 Replies
Jan 23, 2010
I'm new to Adobe Flash CS4. I'm making an animation of some fish underwater. I have 2 small fish motion tweened to follow a large fish from left to right. When I view the animation in full screen the small fish seem to be wiped off the screen at a certain point. The tween box continues to follow it's path but the symbol disappears. This only seems to happen with larger objects.
[Code]...
View 2 Replies
Oct 16, 2009
We have a client server architecture where a C++ server talks to Flash clients. I'm developing the server and would like to send through tcp an xy coord to simulate a button press where the receiving flash client would find the topmost visible object at that coord and send a mouse event to it such that we could simulate play without a human present. I'm told this is incredibly difficult, but it seems to me that there must be a way to do this. Am I off the mark? Or is there a mechanism in flash to iterate through all objects regardless of parent child relationships to find a visible button at an x, y coord and signal a press event?
View 2 Replies
Mar 28, 2011
if AS supports anything similar to hashes in perl (okay, it's been a long time since I've done any coding).If I want to get the x and y coordinates of an object I do it like this:
ActionScript Code:
thumbnails[0].getXY()[0]; // Get X
thumbnails[0].getXY()[1]; // Get Y
and I'd rather it look more like this:
ActionScript Code:
thumbnails[0].getXY(){"x"}; // Get X
thumbnails[0].getXY(){"y"}; // Get Y
View 3 Replies
Oct 7, 2011
I want to find out what object is at 200x300? is there a particular command for this?
View 2 Replies
Dec 7, 2011
I have a Flash project that I would like to export the coordinates of an object from. Ideally, I would like the position of the object for each frame in the animation.
View 1 Replies
Feb 17, 2003
I have an object that moves when the arrows are pressed but how do i display the coordinates of the object, x and y? I tried
this.x=this.x
this.y=this.y
and then two dynamic boxes called x and y but it doesn't work!
View 5 Replies
Jun 27, 2005
What is a good function to simply move an object to X and Y coordinates?I can find is actionscript that does movement plus other animations, like rotate and scale.I just want to let the user drag an object, but when they release it, that object moves back to certain X and Y coordiantes.
View 1 Replies
May 16, 2011
Basically there's an object in a movieclip. I want to find the location of that object in relation to the movieclip, not of the object's symbol. So when i and look at the x and y of it, it wont show 0, it will show the x and y location in the movieclip it's in.
View 4 Replies
Mar 11, 2011
There is a plane in my movie and it's moving (from starting point (x,y) to end point (x',y') coordinates in timeline). it's a very simple issue.And there is a popup that will be visible when user click on the plane mc.
I wrote the following code :
planepp.visible = false;
plane.addEventListener(MouseEvent.CLICK, planefunc);
[code]......
View 6 Replies
Oct 27, 2009
What is the simplest way to determine absolute object coordinates in AS3?
View 1 Replies
Jan 27, 2010
How do I get the 2D screen coordinates of a 3D object when using Papervision 2.0 (Great White)? I've read that following properties should return the screen coords but these always return 0.
[Code]...
View 2 Replies
Oct 7, 2011
I have the coordinates, i just need to know what is there. Is there a simple command that will return this to me?
View 1 Replies
Oct 24, 2011
I need to have a textbox displaying the x coordinates of an object during its motion tween. I know how to do it for individual frames but don't know how to add an eventListener to do it over the span of the tween.
View 9 Replies
Oct 9, 2009
I'm attempting to make a game which moves an object to certain x/y coordinates on the push of a button, but I can't figure out what would be needed.
View 1 Replies
May 27, 2010
i'm trying to trace the x and y coordinates from within a sprite. i've added a rectangle to the stage:
var rect:Rectangle = new Rectangle(10, 10, 200, 200);
addChild(rect);
rect.x = rect.y = 100;
adding a Mouse_Move event to the rect, i can trace mouseX and mouseY to receive the coordinates of the stage while moving over the rect, but how do i get the local x and y coordinates? so if i mouse over the very top left of the rect sprite, the mouseX and mouseY return 10 as the global coordinates, but how do i make it return 0 and the local coordinates of the sprite?
i assumed localX and localY was what i was looking for, but this doesn't work:
function mouseOverTraceCoords(evt:MouseEvent):void
{
trace(mouseX, mouseY, evt.localX, evt.localY);
}
View 3 Replies
Jul 29, 2011
When tracing the mouseX / mouseY or localX / localY coordinates of a display object, why does x start at 1 while y starts at 0? For example, I've drawn a simple 400 x 400 pixel sprite onto the stage with a MouseEvent.MOUSE_MOVE event listener that calls a handler function to trace the local coordinates of the mouse. The first, top-left pixel returns {x:1, y:0} and the last, bottom-right pixel returns {x:400, y:399}. Shouldn't both the x and y start and end with the same value? I'm not sure which makes more sense for a the first mouse coordinate (either 0 or 1) but it certainly doesn't make sense that they are different?
[SWF(width = "1000", height = "600", backgroundColor = "0xCCCCCC")]
import flash.display.Sprite;
import flash.events.MouseEvent;
var darkBlueRect:Sprite = createSprite();
darkBlueRect.x = 23;
[Code] .....
View 1 Replies
Jun 4, 2006
how do i change an object's _rotation based on the xy coordinates of another object (so it is facing it)?
View 3 Replies
Dec 13, 2007
What I want to do is link the blur filter with the coordinates of an object I have in a movie.Like as the x coordinate of an object gets larger the blur amount increases as well, and decreases as the x coordinate gets lower.
View 1 Replies
Mar 30, 2010
i've been working on a problem for a while now, which involves targeting the closest movieClip in relation to the x y coords of the mouse, I've attached a nice little acompanying graphic.Each mc added to the stage has it's own sub-class (HotSpots) which uses Pythag to measure distance from mouse. At this stage i can determine the closest value from my Main class but can't figure out how to reference it back to the movieclip... hope this makes sense. Below are the two Classes.My Main Class which attachs the mcs, and monitors mouse movement and traces closest value.[code]
View 3 Replies