ActionScript 2.0 :: Referencing A Field In A Dynamically Created Movie?

Jul 17, 2010

I'm using Flash 8.

I've made 18 movies in a for loop. I'm trying to modify a text field in those movies. I am unable to do so in the for loop. Something with my referencing is wrong.

The dynamic text field in each movie is named "eventText".

ActionScript Code:
_root.attachMovie(myData["loadHandler"+x]+"Movie", myData["event"+x], x, {_x:100, _y:100});
_root.myData["event"+x].eventText.text = "test";

If I hardcode the event name for testing purposes, it puts the data in correctly:

ActionScript Code:
_root.houseSale2.eventText.text = "test";

View 4 Replies


Similar Posts:


IDE :: Referencing A Dynamically Created Clip?

Jan 10, 2010

here is a snippet of code in first frame of the movie I have trouble with:

----------------
for (var i = 0; i < 5; i++) {
var container:MovieClip = new MovieClip();
this.addChild(container);

[Code]....

I am getting an error message: A term is undefined and has no properties. I checked list of objects and container0.one and it's there but I can not get to container0.one.usecase

View 6 Replies

ActionScript 2.0 :: Referencing Dynamically Created Variables?

Dec 9, 2006

I have a number of 'TweenField' instances created in a for loop. The problem is that each time the loop increments, the 'myTweenField' variable has the same name, so I don't know how they can be referenced individually from elsewhere in the script. How can I rewrite it so that each instance has a unique name, and how would I then reference it from outside the loop?

Code:
package
{

[code].....

View 11 Replies

ActionScript 2.0 :: Referencing/loading A Dynamically Created Movieclip Variable?

May 23, 2008

I am trying to load an image in to a dynamically created movieclip, which is:

_root.mySlider."+stripX2(band[i][0])+i

but I can't seem to reference it. I can load the movie into _root.mySlider, but if I add the dynamic element (stripX2(band[i][0])+i) without quotes it it doesn't load. If I load with quotes i.e.

"_root.mySlider."+stripX2(band[i][0])+i

flash doesn't allow strings in movieClip variables.The code I'm using is belowm, it's the second to last line thats causing the problem:

var loadListener:Object = new Object();
loadListener.onLoadComplete = function(target_mc:MovieClip):Void {
trace(">> target_mc._width: "+target_mc._width);[code]......

View 2 Replies

ActionScript 3.0 :: Referencing Text Field In Another Movie?

Mar 18, 2009

I have a main movie that has a sidebar. The sidebar is it's own movieclip that contains two frames because it has two tabs on it. I would like to reference a dynamic text field that is contained in the second frame of the sidebar movieclip. When I try to do so, I receive the following error:

TypeError: Error #1009: Cannot access a property or method of a null object reference.
at XMLTest_fla::MainTimeline/LoadXML()
at flash.events::EventDispatcher/dispatchEventFunction()

[Code]....

Is there a way to reference an item in the second frame of a movieclip?

View 5 Replies

ActionScript 1/2 :: Referencing : Duplicated Movie Clip With A Dynamic Text Field?

Jun 23, 2011

I have created a movie clip with the following path to a dynamic text field:
 
_root.i_lotteryball1.i_ballstrip.i_text.d_text1.text = _global.text1;
 
I have then duplicated the 'i_lotteryball1' movie clip, and called it 'i_lotteryball2'.When I try:
 
_root.i_lotteryball2.i_ballstrip.i_text.d_text1.text = _global.text2;
 
It changes the text in  'i_lotteryball1' text field aswell as  'i_lotteryball2' text field with the value of '_global.text2' How can I update each text field with different values.When I try to change the instance name of the text field inside 'i_lotteryball2'  to 'd_text2', it changes the 'i_lotteryball1' text field instance name aswell to 'd_text2'!
 
My objective:
  
_root.i_lotteryball1.i_ballstrip.i_text.d_text1.text = _global.text1;
_root.i_lotteryball2.i_ballstrip.i_text.d_text2.text = _global.text1;

View 7 Replies

ActionScript 3.0 :: Dynamically Created Multiple Movie Clips?

Feb 6, 2009

Trying to add a set of movie clips to the stage in a loop. I need to be able to reference them on a mouseDown function - but the projHolder var in the mouse event is coming up undefined. Any ideas how to accomplish something like this?

for (var i=0; i <intWorkCount; i++) {
var projHolder:MovieClip = new MovieClip();
projHolder.name = 'projHolder' + (i);

[code]...

View 5 Replies

ActionScript 3.0 :: Removing Dynamically Created Movie Clips?

Apr 29, 2011

I am having trouble clearing out a shell movie clip that has other mcs dynamically placed inside it. Something like this;

var myShell:shell_mc = new shell_mc;addChild(myShell);//
//---obviously these buttons are on stage already---buildBtn_mc.addEventListener(MouseEvent.CLICK, buildFunction);clearBtn_mc.addEventListener(MouseEvent.CLICK,

[Code]....

View 4 Replies

ActionScript 2.0 :: Resize A Dynamically Created Movie Clip?

Jan 22, 2009

So I have a movieclip that I am dynamically adding to the stage when a user clicks a particular button. There are multiple button that each result in the movieclip getting attached to the staged and scaled to a different particular size. Instead of attaching a new instance of the movieclip every time a button is clicked, I only want to attach a new movieclip the first time one of the buttons are clicked and then scale the dynamically added movie to the size specified in the functions for all of the subsequent button clicks. To be clear, I want to attach the movieclip on the first click and then scale it for all of the subsequent clicks.

Here is the code I am using for the buttons:

ActionScript Code:
stop();
videosBTN.onRelease= function() {

[Code]....

View 4 Replies

ActionScript 3.0 :: Dynamically Name A Variable Or Created Movie Clip?

Dec 10, 2009

Is there any way to dynamically name a varaiable or created movie clip? I know that I could make an array of movie clips, but what I really want to do is make a new movie clipe name based on another name. The reason I want to do so is that I want to pass a movie clip to a function and have it make a new movie clip (to contain the first) with a slight variation of the test such as "frame" or "handle" which I can then use to center the source movie clip.

View 1 Replies

ActionScript 3.0 :: Naming Dynamically Created Movie Clips?

Jan 14, 2010

i am using a loop function to generate an place instances of a movie clip on the stage. the movie clips are being used as buttons, they have text in them. here is the code

ActionScript Code:
// butAniMini is an external custom class animating the buttons
var _sideBarBut:butAniMini;
//variables to hold the first buttons x an y position

[code]...

the problem is that i dont no how to set the text in the buttons so u can change the text and add event listeners etc to them

View 3 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 :: Function On Dynamically Created Movie Clips?

Jun 6, 2006

importSubtemplate = new XML();
importSubtemplate.ignoreWhite = true;
importSubtemplate.onLoad = function(success) {

[code].....

View 2 Replies

ActionScript 3.0 :: Targeting Dynamically Created Movie Clip?

Oct 6, 2009

i'm creating a menu where i place movieclips dynamiclly:

for each (var button:XML in XMLgothrough) {
//Create a new menu item
var menuItem:MenuItem=new MenuItem ;[code]....

but i keep getting a ReferenceError: Error #1065: Variable menuItem1 is not defined.at MethodInfo-359()error.

View 14 Replies

ActionScript 3.0 :: Animate Dynamically Created Movie Clip?

Nov 15, 2009

I created a movie clip [code]...

How can I animate this (slide to x position), since there is nothing in timeline ?

View 2 Replies

ActionScript 3.0 :: Referring To Dynamically Created Movie Clips?

Jan 21, 2010

There are five dynamically created movie clips inside my flash movie. Is there any way that I could refer to these from action script code?

View 4 Replies

ActionScript 3.0 :: Masking A Movie Clip Using Dynamically Created Sprite?

Feb 10, 2010

I just tried to use a sprite mask another movie clip .But it doesn't workis there any way to try thishere is my code

ActionScript Code:
sp = new Sprite();
addChild(sp);

[code]....

View 2 Replies

ActionScript 2.0 :: Attach Some Script To A Dynamically Created Movie Clip?

Dec 18, 2004

Is it possible to attach some script to a dynamically created movie Clip?

View 7 Replies

ActionScript 2.0 :: Move And Fade In Of Dynamically Created Movie Clips

Aug 15, 2005

get something to work. What I'm trying to achieve is this: there's a slideshow that automatically changes pictures every 10 secs (I've used a kirupa tutorial to achieve this). The pictures are loaded from an xml file, which also contains captions for the pictures. What I would like to do is to have the caption fade in and slightly move to the left with each picture change. E.g. picture 1 is displayed, caption 1 fades in, moves to the left and stays there; picture 2 is displayed, caption 2 fades in, moves to the left and stays there, and so on.

Code:
import mx.transitions.Tween;
import mx.transitions.easing.*;
delay = 10000;

[Code].....

View 6 Replies

ActionScript 2.0 :: Created A Grid With Over 200 Movie Clips Dynamically Using A For Loop?

Dec 9, 2005

I've been staring at the screen too long and I'm sure the answer is simple but this has been bugging me for a bit now. I've created a grid with over 200 movie clips dynamically using a for loop. I was wondering if there was a way to assign rollovers and such to each new clip using the same loop.

I've been poking around with it a bit but can't seem to get it working and sure don't want to write over 200 rollover functions so any help would be great.

View 7 Replies

ActionScript 2.0 :: Assign Properties To Dynamically Created Movie Clips?

Oct 28, 2006

I am trying to use the duplicateMovieClip event to create a row of custom movie clips dynamically and I would like to be able to set the _alpha properties on each object depending on an event i am firing in a different movie.[code]...

View 4 Replies

ActionScript 3.0 :: Targeting Dynamically Created MC Within Another Dynamically Created MC?

Feb 17, 2010

I'm dynamically creating movieclips with dynamically created movieclips inside them and am having trouble with targeting them.Below is a simplified example of what I'm trying to achieve, in the real file there are a lot more movieclips and I'm creating and naming them with a for loop.

This one is just one Sprite created inside another sprite. I can target the top level sprite named "testname". However when i try target the nested MC it throws an error.The bottom couple of traces are just test MCs I've made to make sure i got the syntax right, on targeting nested movieclips.

PHP Code:

var holder:Sprite = new test1();holder.name = "testname";this.addChild(holder);var holder2:Sprite = new test2();holder2.name = "testname2";holder.addChild(holder2);trace(getChildByName("testname").x); //this one traces finetrace(getChildByName("testname").getChildByName("testname2").x);//this throws up an errortrace(testclip1.x);trace(testclip1.testclip2.x);

View 1 Replies

ActionScript 3.0 :: Referencing Loader After Created In Loop

Nov 11, 2010

I am creating a loop which loadsimages to newly created loaders.After each loader completes, I'd like to pass it through another function.[code]It seems like if the above function was my complete_handler but in the place of loader_names[k] would be the completed loader.

View 5 Replies

Actionscript 3 :: Referencing Loader After Created In Loop?

Nov 11, 2010

I am creating a loop which loadsimages to newly created loaders. After each loader completes, I'd like to pass it through another function Here's my loop of loaders where loader_names is an array of my loader names and overlay_files is an array of my file URLs

for (var j:int = 0; j < loader_names.length; j++) {
loader_names[j] = new Loader();
loader_names[j].contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
loader_names[j].load(new URLRequest(overlay_files[j]));
}

Once each image loads I want to overlay the image on a map here's a loop which does just that, only I do not know how to pass loaders into this function as they finish

function create_overlays(e:Event):void {
for (var k:int = 0; k < loader_names.length; k++) {
overlay_names[k] = new GroundOverlay(loader_names[k],
new LatLngBounds(new LatLng(46.669, -115.035), new LatLng(48.995,-112.079)));
}
}

View 1 Replies

ActionScript 2.0 :: Referencing Instances Created With AttachMovie?

Jun 8, 2007

I have a situation where I create many instances of an MC, one for each node in an XML file (using a for loop), using attachMovie.

Code:
var photo_mc = _root.center_mc.photosLevel1_mc.attachMovie("photoFrame_mc", photoName, itemCount);

[code].....

View 7 Replies

ActionScript 3.0 :: Referencing Movieclip Created In Another Function?

Oct 14, 2009

wrote a couple of small games using AS 2.0. One of the things I found easiest about AS 2.0 is that a MovieClip created using _root. attachMovieClip() inside of one function was accessible to every other function. For instance:

Code:

function AddClip() {
TheClip = _root.attachMovie("Object", "TheClip"+ClipCount, _root.getNextHighestDepth(), {_x:30, _y:30})
}[code]....

This causes an error, because the MovieClip variable was declared inside of a function and when the function ended, the MovieClip variable was erased. Is there any way of doing this without declaring the MovieClip variable outside of the function? I want to be able to create an unknown amount of these movieclips on the fly, so I can't just declare them outside of the function.

View 9 Replies

ActionScript 3.0 :: Referencing A Newly Created Class Instance

Jun 16, 2011

I am completely new to actionscript although I do come from a OOP background. I have been asked to trial Flash and Actionscript 3 in particular - so I do come with a few preconceptions on how I expect actionscript to behave. I have a problem I donot understand. I have created a new class and to test it I use a simple test harness in the form of a .fla file.

The issue I have is when I create a new instance of the class and assign it to a variable, subsequent background changes to that instance of the class are not 'picked-up' when referenced through the variable. I would expect that given instance of class could be assigned to many different variables and any updates using one variable would accessible using any of the other variables.

[code]...

View 1 Replies

ActionScript 2.0 :: [Flash 8] Referencing Dynamic MCs Created Using AttachMovie

Dec 7, 2010

I am adding a bunch of MC's(linkage ID:buttonHolder) dynamically using a for loop and attachMovie. If I want to dynamically add an onRelease function to each of those MCs,so that each of them links to different links how would I accomplish that? here's where i've reached so far..

var depth:Number=0;
var nextY:Number=77;
for (i=0; i<5; i++)

[Code].....

View 1 Replies

ActionScript 3.0 :: Dynamically Loading External Jpgs Into A Dynamically Created MC?

May 18, 2009

Essentially, I've got a MC container that's created dynamically based off an XML file (basically for every <title></title> I've got, it makes a new "card"). Now within the context of each <title></title> grouping I've got <imgs></imgs> in which I specify the path to images that are related.All of that works perfectly, save for the external jpg files actually appearing on the stage. The MC I add them to does, but the external image doesn't.My problem is- I can't add the external images until they're completely loaded (or so it appears). The thumbnail BG I use is blank. So I know for a fact that the thumbnail BG isn't occluding the loaded thumbnails.

View 2 Replies

ActionScript 2.0 :: Referencing A Text Field Inside A Movieclip?

Feb 2, 2011

I am trying to enter a student name into a textfield (student1_txt). I just can't seem to work out the correct syntax. The student numbers and names are in an array. I have the fields working fine outside of the movie clip but not inside.

I wonder if anyone can see what is wrong in the statement below:

_root.desk1_mc["student"+heidedata[0]+"_txt"].text = myStudents[0];

View 8 Replies







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