ActionScript 3.0 :: Changing The X Position Of Two MovieClip Instances At The Same Time?

Apr 26, 2011

This is a 2 part question really:

1) I'm trying to change the position of two different MovieClips instances to the same .x position. It works individually, but as soon as I put this code in, it says that it cannot assign it to a non reference value:

ActionScript Code:
coinArray[1].x && coinShadowArray[1].x = -591.5

2) I have a whole load of variables which are all going to different .x positions at the same event trigger - something similar to this, but there's around 30 of them:

ActionScript Code:
object[1].x = -560
object[2].x = 764.45
object[3].x = 700.45
object[4].x = 740.45

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Fluid Layout Stop Changing Resize Position When Movieclip Is At Certain Position?

Nov 19, 2009

I added a Menu_mc on my stage. Initially, this should be at the center of the stage and when I click on it, it will tween on the upper left corner of the browser. However, when I resize the browser, the Menu_mc goes back to the center of the screen.

I have tried separating a different actionscript file where it is specifically for initialization of the object and another one for resizing. And then when I call it on my main AS file it goes like this:

Code:
// Add the symbols to stage
var Menu_mc = new Menu_MC();
addChild(Menu_mc);

[code]...

But it seems futile.

View 6 Replies

Flash :: Professional - Animate - Invisible Hotspots Changing Position In Time

Jan 27, 2011

I'm creating sort of a game in Flash, which requires invisible hotspots changing their position in time, relative to the stage. The question is: can I simply keyframe the hotspot position and have it work, or is there something that I should consider?

View 5 Replies

ActionScript 3.0 :: Changing Position Of MovieClip Acting As Menu - AddChild?

Oct 10, 2008

I am trying to change the position of a movie clip which is acting as a menu and loading other swfs onto the stage. The problem is, is that the movie clip is also animated and when an swf is loaded the movie clip appears underneath the loaded swf. What method I should use to change the hierarchy of this movieclip.

View 2 Replies

Professional :: New Tweening In CS4 - Every Time Enter A Numeric Value To Position A Movieclip It Changes It

Feb 4, 2010

Is anyone else having trouble with the new tweening in CS4? Every time I enter a numeric value to position a movieclip it changes it! I'm getting very frustrated trying to do the simplist things - even when I move the clip manually it puts it back where it was. Am I missing something here?

View 5 Replies

ActionScript 3.0 :: Changing Y Position Results In Random Position

Nov 8, 2010

I've run into a new problem, this time with positioning. I've narrowed down the line that's causing it--"block.y = block.y + block.height;" in SetOfBlocks.shiftDown. When I take it out, no problem. But with it in, instead of just dropping each block down by a block height, the affected blocks sometimes move up, and also often move about randomly within the X axis--although their new positions always keep them lined up with the 'grid', which is to say, within multiples of the block height and widths.

[Code]...

View 3 Replies

ActionScript 2.0 :: RGB Changing Is Working But Not Changing All The Time

Feb 1, 2006

basically when you load the .swf it changed everytime u re-load it , i want it to keep on changing even when the user hasnt reloaded the image

[Code]...

View 1 Replies

ActionScript 2.0 :: Changing An Instances Color?

Jul 15, 2003

what is the command line for changing color and how do you specify, with color#?

View 6 Replies

IDE :: Changing Colors Of Two Instances In A Single Click?

Apr 8, 2009

Can i change the colors of two mc's if i just click one of them? i tried to put the other mc (btn02) inside the function but only btn01 changes color when i click it.

here's the code;

var controlcolor:Color = new Color(btn01);
var controlcolor2:Color = new Color(btn02);
btn01.onPress = function(){
controlcolor.setRGB(0x000000);
btn02.controlcolor2.setRGB(0x000000);
}

View 1 Replies

ActionScript 3.0 :: Changing Text Inside Of MC Instances From Library?

Jun 24, 2010

I have several instances of a movieclip which I placed on stage dynamically out of the library. Inside these movieclips I have a textfield. Is there a way that I can change the text of each instance independently?

Code:
var backing1:mcBacking = new mcBacking ;
backing1.x = 94;

[code].....

View 1 Replies

ActionScript 3.0 :: Test Several Instances At The Same Time?

Nov 4, 2009

