ActionScript 3.0 :: Swap 3 Movieclip Positions On The Stage Randomly So They Don't Randomise The Same Way?
Jun 11, 2010
I want 3 movieclips to change positions (swap places) on the stage randomly when I push a button and make sure they are always in different positions, so they don't randomise the same way.
cat, dog, fish
position_a,position_b,position_c
position_b,position_c,position_a
position_c,position_a,position_b
then loop and randomize the position they popup in again. So I can just keep on clicking the screen and they always change.
xxxa
xxbx
cxxx
I will have the 3 movie clips on the stage with instance names.
position_a
position_b
position_c
[code]....
View 9 Replies
Similar Posts:
Jun 23, 2009
I'm adding several similar movieclips to the stage with a 'for' loop. However, I'd like to increment the position of each movieclip when added on to the stage. I know exactly where I want each movie clip positioned as well. At the moment I just have a small 'for' loop which setups the movieclip. Like so...
[Code]...
View 1 Replies
Oct 31, 2011
I have somme mc's on the stage an I want thatto change on mc with antoher by clicking on them. For example if I click on mc1 and than on mc2 than they schould change the positions.
View 1 Replies
Jun 23, 2009
I'm adding several similar movieclips to the stage with a 'for' loop. However, I'd like to increment the position of each movieclip when added on to the stage. I know exactly where I want each movie clip positioned as well. At the moment I just have a small 'for' loop which setups the movieclip. Like so...
ActionScript Code:
for (var i:uint = 0; i<=8; i++)
{
zone[i] = new Zone();
}
I then have a long list adding and setting each mc position on the stage...
ActionScript Code:
stage.addChild(zone[0]);
zone[0].x=267.6;
[code]....
Although I've just had a thought as I was typing that last bit of code. Will I need to setup a for loop for each row...so the y position remains constant and I just increment the x value for each movie clip, and then repeat this for loop for the next row with the new y coordinate?
View 1 Replies
Feb 21, 2011
I am trying to figure out how to randomly place four cards on stage through external AS3, by arrays.For example:
Code:
var positionArray:Array = ["48.50", "125.50", "202.50", "280.50"];
function getXAxis():String
[code]......
View 0 Replies
Apr 15, 2010
i have a movieclip of a butterfly and needs it to move randomly on stage. Also, it should always be facing the side it�s flying at and never fly backwards (if it�s flying from left to right it should be facing right and the other way about)
View 3 Replies
Dec 20, 2004
i've one movile clip,i want several instances of dat movieclip randomly spread in the specified dimensions of stage.dis is simple but i want 2 start from one location then they should stop ramdomly and at radom palces wid random speed [URL] in above site ,if u click portfolio button u can see d red movieclip movement.
View 1 Replies
Jan 12, 2007
I built my first simple class which just makes a movieclip move around randomly on the stage. I wanted to know if the "class" experts can take a look at my code and let me know how I can improve. I want it so that it is the most efficient code and can be applied to any movieclip that I want as easy as possible.
[Code]....
View 5 Replies
May 25, 2007
I am having trouble on my Flash assignment which due on Monday, for the assignment, I am goingt to make a game, similar to the classic aracade game, Asteroids. They provided some basic code for the timing and rotation of asteroids, the behavior of the asteroids is appear randomly (but not moving) in the stage every five seconds with rotation, that's already been done by the code provided. [code]...
View 6 Replies
Feb 2, 2011
I'm creating a website within which I would like to achieve a menu system at the bottom of the page with a white band behind similar to this site:
[URL]
I have created the menu buttons and band but I can't figure out how to maintain their relationship with the edges of the browser window if it is rezised at any point during a user's visit (same as the site above).
I have been setting the position of the buttons and all other elements using, for example :
myBtn.y = stage.stageHeight - 100;myBtn.x = stage.stageWidth - stage.stageWidth + 50;
For publishing I use noscale, 100x100 percent, top-left justification.
View 3 Replies
Feb 11, 2011
I'm making a Flash animation in Flash CS4, using motion tweens to change positions and sizes of objects on stage. I frequently open the animation file and find a motion-tweened object has been moved to a new position from the one it was in when I last saved the file. All the frames in the tween seem to be affected. If I open the file again without saving, the object is still in the wrong position. I have had to redo or substantially correct a big tween several times. It's wasting time, and I can't rely on my work being in the state that I saved it last. I think the problem happens to the files when I open them after starting up Flash.
View 2 Replies
Apr 29, 2011
I have a black stage, and I use the following code to add images to the stage at random positions container.x = stage.stageWidth / 5 + Math.floor(Math.random() * (stage.stageWidth / 2)); container.y = stage.stageHeight / 5 + Math.floor(Math.random() * (stage.stageHeight / 3)); My maths is a bit terrible, so when I try moving the images about, I tend to just play with the numbers, not knowing what they are for. At the moment, the images all get placed roughly in the middle of my stage, which is basically what I want. However, If possible, I dont want the images so close to each other. At the moment, some images end up sitting on top of other images etc. Is there anything I can do to the code above to spread the images out a bit?
View 1 Replies
Jan 22, 2007
I have thumbs placed on the stage. I create an empty mc to load swf. But my thumbs disappear from the stage when I test the movie ( html or swf) if I settle the _ and _y position of the empty mc.why the emptymovieclip positions affect the positions of my thumbnails?
View 2 Replies
Apr 4, 2009
I am working om a navigation that should change/swap some instances clip to other ones from the library.[code]...
View 2 Replies
Apr 26, 2008
I have 9 movie clips which are all of the same object, they get larger or smaller as the mouse gets closer to their respective centers. The functionalilty for this is in an AS3 class file that extends flash.display.MovieClip.How do I go about swapping depths so that the largest one is in the foreground, I am new to AS3 and dont seem to be able to find a way of getting the depth of the movieclip I am currently inside (this) and if I try to access the stage to call swapChildren I get the following runtime error:
View 6 Replies
Feb 19, 2008
I've just added in a bubble effect I found here. At the moment the script creates bubbles randomly across the whole width of the stage. I want the effect to only occur between two x positions, say 50 and 845, on the stage. This is the Actionscript I have at the moment.
function bubbles(){
xpos = Stage.width*(Math.random());
xpos = Math.round(xpos);
_root.attachMovie("bubble", "bubble"+xpos, 999+xpos);
_root["bubble"+xpos]._x = xpos;
_root["bubble"+xpos]._y = 299;
} interval1 = setInterval(bubbles, 50);
View 7 Replies
Apr 19, 2007
How do i randomise and come to a stop at the random selected circle.URL...
View 4 Replies
Aug 27, 2009
how to attach two objects (movieclips), with different width and height properties into the stage, with random positions,without visual colliding.
View 6 Replies
Feb 22, 2011
i want to have the same movieclip showing up multiple times at different locations on the screen. i don't want to create multiple instances just cuz it seems less "efficient", so it'd be neat if there's a way to do this.essentially what i'm trying to do is have a the user see the same movieclip but with different things on top of the movieclips, and if the user does something to do the movieclip in one location (ie: click to change a tile in the movieclip), i want that to take effect in all locations.i could just add event listeners to each tile in all the movieclip to have the same effect independent of which movieclip you click the tile in, but i'm hoping i can avoid this.
View 1 Replies
Apr 26, 2004
I have a text movieclip (service_mc) on the stage for which I need to control 4 different _xpositions (_x = 0, _x = -700, _x = -1400, x = -2100) with 4 button mc's (btn_one, btn_two, btn_three, btn_four).
For these four buttons I already declared the Over, Out, Release and Restore stage in a function:
Code]...
What I like to accomplish is to control the _x positions of "service_mc" with the same buttons. I mean when btn_one is pressed service_mc should go to _x = 0, when btn_two is pressed the _x position from service_mc should change to _x = -700 etc, etc
How to integrate this possibility in the existing function?
View 10 Replies
Apr 26, 2004
I have a text movieclip (service_mc) on the stage for which I need to control 4 different _xpositions (_x = 0, _x = -700, _x = -1400, x = -2100) with 4 button mc's (btn_one, btn_two, btn_three, btn_four).For these four buttons I already declared the Over, Out, Release and Restore stage in a function:
Code:
for (var i in this) {
if (this[i]._name.substr(0, 4) == "btn_") {
[code].....
View 10 Replies
Jun 15, 2009
URL...I've written everything to detect when colors and teeth are selected, but I cannot figure out how to swap one movieclip for another. Right now I'm not using an actual image, just colored squares. I've set up a movieclip variable that is named each color. Basically I'd like to click a color on the bottom, then each time I click a tooth have it swap whatever movieclip is already there for the one of the color I selected.[code]
View 1 Replies
Apr 26, 2010
I've followed a few tutorials on Swapping depths, but they all refer to swapping the depth by using behaviors such as onRelease etc.
I would like to swap a MovieClip with another, but i want to do it at a given point on a timeline as opposed to doing it through a behavior so the swap isn't immediate.
I tried using the following on a keyframe this.swapDepths(second_mc); but nothing happened, the movieclip just runs through
I've uploaded my test file here:
[URL]
As you can see each movie clip runs when you click it, but i also want it to swapDepth (so the second movieclip is now on top to be clicked).
View 2 Replies
Sep 8, 2010
i want to drag a movie-clip from A to B via different positions and on stop drag , the movieclip must go back to initial position ,via the same way traversed by the mouse and with the same speed. i did an example but it's not taking exactly the same speed and i'm not using classes(you will find it attached). i have to use classes in AS 3.0.
View 3 Replies
Dec 24, 2011
I use swapChildren(mc_1,mc_2) to switch depth between 2 movieclips from the root level. Everything work just fine....
but when I create a container_mc and place the two movieclips into it then the 1120: nullobject reference error occurs?? container_mc.swapChildren(mc_1,mc_2);
View 9 Replies
Mar 29, 2010
I am trying to make a timer that swaps two movie clips, so that each two seconds? Here is the code:
var leftPillar:MovieClip = new Right();
leftPillar.x=150;
leftPillar.y=250;
leftPillar.width=550;
leftPillar.height=400;
The idea is that each 2 seconds the movie clip should change to which ever one is now visible. What is currently happening is that only one of the clips ever shows, (newLeftPillar).
View 11 Replies
Oct 25, 2010
I am trying to create a basic example. Using frames i know how to do that but i want to know how this can be done using as3. Using frame: A movieclip in which there are 6 frames: Red rectangle in first 3 frames Blue rectangle in last 3 frames
View 4 Replies
Feb 5, 2009
I put 2 container named mcContiner1, and mcContainer2
And
var mcImg1:MovieClip;
var mcImg2:MovieClip;
[code]....
I want to swap these 2 images, that is I want mcImg1 can be displayed in mcContainer2, and mcImg2 can be displayed in mcContainer1, of course the easiest way is I load these 2 picture again, but of course, it's not the answer I expected, also, we can move the movie clip to make the change, I still think it's not the best method, because it will make program too complex.
View 9 Replies
Dec 14, 2011
is there a jsx script that I can use to duplicated a nested clip in my library along with all of the sub movieclips and relink them?
View 0 Replies
Dec 22, 2006
Is it possible to make a MC in flash and then randomise where it appears within the movie?
View 7 Replies