ActionScript 2.0 :: Passing A Variable From The Stage To A Movie Clip?

Sep 13, 2011

I have a big bit of action script that I want to reuse on various frames. Rather than write it out on each frame I want to embed the script within a movie clip and embed that movie clip on each frame that it is required to be used on.

In order to do that I need to pass a different value into the movie clip.

Basically the script creates 20 pages on one frame, 40 pages on another frame and 60 on the last page.

This is the bit of code that needs to have the number fed to it:

ActionScript Code:
var myArray:Array = newArray(20);

The number 20 is currently set manually. I ideally want to write this within the movie clip:

ActionScript Code:
var myArray:Array = newArray(frameVal);

and on the stage I want to set the variable like this:

Frame 1:

ActionScript Code:
var frameVal:Number = 20;

Frame 2:

ActionScript Code:
var frameVal:Number = 40;

Frame 3:

ActionScript Code:
var frameVal:Number = 60;

The movie clip that contains my code has an instance name of "testStart"

how do I get it to pass the frameVal into the movie clip?

View 2 Replies


Similar Posts:


ActionScript 1/2 :: Passing Variable From Scene To Movie Clip?

Mar 11, 2010

I have a problem with my actionscript. I can't pass the variable from scene 1 textbox to a movie clip textbox.My scene 1 textbox has a name of resultText. My movie clip is call over_mc which is on the symbols definition.the textbox for the movie clips is call finalResultText.here is my code:

_root.over_mc.finalResultText.text = resultText.text;

View 2 Replies

ActionScript 3.0 :: Passing Stage/root Variables To Movie Clip?

Oct 12, 2009

Just need to figure out how to pass root level variable to a movie clip which contains a dynamic text box to display the passed variable. How is this possible? I usually use global variables when i was coding in AS2...but it appears this feature is dropped in AS3.

View 4 Replies

ActionScript 3.0 :: Change A Stage Variable From Within A Movie Clip?

Jun 21, 2011

I have a movie clip that is executing some code. When this code is complete, I want it to change a variable that is defined on the stage (root?). I know how to get the condition part of it, but quite literally: what do I put to change a variable located on the stage from within a movie clip?

View 1 Replies

Flash :: AS3 Add Movie Clip To Stage Using Variable Which Holds The MC Name

Dec 1, 2010

how to add a movie clip to the stage from the library but i'm strugling to do it when the I need to load a movie clip from the library when the name of the movie clip is held in a variable.

