ActionScript 2.0 :: Adjust The _x And _y Area Positioning Of This Set Of Duplicate Movieclips?

Jun 25, 2003

how can I adjust the _x and _y area positioning of this set of duplicate movieclips? 710 x 143 are the dimensions I would like the duplicateMovieClip to take place, but it is not the positioning. How can I fix this?

[AS]
duplicateMovieClip (flower, "mc"+i, i);
setProperty ("mc"+i, _x, random(710));

[code].....

View 11 Replies


Similar Posts:


ActionScript 2.0 :: Duplicate MovieClip Within Small Area

Jun 25, 2003

On the enter frame of my movie I want to take a movie clip in my library and have 3 instances of it move randomly within a small area (~ 50 x 50 pixels). I also want the alpha to change to 0 and back to 100 every couple of seconds. Should I be using duplicateMovieClip or should I use something else? I'm trying to create something similar to how the leaves react on this site [URL].

View 2 Replies

ActionScript 2.0 :: Positioning The Dynamic MovieClips?

Jan 9, 2009

Been working w/ Flash for some time now, but mainly on the timeline and only a bit with AS. I am working w/ a tutorial:

[URL]

This particular portion of code is supposed to center the movieClip to the stage, but it is not working for me

target_mc._x = (Stage.width - target_mc._width)/2;
target_mc._y = (Stage.height - target_mc._height)/2;

I added some animation to it as well here:

var xScaleT:Tween = new Tween(movieClip, "_xscale", Elastic.easeOut, 50, 100, 3, true);
var yScaleT:Tween = new Tween(movieClip, "_yscale", Elastic.easeOut, 50, 100, 3, true);

And added this part just in case the tween was affecting it:

var xPosT:Tween = new Tween(movieClip, "_x", 0, (Stage.width - target_mc._width)/2, 3, true);
var yPosT:Tween = new Tween(movieClip, "_y", 0, (Stage.height - target_mc._height)/2, 3, true);

But it only fixes the centering on the y-axis.

View 3 Replies

Actionscript 3.0 :: Positioning MovieClips From A Loop?

Sep 6, 2009

Im working on an Xbox Live flash gamercard. Ive ran into a problem. I can't position each of the MovieClips ive genereated from the loop. I get the error:

Code: Select all1120: Access of undefined property rpg0.
1120: Access of undefined property rpg1.
1120: Access of undefined property rpg2.

[code].....

View 1 Replies

ActionScript 3.0 :: Creating A Visual Template Of A MovieClips In A .fla File For The Designer To Adjust And Tweak?

May 1, 2009

I'm thinking of creating a visual template of a movieClips in a .fla file for the designer to adjust and tweak.  Then in flex builder 3 (actionscript project) I load in that .swf file and use the references to the movieClips to adjust location, size and color of objects...  Hope that made sense...
 
Along those lines... is it possible to grab the graphic information of an entire movieClip?  Let's say there's a movieClip with a red 4 pixel line on the top then 2 pixels further down there's a grey rectangle that's 400 pixels high.  These were drawn with vectors in the flash environment.

View 6 Replies

ActionScript 2.0 :: 100 Moving Circles Duplicate It And Then Move It In Specific Area?

Apr 26, 2004

can i do this in flash?i have a main mc and i want to duplicate it and then move it in specific area.

View 12 Replies

ActionScript 2.0 :: Duplicating And Positioning Movieclips Loaded From An Xml

Jan 24, 2005

I'm working with a script that loads from an XML some jpgs, these ones once loaded move to their positions.

[Code]....

the problem is that i would like put all these movies well aligned in rows and columns, i've seen it's possible to do this with a nested for.. loop, something like this

[Code]....

View 3 Replies

Actionscript 3 :: Positioning Nested Movieclips Based On Stage?

Aug 12, 2010

