ActionScript 2.0 :: Using A Loop To Duplicate A MC Named MCbutton?
Feb 18, 2004
I'm using a loop to duplicate a MC named MCbutton, which is all good.
[AS]
for (i=1; i<=this.total; i++) {_root.MCbutton.duplicateMovieClip(["MCtest"+i], 1+i);
trace(_root.MCtest1);
[Code]....
Can't i duplicate a Clip inside another Clip??
View 5 Replies
Similar Posts:
Nov 24, 2008
What I am looking to do is:
1. Click a button to activate (mcButton).
2. Only be able to "dot" when its over a certain area(mcCanvas).
3. When you click on the area (mcCanvas), then it places new instances of the dots(mcDots) on the canvas where your pointer is. (new instances on every click)
4. Click the button (mcButton) again to deactivate.
I am first trying to create the action with out needing the area (mcCanvas). This is what I have so far:
Code:
startDots = new Object();
startDots.onPress = function() {
var d:Number = this._parent.getNextHighestDepth();
var dup:MovieClip = mcDots.duplicateMovieClip("dup_"+d, d);
attachMovie.dup();
[Code] .....
View 1 Replies
Sep 8, 2009
It is possible to loop through buttons in a movie clip that do not have sequential names.For instance, they are all named by the date they are for reference to a database.
View 1 Replies
Nov 4, 2009
i am loading several images from an XML path into a flash movie and i want to dynamically create image loader variables for them. Here is my code so far:
Code:
var xmlData:XMLList;
var myXML:XML;
var xmlLoader:URLLoader = new URLLoader();
[Code]....
method and this doesn't work for me either, i'm guessing thats because it is in the AS2 forum.
View 1 Replies
Feb 29, 2004
I'm trying to make a bit stream across my page when you mouseover a button. The bit stream can be quite long, so I wouldn't think to do it by hand. I'm wondering how I would go about making the stream start out, and how I can get each bit to follow the other right behind it. (They're about 10 pixels wide) I can get the for loop to duplicate the clips, but I can't seem to get them in order.
View 5 Replies
Mar 27, 2008
i have a loop calling in the length from a xml file, how can i duplicate the text field, since this function does not exist?
for (var j:Number = 0; j<=section[0].nTitle.length; j++) {
this.createEmptyMovieClip("mNav",this.getNextHighe stDepth());
mNav.createTextField("tSub",this.getNextHighestDep th(),100,100,100,20);//places it at x:0 y:0 size 100x20 pixels
[Code].....
View 1 Replies
Aug 5, 2006
I've got 4 menubuttons: homeBut, aboutBut, portBut and contBut that I'm adding a rollover command to. If I write all of it out as below it works correctly. Obviously this isn't the way to do it so I've used an array and for loop to duplicate this process. However, when I compile the .fla the rollovers don't work. I thought I had my head around loops, vars and arrays but apparently not.
Below is the bloated, redundant code that works followed by the array/loop code that doesn't.
// Main Menu: Rollover
/*this.menuMC.homeBut.onRollOver = this.menuMC.homeBut.onDragOver = function() {
this._parent.homeTxt.gotoAndStop("on"); };
this.menuMC.aboutBut.onRollOver = this.menuMC.aboutBut.onDragOver = function() {
this._parent.aboutTxt.gotoAndStop("on");
[Code] .....
View 2 Replies
Oct 5, 2007
got some code working to duplicate a movieclip, but what I'd really like to do is obviously randomise the movieclip's x position so that it spreads across the stage, rather than stacking in the same position as it is now.
Code:
for (i=1; i<11; i++){
duplicateMovieClip("alien", "alien_new_"+i, 22-10, i);
}
View 4 Replies
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
Jan 17, 2011
here is my new code that works for PART of my movie. i have two dynamic text boxes, one named "item" and one named "ssnumber" ssnumberNode works fine but itemNode does not. i bolded the parts that i think are relevant to the problems
[Code]...
View 3 Replies
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
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
Sep 26, 2000
I am having problems dupliating a movie clip. I can make a duplicate from an original but when I edit the duplicate it also modifies what is in the original. (I am just changing the text, thats the only difference between the 2) How come it effects both clips when I only change one?
View 6 Replies
Oct 18, 2009
I have just entered Falsh and for some strange reason none of my layers are named. Not only that, when I draw a circle for instance and I want to move that circle. I have to move the line and the fill seperate... I think this has something to do with the layers not being named. I will be posting a print screen. Click the link. [URL]
View 3 Replies
Nov 10, 2009
Trying to get from AS2 to AS3 and the simpliest things are taking too long.I have some movieclips on the main timeline named...
btnSm1_mc
btnSm2_mc
btnSm3_mc
[code].....
View 2 Replies
Mar 14, 2011
I'm trying to make some dynamic movie clips, with a drawn rectangle inside a for loop. But I can't figure out if an MC can be named like an Array. How close is this?
Code:
function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
[Code]....
View 3 Replies
Dec 11, 2010
I am making a game and it has falling objects (similar to shooting) and it also has some other random generating objects going to the other direction. So the objects aren't already on the stage. I was wondering if when I spawn them if I could put them in an array or something and check collision between the two arrays or what?
View 3 Replies
Jul 6, 2009
how can i make named anchor links in flash, i tried this: [URL] i dowloaded the sample, it works as it is with as1 but it doesn't seem to work with as2?
View 1 Replies
Jan 23, 2010
Inside my loop, where i get my XML objects I added a code to draw and add the mask:
var myMask:MovieClip = new MovieClip();
// settings for width height x y color fill etc etc.
myMask.name = "NAME-"+i; // set the NAME
myContainer.addChild(myMask);
myContainer.mask = myMask;
the mask looks fine on the stage.now since i name it, i want to use it for other purpose like moving it now i want to actual call myMask
i get my number "num" from other function, that works fine
function applyMask(num:int):void {
// need to call myMask("NAME-"+num)
}
i have tried myContainer.getChildByNamehave tried:
var masking:myContainer=getChildByName("NAME-"+String(num)) as myContainer;
i have traced for options i can think of myself, but all result no property found.
View 3 Replies
Jul 3, 2011
i'm experiencing a strange issue, until now i alwasy have used "onMotionFinished" without problem, like in this way...[code]suddendly, without any reasons, i get this error in the compiler when trying to publish no property named "onMotionFinished" (i translated it from italian language)i tried also opening other fla i created with the same actionscript, that have always worked fine.there is no way to use the property again.url...
View 4 Replies
Aug 23, 2010
I have a situation where I use loadvars to load an xml file, which has the address of 2 swf's on the server. I can trace the xml items so know they are loading. So I'm trying to load the swf's but am running into problems. First problem, the swf always gives an error when I publish from flash, "TypeError: Error #2007: Parameter url must be non-null." as it can't find the mention of the xml file, as it's just being published. I'm not sure this affects the next issue which is the swf not loading when I try to load it like this:
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest(loadswf1); // where I know loadswf1 = "myswf.swf"
loader.load(defaultSWF);
[code]......
View 1 Replies
Jan 20, 2012
Novice Flash dev here. I'm having a bit of trouble passing the name of an existing MC on my stage to a new variable and then tweening it. I've tried everything I could find.Here is the set-up:
3 levels of question difficulty: Easy, Moderate, Hard. Each question is a seperate MC in the library.Each question has two strings of text: one normal and one altered.container_MC contains all of the questions.Inside container_MC each frame contains one of the question MCs along with a second MC called highlight.Each of these frames is then labeled with the difficulty of the question and the question number i.e. easyQuestion1.Highlight is a MC containing a box that surrounds the alteration. It is labled the same as the frame +"Highlight" i.e. easyQuestion1Highlight.Each of the highlight boxes has Alpha =0.Each frame also contains the variables that determine the correct answer and the difficulty of the question.NONE of the objects on the stage have been added dynamically with addChild (note the Novice portion of my intro :D).
On my maintimeline I have one instance of container_MC. If the player selects the correct answer the current frames highlight box changes from Alpha =0 to Alpha =1.
[Code]...
View 1 Replies
Jan 15, 2009
how do I word this:
var crntContArray:Number = 0;
var currentArraySub = mstrContArraySub ... crntContArray;
the array I'm trying to access is named mstrContArraySub0
View 5 Replies
Jan 14, 2011
I tried: ActionScript Code: navigateToURL(new URLRequest("#myAnchor"));
To my surprise this doesn't work. In fact it doesn't even seem to do anything at all.
Is there a way to do this?
View 2 Replies
Feb 22, 2012
i'm making use of scripted control on IK armatures. The wierd thing about ik is that the armatures seem to exist in a disconnected manner from the objects they control, and cannot be found anywhere in the display list under their parent object.
Instead, the only way i've found to get references to runtime armatures, is by accessing them through the ikManager class, with: IKManager.getArmatureByName
This allows me to get them by names which i've manually assigned in the IDE at authortime. I'm only using one actor with armatures at a time right now, but i'm troubled to think of how this will work with multiple instances of the same IK object.
Given that i'm going to be having multiple armatures in existence with the same name simultaneously, how can i tell which one belongs to which object?
View 1 Replies
Jun 1, 2009
I use only div into my html page.
Is it possible to redirect navigateToURL(request .. to _mypage in state of _blank ?
Code: Select all<div id="contenu">
<p>Le titre de mon article</p>
<p>Le titre de mon article</p>
</div>
View 7 Replies
Feb 7, 2010
how do i browse through all the children with the same instance names from a movieclip?note: this movieclip has some children with other names as well.
View 2 Replies
Apr 3, 2012
I'm building a variable matching game. The player clicks one of four choices and then clicks the answer area. Their choice appears in the area, and if the answer is correct the answer container shifts down, highlighting the next answer area to be filled. Inside the container are a large number of these answer areas (60).
What I am trying to do is have only one be answerable at a time, the highlighted one, so that players can't skip ahead despite seeing the empty spaces left to answer in. What I have right now isn't working, and I could use some outside insight.
Code:
var i:int =1;
function sampleFunction(evt:MouseEvent):void{
if(selection == e.currentTarget.targetCorrect){//targetCorrect is a string set statically
[Code].....
I realize I could use a for loop to add the event listener, but the project really calls for only one answerable area at a time.
View 2 Replies
Feb 5, 2009
My problem is that I cant figure out how to draw my movieclip if I dynamicly name it.
However If I address it by using its actual name it works fine.
I have included both working and non-working code.[code]....
View 2 Replies
Jun 18, 2010
i'm trying to create a dynamically named Vector. i have a critical project deadline tomorrow, and this small problem is holding back continued development i've adapted my code from this example [URL]...yet am getting an error message (see below). here is what i have:
[Code]...
View 9 Replies