ActionScript 2.0 :: Set IdName To Attach In AttachMovie To Value Of A Variable?
Jul 24, 2009
All I need to know is how to set the idName to attach in attachMovie to the value of a variable?The linkages are fine, the problem is just being able to specify a different clip to load depending on what a certain variable is set to.I don't have the FLA with me right now..OK, say I have a variable with the string, '00'. When this code runs, I want it to load the clip with the linkage, '00'. Say the variable's string changes to '-10'. Then when the code runs, it should load the clip with the linkage '-10'.If this isn't possible, or there is a better way...I'm working on a game. I want it to attach a different level to the stage depending on what value a 2 variables are, but I keep getting Type Mismatch, or it doesn't work.[code]The current linkages are 00 (0x, 0y), and -10 (-1x, 0y). They are comprised of 2 variables, the first one is xmap, and the second is ymap. I want to be able to combine the 2 variables and then attach the clip with that linkage to the stage..
View 4 Replies
Similar Posts:
Jul 17, 2003
This actionscript for "attaching" five balls refuses to work! Why?
for(i=0;i<5;i++){
balls=attachMovie("aball","b1"+i,i);
balls._x=100+i;
balls._y=100+i;
}
Note:aball is the linkage name of the movieclip.
View 13 Replies
Nov 17, 2003
I had a movieclip which contained a button in it exported as "mc". Then I attach this movie clip onto the stage using: _root.attachMovie("mc", "link1", 1); But i couldn't find it with AS. I mean, how can i refer to the button inside the movieclip after I attach it onto the stage using attachMovie?
View 2 Replies
Oct 28, 2009
I'm trying to use attachMovie to attach a movieclip to another movieclip. Both the movieclips are set up as buttons (ie. they have _up, _over, _down, _hit states). The problem is if I define event handlers for both mcs, only the event handler on the parent clip works.
myBtn is already on the stage:
myBtn.onRollOver = function():Void { this.attachMovie("pageButton","chldBtn",1); this.onPress = function():Void { trace("parent"); //works }; this.chldBtn.onRelease = function():Void { trace("attached Movie"); // doesn't work };};
I've tried 'delete this.onPress' for the parent mc but this makes no difference.
How can I get the attached mc event handler to work?
View 2 Replies
Sep 11, 2009
What I'm trying to do is simply this:
<variable> = mvcShip
var ship1 = _root.attachMovie( <variable>, shipName + _root.getNextHighestDepth(), _root.getNextHighestDepth() );
What i am trying to attempt here is to make the variable equal to the name of an item in my library. (Im using this to use different ships in an old arcade-style vertical shooter). This is meant to make a ship appear on stage.
When <variable> is replaced with a library item (eg. mvcShip), it works fine, but if the variable is in place, i get a trace value of ship1 as "undefined", and the ship doesnt show up on the stage.
View 9 Replies
Aug 8, 2007
I'm trying to use attachMovie with a variable - so that the attached linkId is dynamic.
Kinda like this
[Code]...
View 1 Replies
Jan 31, 2008
I am trying to write an attachMovie statement with a variable feeding the ID parameter.[code]...
View 1 Replies
Mar 15, 2010
I am trying to access a text object inside an MC inside a variable (with a corresponding Symbol name) after dynamically attaching an MC. the code that sets the "dockTemplate" variable is below. I'm trying to write to the "item" property called "label" on a rollover function called "dockRolls".
var dockTemplate = {
layout: 0
icon_size: 80,
icon_min: 50,
[Code].....
externally, there is another AS file that extends the MovieClip class which is setting up the functions, etc. in 'var dockTemplate'. that seems to be working fine. my question is:
HOW do I write to/access the text object 'orderEntry_txt' inside 'dockTemplate'?
View 0 Replies
Aug 12, 2007
I am creating movie clips with a for loop using attachMovie, I would like to pass a variable into the clip itself at the time of it's creation. It seems simple enough, but my little brain is imploding...
So basically I got an MC: "clip"+i, which I would like to pass a variable (from an array), for it to use on it's own timeline. I want the next clip to be able to use the next variable in the array in it's own timeline.
View 1 Replies
Mar 23, 2010
I've frequently used variable names for the target but is it impossible to do this:[code]I can't get it to work and I haven't been able to find an example.It doesn't work without the square brackets either.
View 6 Replies
Aug 13, 2008
I have a script which places a clip on the stage (well, just off it), and rotates the clip and then tweens it to a certain x/y coordinate based on the rotation using TweenLite, and all of this on a setInterval of 2 milliseconds. That works well. Thing is, I don't seem to be able to set a unique name based on the clipname and an incrementing number. Basically (and this isn't the whole thing, this is just the general idea), it goes:
Code:
interval = setinterval("dothis", 2);
var increment=0;
function dothis(){
attachMovie(movieICall, "movieICall" + increment; 1)
movieICall._x = ;
_y= etc;
increment++;
}
So when I set the interval to 2 seconds, it moves everything well and there are no problems. When I set the interval to 2 milliseconds, the clips only get just onto the screen before disappearing. I've tried creating a function to handle the x,y, tween. So I could refer to the clip with a "this", but it doesn't change anything. The only thing I can think of is that movieICall is not incrementing, and every clip on the screen is being referred to as movieICall, in which case the next case of x, y, tweening overwrites that last one and effectively kills the last one (but then why is it not just left sitting on the screen)? I tried adding an overwrite: false to the end of the TweenLite, but that only let the tween happen once and then...nothing.
View 1 Replies
Apr 29, 2011
I want to "attach" a variable to a movieclip, do I need to create the movieclip in the class file? What I have is a movieclip in the library that is placed on stage multiple times. What I would like to do is have a class that when one of the movieclips is clicked, will add a variable to that particular instance of the movieclip.
View 2 Replies
Dec 8, 2008
I have a mc (changeColorMc) and three movieclips. The three movieclips are created on the fly (so there could be more movieclips) and filled with a color from an Array. This works fine.
Now I want to add an eventlistener for each movieclip, so when someone push one of the movieclips the movieclip with the name "changeColorMc" gets that same color from the colorArray.
My question is: How can I pass the color value from the colorArray to the buttonPressed function? Is this possible?
I was also thinking that I had to create three buttonPressed functions ie. buttonPressed1, buttonPressed2 and buttonPressed3 and attach these to the created movieclips.. but how? Because I don't know up front how many movieclips there will be..
View 5 Replies
Apr 27, 2010
mcWinScreen.songNameTxt.text = songName;
var accuracyPercent:Number = Math.floor(((numberHit / songTotal) * 100)); var missedMath:Number = (songTotal - numberHit);
[Code]....
The numberHit var displays fine without any problems.
accuracyPercent & missedMath trace fine but don't display in the dynamic text field.
View 1 Replies
Nov 5, 2006
how to eliminate previos attach before move to next attach MC..let say as u can see in my code..I just settign the interval..for 2 second..in other to attach the mc on eby one...so how to set up the code so that if the 2nd mc has attach it'll remove the 1st one attach for certain time...and so on..the scenario like this..
mc1 attach
after 2 second
mc2 attach --> remove mc1
after 2 second
[code]....
View 2 Replies
Feb 10, 2006
i'm trying to figure out how to reset or refresh clips that are dynamically attached to another clip based on records returned through xml.asically if the user chooses a different filter for the database query I need to be able to refresh a scrolling list made up of clips which will be different based on the filter.this is what I have for a function. I try to use "attachEmptyMovieClip" but to no avail
Code:
getAll=function(){
members = getMembers.firstChild.childNodes;
[code].....
View 2 Replies
May 14, 2009
Through attachMovie I have loaded an mc from the library onto the stage into "holder_mc".
myButton.onRelease = function () {
if (currentWork != "holder_mc.myWork1_mc") {
holder_mc.attachMovie("myWork_mc","myWork1_mc", getNextHighestDepth());
currentWork = "holder_mc.myWork1_mc";
}
}
This works.
However, there are a couple of buttons (mc) inside "myWork1_mc" which skips through a few slides in the myWork1_mc clip that I cannot target. I thought using:
holder_mc.myWork1_mc.buttonName_mc.onRelease = function () {
trace("MC_pressed");
}
... would work. My curser doesn't even change to the hand symbol. How do I target an dymanically loaded MC from the library which is inside an empty holder MC on the stage via attachMovie? What am i missing? Believe me, I have spent hours trying to google it.
Note: at this stage there is no other script on "holder_mc", but there will be at a later date, but I'll cross that bridge when I get to it. Also, the buttons work when I place the MC onto the stage and not use attachMovie.
View 6 Replies
Oct 3, 2009
i was wondering if it is possible to use attachMovie with variables using flashvars from html. im kind of new to AS and would like to know if anyone could help me out here
i need to make a single SWF in wich some movieclips can be replaced by others through the html code without editing the swf file.
i already know how to enter the variables on the html, but i dont know how to apply this to attachmovie command in the flash file.
View 3 Replies
Dec 23, 2009
So a clip is attached to a clip, and that works fine, but how do I get code on to the attached clip? I've tried duplicateMovieClip...but it's not working...
View 1 Replies
Jan 3, 2006
f you know PHP...then you know that you can create a string variable...and then use the value of that variable to declare another variable. like this:
PHP Code:
<?php$foo = "haha";$i{$foo} = "success";print $i{haha};?>
and it would display "success"...or like this:
PHP Code:
<?php$foo = "haha";$$foo = "success";print $haha;?>
and it would also display "success".
View 6 Replies
Oct 8, 2009
for (i=0; i<policy.length; i++) {
newOpt = Stocklist_MC.attachMovie('Option', 'Option'+i, i);
I've got a ScrollPane on the root stage. This loads a MC called 'Stocklist_MC' (this also has a linkage/export name of 'Stocklist_MC'). When I try to use '.attachMovie' to the movieclip (Stocklist_MC) inside the ScrollPane nothing appears. All the AS is on frame 1 of root. Everything works when I use '.attachMovie' with _root. for (i=0; i<policy.length; i++) { newOpt = _root.attachMovie('Option', 'Option'+i, i); Also, if I drag Stocklist_MC to the stage I get everything working but list gets cut off at bottom, which is the reason why I need it in a scrollPane.
View 1 Replies
Aug 11, 2010
the traces get triggered, which means so should the attachMovies, but nothing else seems to happen?[code]
View 3 Replies
Aug 24, 2010
I've been battling this project, and finally got it all wrapped up and working, and was feeling pretty proud of myself, and then I went and posted the exact same .swf on the web and it doesn't work anymore.Specifically, there are a bunch of icons which are placed into the FloorMC which then attachMovie a copy of themselves into a LegendMC and UtilityRefMC, but they dont seem to be attaching anything when I run it through a browser.[URL](I'd love to attach the swf and fla to this message, so you could take a look at those, but apparently that would be crazy.) thought perhaps it had to do with me using _root, but I went through and changed them all out to _globals and _parents and it still no likey. Furthermore the Comment Box in the bottom left gets triggered by _root commands form all sorts of different levels, and it seems to work fine, both on the web and off.
View 6 Replies
Jul 20, 2010
BTN_2.onRelease = function() { gotoAndStop("ans2"); Comments_txt2.text = title[2].comments[0].nodeValue; toolName_txt2.text = "Tool Name: " + title[2].hidden[0].nodeValue; mclip.loadClip(title[2].image[0].nodeValue,
[code]....
View 3 Replies
Jan 22, 2010
I am using this simple line:
ph_out.attachMovie(ensembles,ensenbles1,1);
where "ph_out" is an mc that receives the movie"ensembles" is an mc that I want to load in ph_out and it has as linkage name: "ensembles"
View 2 Replies
Mar 26, 2010
I have a linked movieClip in my library with the identifier "arrow" i want to run a for loop and attach this clip to movie clips on my stage named blank0 blank1 blakn2 and so on.
[Code]...
View 1 Replies
Mar 3, 2011
I am trying to create a pair of custom drop down menus (one for states, and then one for each states counties). I have an XML doc that contains all this info, which I am parsing out into an array(sc). What I would like to happen is when the user rolls over the states drop down arrow(stDropArrow_mc) that I run a for loop which attaches some movie clips to a states movie clip already on stage(states_mc), fills in the state name in a display text field(display_txt) within the attached movie, within the "states_mc" on stage(root timeline). so essentially(states_mc."NEW ATTACHED MOVIE CLIP NAME".display_txt.text) Here is a code sample that I am using...
[Code]...
View 1 Replies
Nov 14, 2003
When you attach a movieclip taken from the symbol library to the Stage, by using the attachMovie function and its Linkage name, do you have to - previously - place a dummy instance of the mc anywhere on that Stage to get it works ?
View 5 Replies
Apr 17, 2005
I am trying to revise the very first flash project I ever did and it's become a complicated mess. I have created an interactive atlas. I am using my favorite map zooming and panning tools supplied by Senocular which can be found here: http:[url].....For the panning/zooming/drawBox tool to work the map features must be buried deep within several movieclips. There is one level at which you can put buttons that aren't effected by the code for the panning/zooming etc. Buttons have to go on this level or higher if you want them to work.
The way my atlas is set up - there is a main interface that has these tools plus the menu system. The menu (xml; created by Lost and Sen - brilliant, thank you) loads in two external swfs - one is the map itself and the other is a set of "controls" for that particular map (radio buttons, check boxes, text links, etc.).I have a couple of external swfs that have buttons on them that do things when you roll over and off them. If I have these buttons sitting on the map then when it gets loaded into the main interface they no longer work. So I am trying to use attachMovie to attach them to an MC within the zooming tools in the main interface at a level they can be active.But it's not working.I am guessing it's because the code to attach them is being fired before the external can be loaded into the interface. So I'm not really sure where to fire the attachMovie code. Does it go with the external? Does it go with the controls for the external?
I can supply code if needed though like I said, this file is a mess. There are 15 external maps with 15 "control" files. Plus the main interface, plus some other miscellaneous files.
View 10 Replies
Aug 13, 2005
I have a loop and in it i am attaching a movie clip (basiccly its just a row with data). The movieclip has a alpha fade in it. Now I want to delay each attachmovie function so that the movies are attached one by one rather then trow them all on the screen at once. (plus it looks better with the alpha fade).
I tried the setInterval but it wont work (ex.:Interval is 1 sec, and if im going to attach 6 MC, flash wait 6 * 1 sec, then show them all)
And is it possible to attach a movieclip inside a othermovieclip thats not on the same frame (the other MC is on frame 10)?
View 1 Replies