ActionScript 3.0 :: Adding MC From Library To Stage From External Class
Oct 14, 2009
I'm trying to create an application with an extensive user interface. I've come pretty far and decided I wanted to really take advantage of the object oriented features that AS3 has to offer.
I've started off by created a few classes: User, Background and Main. Main is the document class of course. In the document class I have a function "resetStage" that clears the display list of all children. This is because I have many layers of images making up the UI and they all show up at startup unless I remove them. Besides I want to see where the stuff is positioned in the Authoring tool so I don't want to just create movieclips and then delete them.
My issue is with my Background class. Basically what I want to do is create a new DisplayObjectConatiner called bgContainer or something and then put all the background stuff in it. (The main background image and a status bar image). Then add the bgContainer and its children to the stage. This should all happen when the object is constructed.
Main .as
---------------------
package
{
public class Main extends MovieClip
{
[Code].....
View 4 Replies
Similar Posts:
Jul 7, 2009
just wondering why this code returns: 1137: Incorrect number of arguments. Expected no more than 0.when relating to this:var cm:collectionsMenu = new collectionsMenu('cm');
[Code]...
View 1 Replies
Jun 17, 2011
I am unable to add the Action Script 3 FLVPlayback component to my stage or library in Flash CS5.5 when working with an action script 3 document.
Under components in the video folder i click and drag anyone of the FLVPlayback components (FLVPlayback, FLVPlayback 2.5 or FLVPlaybackCaptioning) to the stage and nothing happens. I am unable to add it to my library as well. All the other actionscript 3 components under the Video folder work. (BackButton, BufferingBar, CaptionButton, If I create an actionscript 2 document the FLVPlayback component drags to the stage and adds to the library just fine. So this appears to be an actionscript 3 issue only.
I have 2 other employees in my office using the same product and none of them have this issue. Only me.
I have tried to uninstall the product and reinstall but nothing helps. I have Flash CS3 installed on my PC and the product has the same symptoms as the Flash CS5.5 trial version that I am running.
I did not try this with Flash CS3 before I installed the CS5 trial. So I do not know if it worked prior to my CS5 evaluation.
View 4 Replies
Sep 8, 2009
I have created a movie clip on the stage and in symbol properties I have checked "Export for ActionScrip" the MC name is "slide" and the class is "slide" base class is flash.display.MovieClip.
When I test the movie I get this error.
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at main_fla::MainTimeline/frame1()
Here is my code:
PHP Code:
var slide = getChildByName("slide"); //add instance from library?
function slideRollOver(event:MouseEvent):void {
// trace("OK");
} slide.addEventListener(MouseEvent.ROLL_OVER, slideRollOver);
View 5 Replies
Dec 7, 2009
I am a flash developer and I've got some experience in games and applications, but there is a problem that always comes back and that I solve in sometimes discussing manners, but I've decided to find the "good way" of doing it.Ok, here's my problem :I have a game where I set the publish setting to export in Frame 10. Most of the graphic content is already on the stage on the frame 10, but there are a few MovieClips that I add and remove using AS from the stage (a "How To Play" movieclip, for example).All the movieclips I want to use with AS are set to export in Frame 10 and are used in different custom classes.Everything works just fine if I set everything to export on Frame 1 and all my graphics are on frame 10, but not if I export in any other frame than 1.The workaround I've found is to create an instance of the objects I want to load outside of the stage, but I hate that way of doing things :I get no error if I create an instance of my movieclips through AS, but they won't show up when added to the display list (yes, I know how to use addChild )
View 5 Replies
Aug 4, 2009
How to add random movie clip to stage from many different movie clips in library? If I wanted to add one movie clip to stage I would do liko so:
Code:
stage.addEventListener(MouseEvent.MOUSE_MOVE, onMove);
function onMove(e:MouseEvent):void {
var mc:MovieClip = new Ball();
mc.x = mouseX;
mc.y = mouseY;
addChild(mc);
}
Code above works perfect but I tried following but with no success, no errors, but nothing happens - no mc's are added to stage. I have 6 movie clips in library and they all are linked, exported for actionscript. On MouseOver I want to add random movie clip from those six movie clips to the stage.
Code:
var myArray:Array = [mc1, mc2, mc3, mc4, mc5, mc6];
stage.addEventListener(MouseEvent.MOUSE_OVER, onLoop);
function onLoop(e:MouseEvent):void {
for (var i:int = 0; i< myArray.length; i++) {
var randomMc:Number = Math.floor(Math.random()*i);
var mc:MovieClip = new myArray[randomMc];
addChild(mc);
mc.x = mouseX;
mc.y = mouseY;
}}
View 8 Replies
Aug 4, 2009
How to add random movie clip onMouse Move to stage from many (lets say 50) different movie clips in library? If I wanted to add one movie clip to stage I would do liko so:
ActionScript Code:
stage.addEventListener(MouseEvent.MOUSE_MOVE, onMove);
function onMove(e:MouseEvent):void {
var mc:MovieClip = new Ball();
View 0 Replies
Nov 23, 2009
I have a series of images I'm adding to stage from the library. I need them in separate movie clips for tweening. If I create a new layer... add a shape to the layer... mask the layer... finally, add a layer below that layer (with nothing on it) then all of the images I've added from the library are masked. No matter what I try with code however, I can only get one image to be masked. must you create a new mask for each image you would like to mask? I thought maybe if I could do it all in one go on a layer, there must be some code that allows one shape/mc/object to mask several clips.
View 3 Replies
Jan 18, 2011
Okay, so I decided to try putting some child movieclip switches into the .as instead of in the frames. After a lot of Googling and reading, I think I learned that each of those movieclips need to be in their own .as. Anyway, I tried to do it and the movieclip, which is located in the .fla library and does have export checked off, is not showing up when I play the file. The movieclip has this .as to itself:
[Code]...
View 4 Replies
Nov 24, 2011
The name of my DocumentClass is Main. So, what's the difference between :
var myClass:Main = new Main();
var mcInLibrary:MovieClip ;
/////////////////////////////////////////[code]............
View 1 Replies
Mar 22, 2011
i've been getting difficulties regarding how to put a stage on a .AS how should i declare it? I want to put my movie clip on the stage using a class only. i want my hero to go at the middle of the screen but it doesnt come out.
[Code]...
View 9 Replies
Mar 22, 2011
i've been getting difficulties regarding how to put a stage on a .AS ow should i declare it? I want to put my movie clip on the stage using a class only. i want my hero to go at the middle of the screen but it doesnt come out. here's my current code
Code:
package {
import flash.display.Stage;
[code]....
View 2 Replies
Oct 24, 2009
I know how to load an xml data into the stage by using one class from library However, rite now, I have 3 customer_mc with class for each:[code] how can i put three customer mc into the for loop? Do I put it in an array? Do you mind give me an example? I want to link the xml to each character classes,like char 1 is the first <customer> tag from the xml data. I know the logic, but to put it in the code is hard for me since im pretty new Second, I don't want it to be put randomly on the stage but only on the right corner of the stage. Is that mean, I put a precise coordinate for the customers mc?
View 6 Replies
Aug 26, 2009
Is it even possible to associate a class file to a movieClip manually placed on the stage without setting up the class linkage in the library? If so, how?
P.S. linking in the library then placing on the stage is not a viable option. Nor is using "addChild" from the library.
View 9 Replies
Feb 27, 2011
I am using CS3. And this is all about understanding Identifier and Class from the symbol property under Linkage.
I read some articles where all are using class instead of attachMovie() method on TimeLine.
Its confusing to me and couldn't able to make it work.
The article I read says that attachMovie() method will be in class file.
View 9 Replies
Apr 19, 2009
I have a MovieClip in the library with a class associated with it. I can instanciate the MovieClip just fine using code and add it to the stage without any problems. But how can I manually add the MovieClip to the stage and feed it the one parameter when it's instanciated? I've tried all the usual stuff but nothing seems to work:
var testClip:className = new className("helloworld");
testClip is the name of the MovieClip that's been manually placed on the stage.
View 4 Replies
Apr 12, 2012
I am trying to make a "Achtung! die kurve" - like game in Actionscript 3.0. So far I've done the movement of one of the 'worms', and it works alright. I wanna divide it into different class files, but I can't seem to get it to work. I have a .fla file and 4 .as files. So far I only have code in two of these. When I put all my code directly into the fla file, it works perfectly fine, but when I put it into my player class, it won't 'add the child' to the stage. Here is my player .as file: [URL].
The reason why I commented the addChild, is because I wanna do this in my mainFile.as. This is from the main file: [URL]. I'm not quite sure how to call it in the main file, so I'm guessing that this would be the issue. All the files are named and placed correctly in the same folder, and flash says that each of my .as files are targeting the .fla file, so this doesn't seem to be the issue. How I can change the speed of my sprite.
View 1 Replies
Jul 14, 2009
I have created a custom class called SceneNavagation.as which i use to add my navigation to the stage. I was having problems getting the addChild to display my mc on the stage. So I passed the stage instance into my class and used that to attach my movieclips. _stage.addChild();
This worked but Im new to as3 and just wanted to know if this was a good way to do this below is my code.
package com.lessons{
import com.caurina.transitions.Tweener;
import flash.display.*;
[Code]....
View 0 Replies
Nov 24, 2009
chat.fla
Code: Select allimport maero.entities.*;
var p:Player = new Player(1, "player one");
[code]....
There we go. What i want to do is, I want to create an instance of the Player class, which then creates an instance of the Actor class, which in the _draw() function should add an image to the stage, but I can't figure out how to do that. I want this image to be an instance in the Player's Actor instance, so i later can move it around, the same goes for the user name text. how do i add an image and a user name text field to the stage at player.__x and player.__y?
View 1 Replies
Jun 3, 2010
I have a folder with my .fla, and a folder called "classes" where I stored all my classes. I'm trying to access a MC in the .fla file so that I reference it from one of those classes in the "classes" folder. for you visual learners...
Code:
<project>
project1.fla <- library here
[code].....
View 3 Replies
Oct 23, 2011
have an external class which controls about 400 buttons. But I want this class to also be able to show a Popup window. But this would mean I would need to access the Library.Within this library would be a MovieClip exported for Actionscript with the name PopUP.WITHIN the fla it's easy:PHP Code:va popUpWindow:PopUP = new PopUP();addChild(popUpWindow);
View 4 Replies
Aug 15, 2009
ok. so here's the thing..i have a class from where i created an array with the time, name, and position of each movieclip data.. and wanted it to go through each one and execute at a certain time.. So i tried something like this:
[Code]...
the first part works well.. but its when i try and add it to the stage that i get confused.. i tried something but i think its wrong.. can anyone help me? Basicly i want flash to get the array.. use index 1 for the name.. index 2 for the x position and index 3 for the y position.. but all this name referencing in as3 really confuses me.
View 7 Replies
Jan 15, 2009
Does flash have an equivalent to Flex'sApplication.application.[insert application method or propertyI want to get access from an as3 class file to the mainstage. a call to this.root from the stage to the class will notwork because I need the root object stage to execute an addChild
View 6 Replies
Aug 15, 2009
i have a class from where i created an array with the time, name, and position of each movieclip data.. and wanted it to go through each one and execute at a certain time.. So i tried something like this:[code]the first part works well.. but its when i try and add it to the stage. Basicly i want flash to get the array.. use index 1 for the name.. index 2 for the x position and index 3 for the y position.i have already linked the movieclips on the stage
View 1 Replies
May 25, 2010
Im sure this is quite simple but for some reason I cant get it to work, and it does not throw an error so I dont know whats wrong...
In the library of the main swf file a movie called navigation has been exported to class: 'NavMC'[code]...
View 2 Replies
Jan 18, 2011
I'm currently working on a game. I'm breaking down each piece of the game into individual classes and movieclips. The intro begins by going to the main menu which is a MC in my fla library. This is called through the document class. then all actions the main menu MC performs are commanded through the MainMenu class. When starting the actual game, MainMenu calls a function from the document class, after it is removed from the stage, that puts an empty movieclip called Level on the stage.
View 2 Replies
Sep 5, 2009
im trying to create a separate class so i can create a custom mouse. But i need to make it so that every time the mouse moves then something happens. as in it dissapers and after 5 seconds the timer resets. I have the code and it works in my .fla file, but im not sure its possible to put it in a class file and have it be the class of the .fla.
View 16 Replies
Jun 5, 2009
How do you add several similar movie clips to the stage from the Document Class?
E.g. I've got four different movie clips called ball0_mc up to ball3_mc.
Also, how do I add each movie clip to random points within the stage parameters?
View 1 Replies
Dec 28, 2009
I want to move my multiple externally loaded images a little each time they are added to the stage along the x axis via the Loader class. It all works - But HOW do I access the added graphic synatically, so i can change its x pos?! Ive tried picLoader.x ... but that's the Loader - NOT the image...??
Code:
private function setPics():void
{
for(var i:int = 0; i < xItems; i++)
[Code].....
View 2 Replies
Jan 21, 2012
There is a button inside MovieClip1 and once it is clicked movieclip2 apeares inside movieclip3.
View 3 Replies