ActionScript 2.0 :: X-axis Movement And Stop?

Jun 12, 2006

I'm working on a website and I have a movieclip that I want to move, but it would be easier to have actionscript control the movement. I need it to slide up along the y-axis for a certain amount of pixels and then stop, preferably even being able to set how long it'll take to go from point a to point b. does anyone know the script for this?

View 10 Replies


Similar Posts:


MX Movie Clip Y Axis Movement?

Jun 6, 2010

What I'm trying to do is something of a jumping character in a platform game. My problem is that no matter where I place the character, it's jumping to a certain height on the stage, rather than to a height relative to the movie clip's original position. As if I'm telling it to jump to a global y coordinate, when what I really want it to do is move it "n amount" in the y direction. Here's what I have so far, this is the code I placed on the movie clip itself.

//Constants
onClipEvent (enterFrame) {
jumpspeed = this._y/1.2;

code]....

View 2 Replies

ActionScript 2.0 :: Random X-axis Movement?

Jan 2, 2004

I'm trying to make an object to move randomly across x-axis and while it moves back and forth it also scales in width.

View 3 Replies

ActionScript 3.0 :: Random Movement Along X Axis

Apr 29, 2010

I'd like a movie clip to randomly move along the x axis whenever the mouse is clicked by using actionscript 3.0.

The movie clip is a city skyline I have in the background.

I can get it to sort of move when a mouse is clicked with this code

var skylineTween:Tween=new Tween(skyline_mc,"x", Regular.easeInOut, Math.random(),85,3,true);

View 3 Replies

ActionScript 3.0 :: Reverse Y-Axis Movement On Preloader

Feb 24, 2011

I am having trouble getting my preloader to fill from bottom-to-top instead of top-to-bottom. I moved my registration points to the bottom left on the symbol like suggested in a previous thread and it didn't help.[code]

View 2 Replies

ActionScript 2.0 :: Restricting The Movement Of An Object On Its X Axis?

Jan 23, 2009

I have an object that is being moved along it's x axis a certain amount each time an button is pressed. I want to be able to restrict the movement of that object along it's x axis so that it can not go past a certain point.

View 2 Replies

ActionScript 3.0 :: Random Easing/Movement Along X Axis?

Apr 29, 2010

skyline movie clip to move randomly along it's x axis whenever a mouse event happens.I can get it to ease in on a mouse event.The only code I've come across that seems to point me in the right direction is easingvar skyline:Tween=new Tween(skyline_mc,"x", Regular.easeInOut, 100,107,3,true);How do I get it to easeinout again to a random position on the x axis?.

View 2 Replies

ActionScript 2.0 :: Making Random Movement On Only X Axis?

Nov 25, 2002

well i've read the random movement tutorial but now i only want things to move randomly horizontelly; on the x axis. I'm pretty sure this is possible since most things are with flash so would anyone know what AS would be used? i've treid the one here: [URL] and deleting stuff that i think is not relevant. But i keep getting more and more erros each time i try to fix something...so anyone know what the AS would be? thx

View 1 Replies

ActionScript 3.0 :: StartDrag Horizontally - Constrain The Movement To X-axis Only?

Dec 1, 2007

So I have a Sprite and if using startDrag(), how do I constrain the movement to x-axis only? that is, move it horizontally? The free x,y movement code sample is here, directly from Adobe's livedocs: [URL]

View 14 Replies

ActionScript 2.0 :: 2 Buttons, One Large Image, X-axis Movement?

Apr 23, 2003

i have 2 buttons and one large image. this image has about 10 product images inside of the clip.here is the idea...i want to click on the move left or move right button, clicking on the button will move the MC containing the Product Images to the left or right.the thing i am not getting is normally when i move stuff on the X-axis i have more than one button and attach the actions to each button. but i only have two buttons now. one for left and one for right. now i am confused.

View 14 Replies

ActionScript 2.0 :: MovieClip Movement - Image Panning On X And Y Axis

Nov 6, 2006

I've mastered the way of image panning on an x asis for menus and so forth, but I am trying to get it working with an x and y asis. I mean like the main navigation in this example [URL].

View 4 Replies

ActionScript 2.0 :: Make Circular Movement Based On Mouse Axis?

Feb 28, 2005

I have a round arrow on stage (like half of a circle) and I want to make it turn left when mouse moves right and vice versa. How to accumulate this turning thing ?

View 2 Replies

ActionScript 2.0 :: Make Circular Movement Based On Ouse Axis?

Feb 28, 2005

I have a round arrow on stage (like half of a circle) and I want to make it turn left when mouse moves right and vice versa. How to accumulate this turning thing

View 2 Replies

ActionScript 2.0 :: Random Movement - Make A MC Rotate On It's Axis (registration Point)

Jul 13, 2003

I'm trying to make a MC rotate on it's axis (registration point)...I want it to rotate both clockwise and counter-clockwise at random speeds and random degrees of rotation. For example...CW fast 90 degrees...then CCW slower for 150 degrees...then CW really fast for 270 degrees...etc..etc..

View 9 Replies

ActionScript 2.0 :: Make Movie Clip Movement To Infinite Loop To X Axis?

Jan 21, 2008

