ActionScript 3.0 :: Accessing MovieClips That Have Been Created In A Different Class?

Dec 15, 2009

I am able to dynamically create an object on the stage with a function, but I am at a loss for how to access and manipulate the properties of that object from my Main Class.

in my Main Class I have:

ActionScript Code:
NLP_addChild.addObject(stage)
// NLP_addChild is the other class  addObject() is the function

in NLP_addChild Class appears the following:

ActionScript Code:
public static function addObject(stage:Stage)
{
var myCircle:MovieClip = new circle()

[code]....

myCircle displays correctly on the stage, myCircle is correctly assigned an x of 300. But myCircle x property cannot be assigned from my main class.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Accessing Dynamically Created Movieclips

Nov 21, 2008

I have an application that I am adding movieclips to a container movieclip through a for loop and repeatedly calling myClip.addChild(theNewClip). Now I have a dozen clips in my container and it seems like the only way to access the clip is to use the getChildByName() method and cast it into a temporary clip so I can get at the its properties.

Is this the best and/or only way to do this? Does the old AS2 myContainer["theName"].property not work with dynamically created movieclips? It doesn't seem to work for me anymore.

access a dynamically created movie clip.

View 1 Replies

ActionScript 3.0 :: Accessing Dynamically Created Movieclips?

Nov 21, 2008

I have an application that I am adding movieclips to a container movieclip through a for loop and repeatedly calling myClip.addChild(theNewClip). Now I have a dozen clips in my container and it seems like the only way to access the clip is to use the getChildByName() method and cast it into a temporary clip so I can get at the its properties.

Is this the best and/or only way to do this? Does the old AS2 myContainer["theName"].property not work with dynamically created movieclips? It doesn't seem to work for me anymore.

access a dynamically created movie clip.

View 1 Replies

ActionScript 3.0 :: Accessing Nested Dynamically Created MovieClips From Main Timeline

Feb 1, 2010

I have a movie clip menu on a main timeline and inside that movie clip I have created four buttons dynamically. How to access those nested buttons/movieClips (add event listeners etc) from main timeline? Here I am adding menu to the display list on main timeline:

[Code]...

View 2 Replies

Actionscript 3 :: Accessing GUI-created Elements In A Class Definition File?

Mar 18, 2010

I've used the GUI to create a rectangle that I turned into a button symbol (SimpleButton). I then edited the button so that it had 4 different button states and a text layer on top. I then created a class definition file for this object so that I could dynamically change the label text (the text layer) when adding instances of this button to the stage.

I was able to create and link a class file (DynamicButton.as) just fine, but when I try to access the text field that I created on the button, I get the error:

"Access of possibly undefined property btnLabel through a reference with static type com.examples:DynamicButton."

when i couldn't get that to work, I decided I'd try adding the TextField directly within the class definition file, using the following code:

package com.examples
{
import flash.display.Sprite;
import flash.display.SimpleButton;

[Code].....

The problem is that I can't seem to add the TextField to the SimpleButton, as it's not a display object. So, I tried adding it to the parent of the simple button (and I figured, I'd just place it exactly above the button). But then I get a "null object reference." error.

is there a way to access GUI-created elements from w/i a class definition file? How would I add the TextField to the button using only AS3 inside of a my class definition file?

View 1 Replies

ActionScript 3.0 :: Accessing Movieclips From Class

Mar 14, 2012

I'm having a lot of trouble understanding a certain thing.I'm creating a child of a symbol in my 'main' class.[code]I have no idea how to access 'player' from a seperate class? I would like to change x and y coords from a seperate class. However when I use code like 'player.x = player.x + 2' i get the error message Line 17 1120: Access of undefined property player.I guess in the most simple words, I do not know how to access symbols or their children from a class that is not the document class.[code]Basically I just am curious as to why I can't simply access these items from another class?

View 2 Replies

ActionScript 3 :: Adding EventListener To MovieClips Created By Class

Feb 29, 2012

I am trying to add evenListeners to movieClips that are created by a method in one of my Classes. Creating an instance of my class from the main timeline and then adding that instance to the stage.:

//MY CLASS
var createSlide:AddItems = new AddItems();
var scrollClip:Sprite = new Sprite();
addChild(scrollClip);
//ADDIMAGES CREATES 4 MOVIECLIPS
createSlide.addImages(BG,image1,image2,image3,image4);
//ADD TO STAGE
scrollClip.addChild(createSlide);

So how do I add event listeners to the movieClips created by createSlide?

View 3 Replies

ActionScript 2.0 :: MouseDown On Dynamically Created MovieClips (with Class)

May 7, 2010

I am working on a tile based game in which you will be able to slide the tiles back and forth, up and down along a grid.

I have created a Class called Tile and have dynamically added the movieclips to the stage in a grid like so:

Code:
for(i=0;i<7;i++){
for(j=0;j<7;j++){
var t = _root["gameboard"].attachMovie("Tile", "tile_" + i + "_" + j,

[Code].....

View 2 Replies

ActionScript 3.0 :: Accessing MovieClips Inside Custom Class

Oct 1, 2009

After resolving one issue, another error has surfaced in my custom class. This class displays a dialogBox and the dialogBox has some interactive MovieClips like btnOK_mc Button.On creating an object of the said class, it reports errors like "Access of undefined property btnOK_mc".[code]I understand that it is an issue of the Scope of these controls; but don't know, how to define these MCs; so that they look like Public. I may be just out of track on the issue.

View 8 Replies

Flash - Accessing Nested Movieclips From Main Movieclip Class?

Feb 16, 2011

I have a MovieClip, that I'm going to add to the display list with my document class at runtime beacuase there will be many instances of it. The MoviClip "box" has 3 more MovieClip instances inside it,and each of those three have two more.It looks like this:

box
circle 0
oval0
oval1

[code]....

View 2 Replies

ActionScript 3.0 :: Accessing MC #s Created With AddChild?

Oct 13, 2009

The following code adds 10 instances of circleMC to the stage. Inside circleMC is a dyn text field that increases in number from 1 - 10 so I have numbered circles on the stage.Each circle needs to open an infoBox which will contain variables unique to that box. I can't figure out how to address each infoBox. How would I say something like on circle1 set infoBox1.visible=true?

code:
var jurNum:uint = 0;
addBtn.addEventListener(MouseEvent.CLICK, onAdd);
function onAdd(evt:MouseEvent):void {[code]........

View 8 Replies

ActionScript 2.0 :: Accessing Newly Created MC?

Dec 30, 2003

I created a MC with a simple createMovieClip, in which I load a movie. This works.

[AS]
_root.createEmptyMovieClip("pmpPlay", 2);
loadmovie("play.jpg", pmpPlay);

[code].....

View 9 Replies

ActionScript 3.0 :: Accessing Movieclips Within Other Movieclips?

Oct 5, 2008

I am still transfering from AS2 to AS3 and right now i am having a very annoying problem. THE STRUCTURE:
Maintimeline contains 2 buttons that i want to use to access children in a bunch of movieclips. rectangle_mc has circle_mc circle_mc contains xx_mc xx_mc contains wtf_mc placed on frame 1 on maintimeline Why can't flash see my nested movieclips? I remember in AS2 you could go down the line:

[Code]...

View 15 Replies

Flash :: Accessing Movieclips In Movieclips?

Jul 30, 2010

I am starting with AS3 programming icm with Flash Builder 4.I have created a "Main" class which is the initial stage.On this stage there is a movieclip called mcMain.In this mcMain is 4 other movieclips: mcStats1 mcStats2 mcStats3 mcStats4 .How can I access these mcStats1-4 from the code to make them go to another frame?I tried:

var t:MovieClip = MovieClip(getChildByName("mcMain"));
t.getChildByName("mcStats1").gotoAndPlay(3);

But that just keeps giving me null reference errors:TypeError: Error #1009: Cannot access a property or method of a null object reference.

View 4 Replies

ActionScript 3.0 :: Accessing Dynamically Created Objects?

Mar 17, 2009

If objects are created dynamically in AS3, using code like this:

for (var num:Number = 0; num<10; num++){
var txtFld:TextField = new TextField();
txtFld.text = 'This is the original text';
this.addChild(txtFld);
}

then later, i want to changet the text of one of the TextFields, how can I do that? The only instance listed in the variables is a single instance of "txtFld" and it is the last one that is created. How can I access the others?

View 1 Replies

Flex :: Accessing A Canvas Created In Another Function?

May 11, 2010

I created a canvas in a function, and in his function I have a CLICK eventlistener. On the click I want to manipulate what's inside the canvas. Will referencing the canvas using the Dictionary class work?

View 1 Replies

ActionScript 3.0 :: Accessing Child In Dynamically Created MC?

Oct 16, 2011

I have a MC with 2 children in library:

myParent1 -> myChild1
-> myChild2

when I put it on stage in editor and run following script, both trace are valid and give response "true":

ActionScript Code:
trace (myParent1.myChild2.visible);  // true[code]....

but when I put MC on stage dynamically via addChild, the first trace gives
compiler error while second trace works(error: Scene 1, Layer 'Layer 1', Frame 1, Line 81120: Access of undefined property myParent1)

[code]....

View 3 Replies

ActionScript 3.0 :: Accessing Items Created In Loop?

Mar 14, 2012

If you have a series of sprites created in a loop:

ActionScript Code:
for (var i:int = 0; i < numItems.length(); i++) {
var mySprite:Sprite = new Sprite();
}

Which you added event listeners to, in the same loop:

ActionScript Code:
for (var i:int = 0; i < numItems.length(); i++) {
var mySprite:Sprite = new Sprite();
mySprite.addEventListener(....
}

How can you remove those listeners, then add them again? I need to kill and re-enable the listeners of many sprites which were created that way.

View 4 Replies

Actionscript 3.0 :: Accessing SetInterval() ID Created Within A Function

Jan 7, 2009

I am creating a text scroller and am having problems with clearInterval - the text starts scrolling, but it won't stop after I try to clear it upon a button click.

1. I declare a var (uint) equal to a setInterval() call within a function (if the text exceeds the width of the textField)

2. I have a button that "turns off" the mp3 player (swf) and resets all the text fields.

3. I can't seem to access the setInterval ID var from within the click handler.

I have declared the var (uint) at the root level, then set it to setInterval() within the function. Then I tried to access it from the click handler. I thought this would work since it's global at that point, but it doesn't.

Here's a link to the page so you can see how it doesn't work [URL] (you have to click on the last link with the long client name)

Here's the code that's involved with this function (of course this is only the relevant code, but I would post the fla when done for anyone who wants to use it):

Code: Select all//::: SCROLL DISPLAY TEXT
function scrollDisplays():void
{
(trackTextField.textWidth > trackTextField.width) ?

[Code].....

View 8 Replies

ActionScript 3.0 :: Accessing Newly Created Childs T

Jul 20, 2009

I have a script that randomly pops out circles all over the stage. However, I want them to disappear once I roll my mouse over them (and only the ones I roll over, not all the instances).So if I have code like this in a function:[code]And then I have a mouse_over function in the same class, how do I tell it to removeChild? Since the stars are instances of the object, they are giving instance names like instance67, which makes them hard to remove.

View 2 Replies

ActionScript 3.0 :: Accessing Mc's On Stage That Were Created Using A Loops And Arrays?

Feb 4, 2010

basically what im trying to do is create a jigsaw game, simple eh! i have nothing on the stage at compile time, only four items in the library. these are four different puzzle pieces with export names of "piece01" "piece02" "piece03" and "piece04". my AS goes like this:

ActionScript Code:
var puzzlePieces:Array = ["piece01","piece02","piece03","piece04"];
var len:int = puzzlePieces.length;
var pieceList:Array = [];

[Code]....

how do i or what name do i give the addEventListener to? (if that makes sense)
to be able to drag them.

View 5 Replies

ActionScript 3.0 :: Accessing Dynamically Created Movie Clips?

Aug 23, 2010

I'm trying to build a relatively simple photo gallery where the images are loaded via XML into thumbnail movieclips that have been dynamically generated, positioned and added to the display stack. I used a simple for loop to generate the thumbs and traced the thumb.name to make sure they all had unique instance names. I then added a listener to the thumb mcs in the for loop and created a function that traces the instance name of each thumb mc, to see if all is working, however, every thumb mc traces the same instance name. My question is how can I create the thumbs dynamically in a loop and, essentially, make them buttons that would display the big the full size photo.

Here is my prototype code:

ActionScript Code:
for (var i=0; i<12; i++) {
var thumb_mc:MovieClip = new thumb();
// Positioning: The xy coordinates are in an array outside the for loop.

[Code]......

View 4 Replies

ActionScript 2.0 :: On Press - Accessing Buttons Created With A Loop?

Sep 27, 2007

I have generated a series of buttons using this:

Code:
duplicateMovieClip(sign, "sign"+z, z)
while still inside the loop that is creating the buttons I can get to each sign:

[code].....

View 3 Replies

ActionScript 3.0 :: Accessing Movieclip Properties Which Are Created During Runtime?

Mar 9, 2011

how to access the properties of the movieclips which are created during runtime.

Ex:
var dotCount:uint = 0;
for(var i:uint = 0; i<=10;i++)
{
var circle:MovieClip = new MovieClip();

[Code]....

How can I access a property (say .alpha or any other property) of "circle6"??

View 2 Replies

ActionScript 3.0 :: Accessing A Property Of An Instance Inside A Dynamically Created MC

Sep 17, 2009

Im dynamically creating an instance of a movieclip, call it a game piece. This game piece has 4 frames, each with a movieclip called base(although one is red, one blue, one green, one yellow). When the game piece is created I set the frame to indicate player color. Im also changing the alpha of base to 1.0 when its being dragged, 0.5 when its dropped.

Using the following code, everything works fine if the game piece color is set to the base in frame 1 (red). If the game piece is created and the timeline moved to a frame other than 1, I throw an error when trying to access base.alpha (this would be the second, third, and fourth instances of base in the game piece timeline). Heres the strange part, this is only a problem when the game piece is first created and added to the display list. Once created, even after the error has been thrown, I can access the alpha of bases 2, 3, and 4 in the drag start/stop listeners. Heres a link to the work in progress, and the relevant sections of code (shortened for brevity, t1 is the top left piece on the pallet, others just repeat the same code):[URL]
 
[Code]....

View 3 Replies

Actionscript 3 :: Accessing The Gradient Of A Rectangle Created In The Flash Editor?

Jan 7, 2011

I need to export the gradient settings of a rectangle created with the Flash editor. Our artist creates a rectangle with the gradient in a .fla. Is it possible to retrieve the gradient parameters from the .swf or from a flash plugin I could write?

View 3 Replies

ActionScript 3.0 :: Dynamic Created MovieClip - Accessing Visible Property

Sep 23, 2010

I am having problems while creating object with actionscript, I am new to it and I am getting some errors. I am creating my object this way

Code:
var myMC:MovieClip = new MovieClip();
myMC.x = 50;
myMC.y = 50;
myMC.name = "hunterToken";
tCursos.addChild(myMC);
And it is created, so far everything's good

Later I try to access the visible property, and I get an error
Code:
tCursos.hunterToken.visible=false;
And I get this error:
Code:
TypeError: Error #1010: A term is undefined and has no properties.
at newSiteHTR_fla::mCursos1_1/go()[newSiteHTR_fla.mCursos1_1::frame1:157]

View 3 Replies

ActionScript 2.0 :: Difficulty Accessing Dynamically Created Clips Properties?

Jan 29, 2008

the variables listHeight and maskHeight won't populate. they come up 'undefined'.

here's the code essence:

Code:
xml.onLoad = function(success:Boolean)
{
var stuff:Array = xml.firstChild.childNodes;
if (success)

[Code]....

View 4 Replies

ActionScript 3.0 :: Flash Accessing A Nested MC's Frame When Created By Code

Nov 5, 2010

I have been searching for a resolution to this for weeks but to no avail. I have made a game already where I had a character names mainChar placed on the screen using the Flash IDE. With this method, i was able to access it's various nested movieclips such as mainChar.walk and mainChar.jump. The problem is that I am making a new game where the main character is loaded via external code using hero:mainChar = new mainChar(); in the external file. after this, i would like to check what the current frame of a nested movieclip is. for example, hero.walk.currentFrame. however, by initializing it using the external code, as opposed to my previous method of placing it right on the stage, the compiler is not picking up of hero.walk.currentFrame stating that "a term is undefined and has no properties (error type 1010)". Is there any way for me to let the compiler know that the nested movieclip is there. It's odd because i can state hero.gotoAndStop("walk"), but when i say hero.walk it gives an error, so i know it isnt spelling.

View 4 Replies

ActionScript 3.0 :: Accessing Dynamic Text In A Dynamically Created Movielcip?

Mar 10, 2011

I created a movieclip and linked it to a class called CustomButton. Inside the movie clip is a text field with name btnText. I then created a few buttons with this code:

Code:
var newBtn:CustomButton = new CustomButton();
// set properties of new button
newBtn.x = INIT_X;

[code]....

So far, so good. Everything works ok and the code sets the text of the new movieclip. Now, I wanted to actually write the CustomButton class and add some properties and eventually do other stuff with it and so I wrote this:

Code:
package
{
import flash.display.MovieClip;

[code]....

On trying my script again, it gives me this error:

Code:1119: Access of possibly undefined property text through a reference with static type String

the line of code it refers to is:

Code:
newBtn.btnText.text = text;

View 1 Replies







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