I have multiple nested movieclip in its own different movieclip, and i would like to arrange them accordingly. My idea was to use the localToGlobal function. I can get the position of the MC on stage, but how do I use the function and place the MC based on stage?

cAPos = new Point(objectA.y);
newcAPos = objectA.localToGlobal(cAPos);
cBPos = new Point(objectB.y);
newcBPos = objectB.localToGlobal(cBPos);
objectB.y=objectA.y+objectA.height <-- based on stage

View 1 Replies

ActionScript 3.0 :: Flash Fullscreen Screensaver - Positioning Unscaled MovieClips

Aug 30, 2010

I am making a fullscreen "screensaver" project (using screentime, FYI). I have some mcs on the stage that I want to scoot down to the bottom left, right or whatever on the screen. I want these elements to position themselves differently based on the users resolution and aspect ratio of their monitor. (for example: whether the monitor is 800x600, 4:3 OR 1366x768, 16:9, I want a text field or mc to be 10 pixels for the bottom and left of the screen).

View 1 Replies

IDE :: Duplicate Movieclips Hittest?

Jan 15, 2009

I am designing a flash game and I am having a bit of trouble with the Actionscripting, I wondered if you might be able to help me? I will try and explain how the game should function and I attach a JPG that shows the rough layout as well, hopefully from that you may be kind enough to point me in the right direction.

How it should function The idea is you have a glass that you control, left and right keyboard arrows control left and right movements and it only moves on the _x axis and the _y axis always stays at it's current value, this works fine and I have managed to add actionscript to the glass movieclip to do this, the movement also has gravity and friction which means the glass slides on a little even when you move to go the other way.

Using the Glass you need to collect falling object movieclips, there are two types, good and bad. When you catch the good it adds to your score and when you catch the bad it deducts from your score.

The falling objects need to be random and I have successfully managed to get 1 movieclip to fall by using actionscript code and also I have managed to set the _x position as random each time , the actionscript to do this has been applied to the falling object.

[Code]...

View 3 Replies

ActionScript 2.0 :: HitTest Two Duplicate MovieClips?

Mar 15, 2009

I'm trying to hitTest two duplicate movies clips. One is a bullet and the other is an enemy. I have them properly duplicating, but I cannot figure out how to detect a collision between the two. I've trying everything I can think of, and so far I've only been able to get the hitTest working between the original enemy and the bullet duplicates.Here is the code for duplicating the enemy:

Code:
bb++;
duplicateMovieClip(_root.target, "t"+bb, bb);

[code].....

View 2 Replies

ActionScript 3.0 :: Using Same Class For Duplicate Movieclips

Mar 24, 2011

I have created an external class for a particular movieclip and I would like to link a duplicated version of this movieclip to the same class file.
 
Problem is I can't seem to do it. Even if I state the class as the BASE class of the new movieclip and create another random class name for it.

Is there a way I can get around this so I can assign my duplicated clip the same class name ??

View 9 Replies

ActionScript 2.0 :: Can't Rotate Duplicate Movieclips

Jul 23, 2006

I've created movieclips that duplicate and swap depths but I can't seem to get them to rotate. I want the mc to rotate when the rotate button is clicked. I have created a button file that executes the rotate function properly but I can't make it swap depths like the others. How can I get all of the functions into each object?

View 2 Replies

ActionScript 2.0 :: Removing Duplicate Movieclips?

Feb 29, 2012

I'm currently trying to make a cross-hair shooter game with an additional onstage character so that you not only shoot the AI, but also dodge using the arrow keys. The problem is, I have a code saying that if the AI hits the player unload the player, the AI, and the AI duplicates. The player and the AI are unloaded, but the AI duplicates are not! I tried fiddling with the code but just can't get it to work.

[Code]...

View 3 Replies

ActionScript 2.0 :: How To Duplicate MovieClips Using Function

Jul 3, 2006