I guys i am trying to make Movie clip movement to infinite loop to x axis.It should move like left to right on loop, without any jurk.i used this code. this is working fine to move left, but i am not getting how should i make it move on looop.

Code:
this.onEnterFrame = function() {
if (this.masked._x>-100) {
this.masked._x += -10;[code].............

View 6 Replies

ActionScript 2.0 :: Movement - How To Stop The MC

Oct 14, 2003

I'm doing a tut to learn animation through AS, but can't figure out how to stop the MC

[Code]....

View 14 Replies

ActionScript 2.0 :: Stop Movement Needed!

Aug 19, 2005

i need that the word stop moving when i make a rollover on it and in the rollout make the word continue with the falling, the fla file its attached

View 4 Replies

ActionScript 2.0 :: Stop This Movement At A _x Postiiton?

Oct 12, 2005

I have a movie clip that is moving dynamically with this code.

Code:
onClipEvent(enterFrame) {
speed = -5;
this._x += speed;
}

how to stop this movement at a _x postiiton.

View 4 Replies

ActionScript 2.0 :: Scripted Movement How To Stop ?

Mar 29, 2006

so i have a MC called "pala" and a button called "nappi" .. i have the following script in the first frame of the movie and everything works how it should, but how do i get the "pala" stop moving when it reaches the property -307 ?[code]

View 5 Replies

ActionScript 2.0 :: Stop The Movement At A Particular Location?

Jul 20, 2003

In moving with actionscript, how do you stop the movement at a particular location?

View 1 Replies

ActionScript 3.0 :: Stop The Movement Of A MC At Original Position?

Apr 21, 2010

I have a movieclip instance named "ground" i have it set up so that the ground moves constantly to the left as a scrolling BG. what I want is that when the user presses the "space" button, the ground moves down then back up in a a parabolic path. and it does. but I want the movieclip to stop moving vertically(make dy equal to zero) when it returns to its original y position. how can this be achieved?

Code:
package{
import flash.display.*;

[code].....

View 2 Replies

Actionscript 3 :: StartDrag / Stop Diagonal Movement

Nov 23, 2010

Is there a way to have a MovieClip with startDrag, but to force only horizontal and vertical (i.e. not diagonal) movement?

View 4 Replies

ActionScript 2.0 :: Stop The Movement After A Defined Period?

Mar 19, 2003

Avoiding tweening what method can I use to get a shape to move from off the stage on the right to a position centre stage. I want to control the speed of the movement and I want to stop the movement after a defined period.

I have tried to use for loops and if conditionals but neither work.

I want the movement to execute on a button press.

View 3 Replies

ActionScript 2.0 :: Stop A Alpha Fade In Or A Movement?

Nov 11, 2006

when I use this code it just infinitly fades in

[Code]...

View 3 Replies

ActionScript 2.0 :: Random Movement Stop On Start

Mar 11, 2009

i have 10 pics on the stage and i need to give them random movement and swepdepth for each image when i rollover.my problem is that the random movement stop on the start this is my code:[code]

View 6 Replies

ActionScript :: IDE - Movement - Stop Box At A Certain Point On The Stage

Jun 30, 2009

I've done the tutorial that makes the box move across the screen, but i need to know how to make it stop at a certain point on the stage, can anyone tell me the code for this? This is the code I have so far:

[Code]...

View 2 Replies

ActionScript 2.0 :: Play To And Stop (character Movement MC)?

Jul 16, 2004

I have a MC which is a lady that raises her arms up and down. From the main timeline i want to tell that "ladyMC" (also sitting on the main timeline) to play to and stop on specific frames. I have tried it two different ways but am obviously missing something. The first way i tried just using an if/else and getting the current frame #.

Code:
if(lady._currentframe < 22){
lady.play();

[code]....

View 2 Replies

ActionScript 2.0 :: Movement - Stop Moving Object

Oct 11, 2004

i need a movement script that makes an object move to where i want it to then stop. i cant seem to find a script for this anywhere.

View 4 Replies

ActionScript 3.0 :: Cannot STOP The Movement In Sliding Thumbs Menu

Sep 14, 2010

My sliding, gliding thumbnail menu is located at the bottom of the page, and it reacts to the cursor movements as intended. However if I were to move the cursor around the page somewhere on the top the menu is still reacting to the cursor movements. I would like it to become inactive once the cursor off the menu. You can check the page at [URL] and then go to "applications".

The menu consist

[Code]....

The position of the cursor moves the Sliding Gliding animated menu even if it is not on bgClip_mc. For the first time it works as it should but once it is activated and I move the cursor away from the bounding parameters of the bgClip_mc the Sliding Gliding Menu is still reacting to the mouse movements.

View 2 Replies

ActionScript 2.0 :: Temporarily Stop Movement Of Gallery Thumbnails?

Oct 24, 2010

I would like to stop movement of the thumbnails of the Gal100 gallery when my pop-up container "MC" was loaded, so that mouse moving over loaded container "MC" doesnt affect the position of the thumbnails in the gallery beneath it (i'd like for the thumbnails position to remain the same after closing the popup container).

how to do it with AC ?

i'm also wondering why the movie clip "MC" is not listed in the AC properties window as any other movie clip which contains an AC code ? it's simply not there. so, the only way to see the code is actually to select the ac frames of the "MC" movie clip.

View 4 Replies







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