for(var i:Number = 0; i < 64; i++)
{
var blueIconS:blueIcon = new blueIcon();
addChild(blueIconS);

[Code]....

The above code works for adding the blueIcon but I have a variable in that loop which tells which icon to load.

sectorsMCs[jewelsIDs[i]]

The above will tell me what MC name to load but how do I load a MC from library by that variable value?

View 1 Replies

ActionScript 3.0 :: Changing A Variable In A Class From A Movie Clip On The Stage

Jan 14, 2012

I'm trying to change a varialbe in a seperate class from inside a movieclip that I have on the stage in the timeline, but the variable I'm trying to change keeps coming up as null instead of what I am trying to change it to. How is this usually done?

View 6 Replies

ActionScript 3.0 :: Passing Variable From Document Class To Movie Clip Class?

Oct 12, 2010

i have a movie clip which is exported for ActionScript , i want to get a variable from the document class into the movie clip class i tried this but there was an error !!

ActionScript Code:
var main:Main=new Main();
main.txtScore.text="hello";

View 1 Replies

Actionscript 3.0 :: Catch A Variable Content (set On The Main Timeline) From A Movie Clip Added To The Stage?

Sep 23, 2010

I'm trying to catch a variable content (set on the main timeline) from a movie clip added to the stage. I need to set a condition with that variable, so here's my line :

Code: Select allif (MovieClip(root).screenMode == ("full"))

But it's not working, I'm also trying to trace the variable with that command :

Code: Select alltrace(MovieClip(root)[screenMode]);

But this doesn't work too.

View 1 Replies

ActionScript 3.0 :: Passing Variable From Main Movie To Loaded Swf?

Sep 4, 2008

i am using flash cs3,i have a main movie that load many swf using a document class..i need to pass "userid" variable from the main movie to loaded swf so they can change their content dynamically.

View 7 Replies

ActionScript 3.0 :: Passing A Variable Change Through Multiple Movie Clips?

Feb 26, 2011

Movie 3_mc is inside the timeline of 2_mc which is inside the timeline of 1_mc.1_mc has an integer variable called var1.I need to change the value of var1 by a mouse event for which the listener is on the timeline of 3_mc.I know that I can change the value of a variable of the parent movieclip (in this case 2_mc) from an event in 3_mc by using;

ActionScript Code:
MovieClip(parent).var++;

View 4 Replies

ActionScript 2.0 :: Passing Variable To Root To Play After Embedded Movie

Jan 5, 2012

I have a movie embedded and I am passing a variable to the root movie for it to play when the embedded movie is complete. I know the variable is getting passed because I am displaying the value in as dynamic text but the parent movie will not play. This is what I have:

stop();
row = 0;
if (row == 1) {
this.gotoAndPlay(2);
}

Row is being passed from the embedded movie as
_root.row = 1;

I know there is a way to tell the parent movie to play from the embedded movie by using TellTarget but I would like to find out why this doesn't work.

View 1 Replies

ActionScript 3.0 :: Passing A String As A Movie Clip Instance Name?

Oct 17, 2010

I thought this would be a simple one, but i am stumped.  So I resulted to using this less than optimal solution, just to get it working...

if (lobby.gamemap.selectedItem.label == "Map1") map.AddMap(new Map1)
else if (lobby.gamemap.selectedItem.label == "Map2") map.AddMap(new Map2)
//Map1 and Map2 are movie clips in my fla library, with linkage Map1 and Map2

[code]........

View 5 Replies

ActionScript 2.0 :: Load A Random Movie Clip From The Library To An Empty Clip On The Stage Called (bg_graphics)?

Oct 20, 2004

I want to load a random movie clip from the library to an empty clip on the stage called (bg_graphics). the clips in the library are called (green, blue, yellow).

View 5 Replies

ActionScript 2.0 :: Passing Variables From A Loaded Movie Clip To Main?

Mar 2, 2007

I can't seem to load a movie clip, and then pass some variables from that loaded movie clip back to through stage_mc it is loading into - to the SubClip.

The structure is as follows:

Main
>SubClip
>>Stage_mc

Where the new movie clip is loading into stage.

I need to pass two variables from the loaded clip into the SubClip. Simple vars to fill some dynamic text in SubClip.

I've done the whole _root.myvar thing, _parent, and _global.

View 5 Replies

ActionScript 2.0 :: Passing Variables - Movie Clip & Accordion Component?

Apr 4, 2010

I am trying to build a Calculator used in health circles to project next year's profit and loss etc. I am using flash cs3 and actionscript2.My flash project is based on accordion component with 6 child panes, each pane having a movie clip with input text, dynamic text etc.I have a couple of push buttons that has click eventhandlers taking care of calculations . All the calculative functions are in the actions layer frame 1.I need help in displaying the same calculated fields as dynamic text in a new movie clip in another layer before printing the same movie clip.The present situation is like this, I am able to calculate all the fields, but when i click a button to show a new movie clip with all the calculated fields, all the variables are displayed as "undefined".

the dynamic variables in the new movieclip is referenced correctly i guess, i use pp_acvcfy = myacc.overheads.acv_cfy; where myacc is the accordion component , overhead the child pane and acv_cfy the dynamic text inside the pane 'overhead'. pp_acvcfy is the dynamic text in the new movie clip. Please help

View 1 Replies

ActionScript 3.0 :: Delete A Variable Containing A Movie Clip Class And Recreate It With A Different Movie Clip Class?

Jul 1, 2009

In my project are pages of text with each word having a button that when pressed will display a movieclip presentation about that word (its pronounciation and spelling etc..). In the project I am working on now I have over 450 unique presentations of words to deal with. I don't want to have all of these hundreds of movie clips on the stage and tell them one at a time to stop and rewind and then have one play each time a word button is pressed. That seems to be very inefficient to me.

add movieclips to the stage using addChild(movieclipname) and remove them using removeChild(movieclipname) but there is a problem. I have hundreds of unique movieclips and I don't want to have to manage hundreds of variables containing the indivudual movieclip instancess. It is a real pain having to figure out what instance is still on the stage before i delete it.In Adobe Director all I have to do is this:

View 5 Replies

ActionScript 3.0 :: Flash - All Movie Clips To Be Placed On Stage With Equal Gap Between Each Movie Clip?

Sep 19, 2011

I have some (Eg. 10) Movie Clips on bottom of the Stage (aligned horizontally) with different sizes (different width & height). I want them to align vertically on middle of the stage with same gap (irrespective of their sizes) in between 2 Movie Clips. Is it possible using AS3 code?

View 3 Replies

ActionScript 3.0 :: Load An Image Or Clip To Stage Depending A Variable?

Jun 11, 2010

Is it possbile to make 'bumblebee' a variable?
 
var mybee:bumblebee = new bumblebee();

View 5 Replies

ActionScript 3.0 :: Movie Clip By Clicking On Movie Cilp On The Stage

Jul 5, 2009

I could code in movie clip by clicking on movie cilp on the stage but in As3 I could not do . Is this restricted to code on movie clip ?

View 7 Replies

ActionScript 3.0 :: Reaching A Movie On The Stage From Inside Another Movie Clip?

Dec 28, 2009

I'm trying to reach a body of text which i turned into a movie clip which is on the main stage, and have it scroll up/down whenever it rolls over the designated hot spots. Here's what i have.

stage.addEventListener(MouseEvent.MOUSE_MOVE,down1,false,0,true);
function down1(e:MouseEvent):void {
if (mouseX>=0 && mouseX<=42 && mouseY>111.1 && mouseY<146.1) {

[code].....

View 3 Replies

ActionScript 2.0 :: Set Variable Within Movie Clip?

Oct 30, 2010

On frame 1 of the main timeline I have a movieclip. The 1st frame of the movieclip stops, and requests a password. When the password is correct, the movie clip plays and stops again on frame 2 - where the user enters their name. I've named this variable 'name_txt', and the submit button will only continue if the variable is defined.

The problem comes when I try to get a dynamic text box in the main timeline to show the user's name - it just stays blank even through i've experimented setting the var / instance names to 'name_txt'. I think I have to set the variable to global or something, but cant seem to get it to work.

View 7 Replies

ActionScript 2.0 :: Use A Variable To Name A Movie Clip?

Mar 19, 2004

I am trying to duplicate a move clip and then set some of it's properties with actionscript. What's the notation to do this?

Here is my guess:

Code:
duplicateMovieClip(_root.event, ("event"+i), i);
[event+i]._y = ([event-i]._y)+([event+i].height);
[_root.event+i].eDate = ("4/2"+i);

[Code].....

View 4 Replies

ActionScript 2.0 :: Accessing Variable From A Movie Clip

Aug 30, 2009

I've got a simple ActionScript 1 FLA. The SWF will take incoming variables from SWFObject. e.g. txtVar01, txtVar02, txtVar03 On the first keyframe on the main stage, I have a dynamic textfield, whose 'Variable' name is 'txtVar01'. When I view the SWF in a web page, via SWFObject, the value in the textfield matches that taken from the SWFObject variable. BUT - I have a MoveClip in the FLA, which has 2 other dynamic textfields, called txtVar02 and txtVar03.

When I view the SWF in the web page, these are empty, even though variables are being passed via SWFObject. I guess because the dynamic textfields are within an MC and not on the main stage, they can't access the variable names. I tried adding this to the first frame on the stage:

[Code]....

View 2 Replies

ActionScript 1/2 :: Referencing A Movie Clip By Using A Variable?

Jun 2, 2009

I have been using this line of code to fade in a movie clip:

new Tween(background_mc, "_alpha", None.easeNone, 0, 100, .5, true);

Now, I want to accomplish the same thing, only this time by using an element from an array (bg_array[currentSlideNumber]) that stores the instance name "background_mc"
 
I've tried the following, but it doesn't work:

new Tween(bg_array[currentSlideNumber], "_alpha", None.easeNone, 0, 100, .5, true);

View 3 Replies

ActionScript 2.0 :: Using A Variable To Target A Movie Clip?

Jul 29, 2010

I found this tutorial which seems to do exactly what I'm trying to do (the only one I've found to date), except his technique doesn't seem to work for me at all. It doesn't really seem to say anywhere which version of Actionscript he uses, but at least it seems to show that what I'm trying to do is possible for someone, which is a start.I'm trying to do exactly what he describes--I have several squares on a grid that are numbered, eg.grid_0101, grid_0102, grid_0103, and so on, for about 100 squares altogether, and I want to be able to target a given square dynamically.This is the basis of the code I started with:

Code:
var digsquare_x:String = "01";
var digsquare_y:String = "03";

[code]......

View 2 Replies

ActionScript 3.0 :: Displaying A Variable In A Movie Clip?

Jan 21, 2010

I've been animating with flash for a while but I've recently wanted to get into game programing. I've learned a lot in the past month and I'm trying to create a fairly simple point and click adventure game with some basic stats and scoring. I'm facing a somewhat simple problem and I'm not sure how to get it to work in AS 3.0.

At the beginning of the flash I've established my variables to keep score while exploring the game.

var Health:Number = 1000;
var Day:Number = 1;
var EXP:Number = 0;
var Money:Number = 1000;

What I'm trying to do though is set up a movie clip with menu options that, when clicked, brings up a screen that displays those stats as well as a couple extra menu options. What I can't figure out to do is how do I display those variable inside the movie clip.

When I create a dynamic text field and place "info_day.text = String(Day);" i get an error unless I create a variable within that movie clip. And when I do that the variables in the movie clip are not affected by the chances of the variables in the main flash.

how do I have the variable in the movie clip to accurately display the variables established in the main part of the flash?

View 4 Replies

ActionScript 2.0 :: Movie Clip Not Getting Initial Value For Variable?

Sep 21, 2010

i am doing a photo album type site where all photos (which are movie clips) appear small and when clicked they enlarge. when the enlarged photos are clicked the movie clip continues and they go small again.

as you'll see from the code below i am doing this by basically saying if the photo is small, play the movie clip from frame 2 which enlarges it until a stop value at 30, and then change the variable value. if the photo is large and then it is clicked play the movie clip from 31 to a stop action at the end and then change the variable value.

everything is working fine except i am not receiving the initial value of the variable "picbtn_position" which is set on the main timeline to value "mainscreen". can anyone help me as to what is going wrong here? maybe i have to do something else to get a variable value from the main timeline to the mc.

here is the code on my movie clip:

on (release) {
if (picbtn_position == "mainscreen") {
trace(picbtn_position);
gotoAndPlay(2);

[Code]....

and here is the code on my main timeline for the initial variable value:

var picbtn_position:String = "mainscreen";

View 3 Replies

ActionScript 2.0 :: Using A Variable In Movie Clip Call?

Aug 4, 2011

I want to use a variable in my movie clip code. Right now I generate a random U.S. state name and assign it to "correctAnswer". Then I want to assign that to myMovieClip.correctAnswer.gotoAndStop("down"); The problem is that the variable is not recognized and is seen as correctAnswer instead of the U.S. state that was assigned to it. My code is below.

ActionScript Code:
// Correct answer is randomly generated and can be any U.S. state name
correctAnswer = "utah";
// Using the variable correctAnswer this should come out as myMovieClip.utah.gotoAndStop("down");
myMovieClip.correctAnswer.gotoAndStop("down");

View 2 Replies

ActionScript 2.0 :: [Flash5]Using Variable As Movie Clip Name?

Dec 3, 2002

I want to cycle through several movie clips for a training application. I plan to use an array to hold the clip names, and a variable (CurrentClip) to set visibility and allow me to use a single pause/ play button throughout. For the visibility, I've found that...
CurrentClip._visible = false; does NOT work. But... setProperty (CurrentClip, _visible, false); does work.

View 2 Replies

ActionScript 2.0 :: Using A Variable Name To Address A Movie Clip?

Dec 17, 2005

how to refer to a movieclip's name through a variable.If I set root variable "currentMovie = bigRed_mc;", how can I use that variable name to instruct the movie to address the movie clip name stored in said variable?

for instance "_root.currentMovie.gotoAndPlay("destroy");" wouldn't work because it would simply look for that movie clip name and come up empty.I thought "_root[currentMovie]gotoAndPlay("destroy"); would work, with or without parenthesis, but it comes up with syntax errors either way. Can you use a variable to store and refer to a movie clip name and it's properties?

View 3 Replies







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