I am randomly placing several display objects on stage using a for loop.My problem is that sometimes they overlap and i need to avoid this.While is pretty simple to check two given objects for collision using sprite1.hitTestObject(sprite2), i am wondering how can i test several instances at the same time. i think the logical thing is creating other loops and place my objects into an array but can't make it to work

the code looks like this:

[code]...

View 5 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

ActionScript 3.0 :: Setting A Position Of Movieclip Called Red X And Y Position?

Jul 3, 2009

setting a position of movieclip called red x and y position within a movieclip called background

Code:
background.redsquare.x = 300;
background.redsquare.y = 300;

comes up with TypeError: Error #1010: A term is undefined and has no properties.

setting a position of movieclip called red x and y position withen a movieclip called background

Code:
redsquare.x = 300;
redsquare.y = 300;

This works fine but how can that be when surely you must access the red withen the background rather then just accessing red?

View 3 Replies

ActionScript 3.0 :: Resizing Multiple Instances Of Same MC One At A Time

Jun 29, 2010

I'm trying to scale individual instances of a movie clip that I add to the stage one at a time. I can get it so that I can scale the most recently added, but I'd like to go back to the first ones and be able to scale them after I click on them. Essentially, how do I get a movie clip I click on to be the currentTarget - at least I think that's what I need.