I have yet another "I die-problem", not so drastic this time, though. I've only tried to solve it for two hours or so,it's killing me Well, as usual, I end up here, at the Kirupa forums.. and of course, l end up emptying the coffe-machine at work.. *runs for more espresso* It's an issue regarding the duplicateMovieClip function. I know how it works, and I know how to duplicate MovieClips using the function, however, I do have an issue figuring this out: Now, explained roughly:I have a MovieClip which contains yet another MovieClip. I want to duplicate both the MovieClip and it's child, but I want it to stay inside the parent MovieClip, just as the original MovieClip contained the original child.

View 13 Replies

ActionScript 2.0 :: Rotation With Duplicate Movieclips?

Aug 4, 2007

i found this file a while back ("dynamic_rotation") and i would like to rewrite it to place all the code in the _root on it's own layer.the duplicated squares don't move.here is the original code on the mc:

onClipEvent (load) {
y=100;
Angle_Inc=12;

[code].....

View 11 Replies

ActionScript 2.0 :: Duplicate MovieClips Into A Multiple Numbers?

Apr 11, 2011

that how can i duplicate a movieclip to as much numbers i want through out the stage using actionscript2. i have searched lots of posts in sites but i can't get it

View 6 Replies

ActionScript 2.0 :: MX: Dynamic Duplicate & Remove Of MovieClips

Aug 9, 2005

I have a for-loop that creates instances / duplicates of a movie clip that works like a charm:

[Code]...

Then I position each instance- and I fill an array with the number ("pg"), because: I also have the option to switch to a different view and at that point I want / need the MoveClips to disappear. So I have a function tied to the switching that goes through a loop for all instances of the movieclip copies (using the array with the IDs from the example above) and remove them.

[Code]...

View 1 Replies

ActionScript 2.0 :: Collision Detection Between Two Different Duplicate MovieClips

Apr 8, 2007

I was wondering how to have collision detection between two differente duplicated movie clips. For example, a duplicated bullet hits a duplicated bird, how do I make it so that it detects collision when the duplicated bullet(bullet+x) hits the duplicated bird(bird+x)?

View 3 Replies

ActionScript 2.0 :: Functions In Duplicate Movieclips - Position Is Not Right

Apr 9, 2008

I will have 5 type of buttons. Each type I will duplicate (+1) at some condition. Each button is sharing a same functions, just some difference in value and positions. Button type's name:bug1, bug5, bug10, bug20, bug50

[Code]...

View 4 Replies

ActionScript 1/2 :: Swapping MovieClips In And Out Of Area

Oct 7, 2009

I'm trying to swap movieclips in and out of an area, rather than loading an endless number via attach/getNextHighestDepth. Is there a way to swap my attached movieclip A with a new attached movieclip B, so that either clip A or Clip B is loaded, but not both? Because my current program uses attached files of identical size that overlap, I didn't realize there was a problem until things slowed down. I checked my number of objects in the debug list between hitTests and lo and behold, the list of objects got longer each time, even though to the viewer, it looked the same.

View 4 Replies

ActionScript 3.0 :: Duplicate MovieClips Made By Flash Drawing API

Jan 12, 2012

I have this current simple setup:

- MOVIECLIP1, with more than 30 run-time drawing shapes that modify on enterframe.
- and MOVIECLIP2, wich should contain an exact copy of MOVIECLIP1 drawed data.

The point is that MOVIECLIP2 will be as a "reflection" or "shadow" of movieclip1. I won't need to do any interaction with it, only apply filters. Is there anyway that this can be possible - rather than having to draw the same shapes twice on both movieclips?

View 4 Replies

ActionScript 3.0 :: Duplicate MovieClips Stop All On Start And Play Only One On MouseEvent

Sep 2, 2009

I have a bunch of copies of the same MovieClip that are dynamically created I want them to be stopped when the swf first starts.When I click on one of them I want that particular one to play.I think that I've figured out how to play a single MovieClip with event.currentTarget.play(); but I am stuck on how to stop all the clips from the start.I thought I could just use a instanceName.stop(); in my for loop, but no go.[code]I'm an artist working on a piece where I am cataloging sound recordings from people (eventually recorded live from the site... but that's a battle that I'll deal with in phase 2 and after I have a bit more actionScripting under my belt).I just wanted to explain myself a bit since Kglad, Ned, and dmennenoh have helped me a bunch through the development of the project.If your interested you can check out some of my works on my website.I know,I need to update the site, but its more fun to work on new projects.

View 5 Replies

ActionScript 2.0 :: Different Buttons Load Different Movieclips In A Main Area?

Feb 17, 2010

how to make buttons play movie clips in a particular area when I press a button however I'm trying to make the jump up higher.

I have 3 menu items with 3 movie clips loaded just beneath the menu Items. However my first problem is, how do I hide content or even better, only play certain movies when a button is released?

At the moment the code for a button I use is:

on(release){
_root.intro.play();
}

But all the movie clips are overlayed!!

View 1 Replies

ActionScript 2.0 :: Printing Movieclips From A Different Scene In A Specific Area?

Jul 22, 2011

So I've recently started working with ActionScript 2.0 at my internship. I am now working on a game, that already had all its graphic interface designed and I am doing all the programming. Basically what I have to do is get some movie clips (randomly) from a different scene and print them on another scene in a designated area (but also randomly). I am not sure the best way to explain my problem, so I made a sketch of how the scene should look. [URL] So basically I want to print the movie clips on the black space, as if they were the red squares. But the movie clips are stored in a different scene in the same project. So I want to know two things: how do I get the movie clips from the different scene? And how do I print those movie clips on the specific area?

View 1 Replies

ActionScript 2.0 :: Loop With XML - Duplicate Some Main Button MovieClips For Each <dept> Node

Aug 25, 2004

What Im trying to do is duplicate some main button movieClips for each <dept> node. When pressed these main buttons then show a second set of buttons for as many <menu> nodes there are. In the actionScript the displayMainButtons function is used to loop through the XML and display the Main buttons. With the other 2 display functions (displayFirstButton and displaySecondButton) Im displaying another button for each <menu> node. These too works just fine, but the problem with writing it this way is that I have to write another display function for as many <dept> nodes there are. Id like this to be written so it loops through it in one function so I can add as many <dept> nodes with as many <menu> nodes as I'd like without going back into the AS code to add more display functions. And as you can see, I had to do the same to delete the buttons.

View 1 Replies

ActionScript 2.0 :: Controlling Duplicate Movieclips - Communicate With Those Clips Specifically To Make Them Draggable

Aug 5, 2004

how to communicate with those clips specifically to make them draggable and also to change the _rotation with Key.Right, Key.Left.

View 7 Replies

ActionScript 2.0 :: Controlling Duplicate Movieclips - Make Draggable And Change The _rotation With Key.Right, Key.Left

Aug 5, 2004

I found the tutorial on duplicating movieclips, especially the line-by-line translation of the code. how to communicate with those clips�specifically to make them draggable and also to change the _rotation with Key.Right, Key.Left.

View 7 Replies

ActionScript 2.0 :: When Click The Letter Movieclip It Does Create The Duplicate As It Should And It Starts To Drag The Duplicate Mc

Mar 20, 2010

My problem is that when I click the letter movieclip it does create the duplicate as it should and it starts to drag the duplicate mc. However, when I release the clip it doesn't stop dragging? I realized that if I put onMouseUP event instead of onRelease it actually does stop dragging when I release the mouse. I would, however not like to use the onMouseUP event if possible.

[Code]...

View 2 Replies

Actionscript 3 :: Duplicate AddEventListener Calls Create Duplicate Listener Entries?

May 4, 2010

If I have an object that calls

addEventListener(Event.ENTER_FRAME, update);
addEventListener(Event.ENTER_FRAME, update);

will that add 2 listeners?

View 2 Replies







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