ActionScript 3.0 :: AddChild - Loading MovieClips In Row?
Jan 30, 2010
I've got a movieClip in my library and it's linkage in my library. How do I code it? It will load 11 of "movieClip" in one row and 11 in second row and they will load one after another one.
View 2 Replies
Similar Posts:
Aug 20, 2009
Basically I have this movieclip on stage that is suppose to load another movieclip from an swf. in that swf are 31 copies of the movieclip since theres no duplicateMovieclip function in as3. I am able to load and add child to the movieclips easy with this,
PHP Code:
function duplicateMovieclips():void{
for (var i=0; i<movieclipsToLoad; i++){
movieclipsDuplicated++;
entrys_mc.addChild(mcV[i]);
Below (which I excluded) are other various bits of code to edit the movieclip and what not. I can also remove it just fine with this bit of code here
PHP Code:
function removeF():void{
var repeat:int = 0;
for (var i=0; i<timesToRemove;i++){
entrys_mc.removeChild(mcV[i]);
repeat++;
movieclipsToLoad--;
if(i == timesToRemove-1){
loadSelected(); //THE PROBLEM
}}}
What this swf is trying to do is record the year and the month the user clicks on and then return every day's data from the xml if a day is filled out. when removeF(); executes, i get the error:
Code:
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
Pointing at entrys_mc.removeChild(mcV[i]);...but when its NOT there, loadSelected(); that is, it works just fine. I even put a trace statement in it. The whole if condition works fine to.
LoadSelected is the one that retrieves the text needed to load in the movieclip. whatever year and month the user selects, it loads the information of it and puts it in a string. then it displays in the dynamic text field inside the movieclip. Also, when SWF loaded it loads all 31 movieclips using this.
Code:
for (var i = 0; i < 31; i++){
var groupMC:MovieClip=MovieClip(clip.getChildByName("group" + i));
mcV.push(groupMC);
trace("repeat # = " + i);
}
View 15 Replies
Jan 8, 2011
I'm trying to make a td game for fun and I need to make function to build towers and if I want to build the second tower it changes the first one... But I thought if i could change the name of the first tower's name when it builds to other var and it should be fine, but the problem is that those 2 towers will shoot together or something, so is there a way to bind functions to movieclips that are created with actionscript (addChild(Name))?
View 1 Replies
Aug 10, 2010
So I'm adding these movieclips which have textfields inside them and I'm trying to space each new movieclip. Currently they are being placed on top of each other. _taskX and _taskY are variables which I define down there.
Code:
public function onClick(event:MouseEvent):void
{
_taskX = 300;
_taskY = 100;
[Code]...
View 1 Replies
Nov 4, 2010
I have a bunch of movieclips which were created by "addChild" method. These movieclips are added to "gamecontainer". There was a dynamic textfield in each movieclip. Now the problem is how can I change the text in the dynamic textfield inside each movieclip outside this function.
Here is the code:
private function arrangeClips():void {
for (var i:uint=0; i<7; i++) {
var tile_mc:whiteTail=new whiteTail();
[Code].....
View 2 Replies
Sep 3, 2011
I need to add "_myThumb" to 4 container MovieClips. The problem is that it's only working for 1 MovieClip. What do I need to change?
var _myThumb:Bitmap;
var _myThumbData:BitmapData;
function createThumbs()
[code]......
View 1 Replies
Mar 15, 2011
I want to create a grid of movieclips using an array. But every movieclip added needs some sort of unique idenifier so i can access each individual movieclip.
The grid is 6 movieclips on the Y and variable on the X(that doesnt really matter to be honest)
I have managed to create an Array that displays 6 movieclips on the Y using this [code]...
now i tried creating another class and storing the 6 tickets i made in this class in another movieclip and then using the same method in the other class (i called it Ticket_Batch) i created another row of 6 movieclips. although this kind of worked visually i could no longer access each individual ticket.
my question is: how do i create a 6 x 36(or any other multiple of 6) grid of my movieclips in the same class using an array (or 2 arrays) and giving each movieclip an instance name that i can access and use?
View 4 Replies
May 29, 2009
I need to reload the same JPG about every second for an indefinite time. Problem is that that right now with addchild it adds the JPG on top of the old one eventually running out of memory from adding so many JPG's Is there a way to specify with addchild() to replace the old one?
[Code]....
View 6 Replies
Mar 13, 2010
I have images loading into a single mc container every time i click a button. The images are being loaded (from xml data in a data grid) on top of each other every time the button is clicked. This is the latest Ive been working with and doesnt seem to work
Loader();var reqImage:URLRequest=new URLRequest(data_grid.selectedItem.JPG); imageLoader.load(reqImage); if (imageload.numChildren>0) { imageload.removeChild(imageLoader); imageload.addChild(imageLoader);
[code]....
View 5 Replies
Mar 21, 2010
I have a main SWF e-learning tutorial and want to have video pop up on certain screens. over the main area.It would be like a person walking over a screen shot of a program.
1. Should I do an load the video through an Add Child method or load it to another level? User would click a button to see the video.
2. Can you pull out all the back ground in a program like Adobe Premiere and have a transparent background or will I need to put some form of a background in like the screenshot.
View 2 Replies
Jul 4, 2010
I've created a couple of flash animations, fairly simple, but the whole relies on loading external swf files and then unloaing them.
The base file works fine, loads the externals and unloads them (although I need to preven the user from hitting the unload button when there is nothing to unload) and will then load another just fine, IF I run it directly from my file system.
I want it to be on a web page, but when you click the button to load the external files, nothing happens. Safari tells me it cannot find the file, and I'm using the exact same directory to test.
So, works fine when testing with flash (CS4) and running directly from the directory in finder, but from a web page, it cannot find the file.
View 6 Replies
Jun 11, 2010
[Code].....
loading multiple mcs - They don't appear on screen - have added addChild
View 7 Replies
Jul 30, 2010
I have a movie on stage that acts as a button using the code. person_mc.buttonMode = true;
I load an image onto the stage from my library using addChild(holiday);
What happens is that the person_mc button I have on stage will not function anymore, because I am presuming it is underneath the holiday pic when I loaded it using addChild.
How do I load the holiday pic, so that it is underneath the person_mc?
I know I could do what I did with holiday using addChild for the person_mc, but I do not want to do it that way.
View 3 Replies
Mar 28, 2010
loading 2 external swfs into one main file using 1 preloader, I have figured out how to get the preloader to handle the correct # of bytes loaded and such but my 1st swf I want to load onto the stage is a video file and I want it as the background but I don't want it to start until after they are both (the video and main file - 2 external swfs) loaded and then I want to start the video and place it on the stage first, then place the main swf on the stage.
I can get the order right if I place them into my load complete function but then my buttons don't work on the main file.
Here is the code:
var bytesLoadedVidBG:Number = new Number();var bytesTotalVidBG:Number = new Number();var loader0:Loader = new Loader(); // load video BGvar loadedSWF0:Object;loader0.load(new
[Code]......
View 3 Replies
Jun 15, 2011
I'm trying to have a class file which can add objects to the stage via addChild; however, when I call addChild from within the class file, I get the error "1180: Call to a possibly undefined method addChild." I've tried importing flash.display.* and that doesn't fix the problem. Does the class file have to extend Sprite or MovieClip to be able to add objects to the stage?
View 8 Replies
Jan 16, 2012
I have downloaded Box2d ([URL]) and created a project that looks like this: [URL]. catalyst is the green cube and it has the base class "shapes.box", it is inside "world" which has the base class "wck.World". What i want to do is to add another "catalyst" from the library inside "world" when i click on add_btn. I tried to accomplish this by this code:
[Code]...
Symbol 'buttons', Layer 'Actions', Frame 1, Line 41061: Call to a possibly undefined method addChild through a reference with static type Class.
View 9 Replies
Jan 20, 2011
I have the followings:
_p:Player (which is a MC)
a1:Animation1 (which is a MC)
_p.addChild(a1); //doesn't display anything
_p.stage.addChild(a1); //displays a1
Why won't the MC display a child without using his stage?
View 1 Replies
Aug 11, 2009
I'm trying to resolve an issue that reared it's ugly head yesterday.Frame one of main timeline I have the following code:
Code:
import flash.display.MovieClip;
import flash.events.MouseEvent;
[code]....
The newMC doesn't show up.If I add 'parent.' in front of the addChild then it appears.mc_LibItem has a base class of "flash.display.MovieClip" and is exporting for ActionScript and on frame one.For grins I created a new .fla and began messing around with the same addChild idea and it worked.
View 14 Replies
Oct 30, 2005
somewhat understood the basics of adding and removing children, however, I am facing another problem. After using the removeChild Function, I can't seem to add another child.For example:
ActionScript Code:
var attachedMC = new (getDefinitionByName("Content1") as Class)()
Page.addChild(attachedMC);
[code].....
View 3 Replies
Jul 29, 2009
I have a main "shell" swf which, by clicking several buttons, will load/unload various external swfs into a Placeholder_mc which resides on the main timeline in Shell.swf In the documentation and tutorials I've seen a couple different methods, and I'm not sure I quite understand the difference, or at least the reason you would use one over the other...In the 1st method, you can just add the Loader object using the addChild() method:
Code:
var myLoader:Loader = new Loader();
var myURLRequest:URLRequest = new URLRequest("ExternalFileA.swf");
myLoader.load(myURLRequest);
Placeholder_mc.addChild(myLoader);
This will apparently add myLoader to the display list once it has completely loaded.The 2nd method, you supposedly can add the Loader.content; however, it appears you can only do this once the content has completed loading, so you need to incorporate an event handler with the contentLoaderInfo object:
Code:
var myLoader:Loader = new Loader();
var myURLRequest:URLRequest = new URLRequest("ExternalFileA.swf");
myLoader.load(myURLRequest);
[code]....
What are the pros/cons of adding the entire Loader object, as opposed to the Loader.content and vice versa?
View 7 Replies
Jul 19, 2009
I've read that when loading swf's it's a good idea to load them into a MovieClip. Is that true, why and would a Sprite do as well. Also how is it done?I thought this would do.
var currentPage:MovieClip = new MovieClip(); var loadRequest:URLRequest = new URLRequest("home.swf"); var swfLoader:Loader = new Loader(); swfLoader.load(loadRequest); currentPage.addChild(swfLoader);
[code].....
View 7 Replies
Nov 9, 2009
i used this code with linkage to load a movieclip from library using flash action script 3
btn.addEventListener(MouseEvent.MOUSE_UP,goLayersS ite);
function goLayersSite(Event)
{
var myMovieClip:MovieClip = new Tree();
empty.addChild(myMovieClip);
}
i want to know how am i able to load a flash movie clip from my current library into my stage with using a button via flash action script 2.
since im using other codes in action script 2 i can not cancel them and i really need to load a movie clip in my AS2 FLA.
View 1 Replies
Feb 5, 2009
I'll do my best to keep this question as short as possible:
I've made 5 'fruit' movieclips and they're in my library.
And using so.addVariable("getNumber", "003"); in my HTML code, I'd like those particular fruit movieclips to play one after the other (and then loop).
I've had a look around for something similar, without luck, so I'm trying to make it from scratch. I got as far as getting it to load the first number and then the first type and url, but I'm stuck on getting to go onto the next type, also being able to define (with addVariable) which number's nodes gets played.
Here's an example of my XML to show the structure.
Code:
<?xml version="1.0" encoding="utf-8"?>
<list>
<number="001" >
[Code].....
View 1 Replies
Mar 17, 2009
I'm making a game where I have a lot of movie clips that I need to load so I was wondering wheather ActionScript 3.0 allowed us to load external movieclips? Can we import an external display object (movieclip) into a display object container? Or do I have to load a .swf which contains the movieclip onto the stage? What happens if I need to pull in multiple .swf files can the movieclips overlap or will one .swf file block the user from viewing the .swf in a lower depth? Can I import the movieclip from the external .swf file from its library and add it to the main stage rather then adding the whole .swf to the main stage?
View 11 Replies
Feb 11, 2010
Loading in Movieclips instead of images
View 6 Replies
Aug 8, 2010
I start off my game with an empty movieclip located in the middle of the stage. I then load a movieclip using the loadMovie method. At some point I would like to unload the movieclip and then reload another one, sort of a different scene if you will. The new movieclip has a number of other nested movieclips that I will use as buttons and I have coded a function that is called that creates these buttons. Here's what it would look like:[code]The roomSetUp function contains info on how the room should look and the button codes. The problem is that the setup function runs before the new movieclip is loaded. Seems that there is no way to have Flash 'Yield' until the movieclip is loaded and then go to the last function. Any suggestions other than MovieClipLoader?
View 2 Replies
Sep 22, 2010
I have several Movie Clips in the Library which I need to be able to load and bring up on the screen randomly.The code below shows how I can load one of these, but to get a proper control ideally I would like to load them all in to an array or numbered variables so that they can be called from a simple piece of code and actioned one at a time.
My movieclips can all be called something simple like mc1, mc2, mc3, mc4 etc to make things easier.These need to be referenced in to an array mcContainer[.....] or as mcContainer1, mcContainer2........ so that they can be called easily.I just need to know the simplest way to do this and how i reference them, I have tried several ways like ["mc"+i] etc and nothing seems to work.
Code:
var mc:mcLogo=new mcLogo();
addChild(mc);
View 4 Replies
Feb 25, 2010
I have several buttons that on mouse over will load a library movie clip. I want that movieclip to load on top of everything then once it's played allow me to either replay that movieclip by hovering over the button again or play a different movieclip by hovering over another button etc etc. with the ability to repeat this.
My code below currently loads my movieclip on top in hte corerct place however wont allow me to hover over another button and only plays once: var my_packages_mc:MovieClip = new packages_mc();var my_treatments_mc:MovieClip = new treatments_mc();
[Code]...
View 1 Replies
Feb 5, 2009
I've made 5 'fruit' movieclips and they're in my library.And using so.addVariable("getNumber", "003"); in my HTML code, I'd like those particular fruit movieclips to play one after the other (and then loop).I've had a look around for something similar, without luck, so I'm trying to make it from scratch. I got as far as getting it to load the first number and then the first type and url, but I'm stuck on getting to go onto the next type, also being able to define (with addVariable) which number's nodes gets played.[Code]....
View 4 Replies
Sep 15, 2010
I'm loading an external SWF file, which become a MovieClip, using Loader(). That part is working fine. I then need to scale the MovieClip to match the stage, so that when I set the width and height of the movie doing the loading in SWFobject, the MovieClip will scale too.
For example, the SWF being loaded may be 320x240, but we decide later that we want it to be 640x480 on the page. We can just change the width and height in the javascript call to SWFobject, and it should scale everything. To top it off, I'll need an AS2 version too because we might need to load AS2 SWFs.
[Code]...
View 3 Replies