Here is my code for adding the movieclips to the stage and being able to drag each one:
ActionScript Code:
var mc: _movieclip = new _movieclip();
var list:Array = [];
function addMC(event:MouseEvent):void{
for(var i:int=0; i<1; i++) {
mc = new _movieclip();
[Code] .....

I've tried using e.currentTarget and e.target sted mc in the scaleUp and scaleDown functions, but that just makes my buttons scale up and down, obviously. I've tried adding for loops similar to the addMC function to the scaleUp and scaleDown functions with no luck. Is there a way to tell the scaling functions to scale the movieclip I clicked on last?

View 4 Replies

Flash :: Changing The Position Of AIR-window?

Feb 20, 2010

I created a simple transparent app for Adobe AIR in Flash. It has not chrome, so now I need to make it draggable. How could this be done?

View 1 Replies

ActionScript 3.0 :: Set That Movieclip X And Position According To Stage Position

Nov 3, 2009

lets say i have a sprite on the stage and one movieclip inside it. now i want to tween or just set that movieclip x and/or y position according to stage position. so for example i want to set mc.y = - 100; (by which i mean -100 to stage, not sprite which mc is in.)

View 2 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 :: Changing Index Position On StartDrag()?

Nov 5, 2010

I am making a dragable map and there are few thing on top of the map(UI). When the map is double clicked it enables drag. But it's changing the index position, basically, it going over the UI. what's the easiest way to control the index position of the map? The click and drag event is controlled in mapZoom class.

this.addEventListener(MouseEvent.MOUSE_DOWN, enableDrag);
public function enableDrag(e:MouseEvent):void
{
this.startDrag();
}

View 1 Replies

ActionScript 3.0 :: Flip An Image Without Changing Position?

Jun 25, 2010

I know I can horizontally flip an image using ActionScript Code: image.scaleX *= 1;

However, this seems to move the left border of the image past its x coordinate.

I would like to make sure that the image stays within the same borders as before and that (x,y) is still the top left corner. Short of wrapping it in another image, is there a way to do that?

View 8 Replies

ActionScript 3.0 :: VCAM - Fireball's Position Keep Changing

Feb 11, 2011

i added a vcam in my game but it messes up the x and y position of my moveclips, when i pressed space to shoot fireball, the fireball's position keep changing. Everything is working right before adding the vcam. Does anyone have a solution to this or why does vcam cause this to happen?

View 2 Replies

ActionScript 2.0 :: Changing Position In Song Timeline?

Oct 2, 2004

how do u make a currently playing song (s1) move to a new spot in the song? s1.position=wure; were wure is the position in milliseconds i want it to be does not seem to work .

s1.stop;
s1.play(wure,0);

does not seem to work either

View 2 Replies

ActionScript 3.0 :: Dynamically Adding And Removing Multiple Instances Of Same MCs After Certain Time

Dec 14, 2009

After a little break in AS3 I'm back... and facing a problem. For a school project I'm trying to make a side scroller game in which the player automatically moves right and has to avoid branches.Basically, depending on how well you do your speed (var) gets updated. After certain 'distance' (fake of course, as the player stays centered) I would like a n instance of Branch_MC to appear. Also, when that instance's x property reaches -20 I would like it removed.I'd need approximately 135 branches so creating variables isn't really an option.

View 8 Replies

ActionScript 3.0 :: Create Multiple Instances Of This Movie Clip At Run Time?

Aug 3, 2010

I have created a movie clip which contains a button and a dynamic text field, instance name "anwTxt". In the dynamic text field I entered just the word "field" and set the the following in the properties window: multiline=true, wordwrap=true, font=16, font color=white.I then dynamically create multiple instances of this movie clip at run time, populating the text field from the contents of a user defined array. However if the text inserted from the array is to long it is simply cut off, instead of continuing on to a new line. Does anyone know why the field will not generate new lines, or have another solution to this issue?

Supporting info:

Code: Comments to explain
//inside a for loop[code]....

Using "holder2.anwTxt.multiline = true;" has no affect. If I attempt to alter the height or width of the textfield (ie.holder2. anwTxt. height = 400 I recieve the error "thats a read only property"

View 1 Replies

Actionscript 3 :: Removing Elements From Array W/o Changing Position?

Nov 15, 2011

I want to write a function which removes elements from an array of integers starting from the lowest values without changing the positions of the elements. Programming language is ActionScript3.

[Code]...

I know Array.NUMERIC and Array.DESCENDING would change the position of the elements, but I can't seem to figure out the logic on how to keep their positions.

View 3 Replies

Actionscript 3 :: Changing Mouse Pointer Position In FULLSCREEN?

Mar 16, 2012

Is it possible to change the mouse-pointer position in fullscreen. I want my mousepointer never hits the left or right side screen walls.. in case it does so, it resets itself in between somewhere.

A fake mouse pointer using a movieclip, won't solve this problem, because after-all i have to save the mouse pointer from hitting screen-walls.

View 2 Replies

Flash 9 :: Layers Position Changing And Disappearing On Test

Sep 24, 2008

Im new to flash and doing my best to teach myself.Im using CS3.I've already been working on this project for a while, and I don't know why this is all of the sudden happening.I have a text graphic that I want to create a motion tween with.I created a new layer for it, and drug it to the stage.If I tested the movie at that point, it looked fine and didn't move. If I tried to move the original keyframe, or added a motion tween, it would look fine when I played it on the stage, but when I go to "test movie", its either not on the screen at all, or its in a totally different position.

View 1 Replies

ActionScript 2.0 :: 4WD Animation - Movies Changing Position Without Command?

Sep 3, 2009

Well the animation works okay despite the convoluted timeline. You can select any transfer case mode by moving the slider switch. To shift into neutral from any gear, you press the neutral (N) button. To exit neutral, you press the neutral button again. If you shift into N from either 4WD Auto or 4WD Low, the slider switch jumps to 2WD even though there should be no movement and the animation goes where it is supposed to. It's been a long time since I've been able to work in Flash and it's so close to complete that this is driving me nuts.

View 0 Replies

ActionScript 2.0 :: Changing Frames Depending On Mouse Position?

Jun 8, 2004

I know this can't be to hard too achieve, but my actionscript skills aren't quite up to it yet.

- I have 5 frames within a MC.

- In this MC there is text saying "center", "left", "right", "up", "down" on each frame.

- All I want to be able to do is make the MC change to frame 3 "right" when my mouse moves to the right of the MC.

I know the script below is wrong, but would it go something like, this. Would I have to use angle and math or is there a simpler way to achieve this?

onClipEvent (mouseMove)
get x position
get y position[code]......

View 1 Replies

ActionScript 2.0 :: Flash 8 - MC Position Changing At First Zoom Attempt

Apr 12, 2008

I got an mc (named "img") on the stage. In order to zoom it, I'm using the following code:

Code:
myZoom = function (myDepth){
if (myDepth == "deep") {
myDepth = 4;
} else if (myDepth == "medium") {
myDepth = 8;
[Code] .....

Problem is, when I release on the mc it changes its original position to X=0,0 Y=0,0 as you can see here. Obviously, I want it to keep its starting position on the stage and zooming in and out from there.

View 2 Replies

IDE :: Changing An Object's Size Depending On Mouse Position?

Oct 6, 2009

I have a button symbol on my stage that I want to change size depending on where the mouse is on stage. ie: the y position of the mouse will make the x and y scale change (the symbol should get smaller as the mouse moves up the page and larger as it moves down - as if it is getting closer or further away).

View 1 Replies







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