ActionScript 2.0 :: Accessing Movieclip Parameters - Set A Global Variable To A New Value When Clicked

Nov 4, 2003

I have a button in a movie that I want to set a global variable to a new value when clicked. I want it to access a parameter of a movie clip that this same button loads onto the movie for the new global variable value. I have the final line under this button's onrelease script with something like this:

globalvariable1 = movieclip.parameter;

Everything is on level 0 and I've tried prefixing everything with _root. but it didn't make a difference, the global variable still wasn't changed. I'm a newbie so don't laugh if this is a really dumb question!

BriCar77
brian_carey77@ou.edu

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Set A Global Variable To A New Value When Clicked?

Nov 4, 2003

I have a button in a movie that I want to set a global variable to a new value when clicked. I want it to access a parameter of a movie clip that this same button loads onto the movie for the new global variable value. I have the final line under this button's onrelease script with something like this:

globalvariable1 = movieclip.parameter; Everything is on level 0 and I've tried prefixing everything with _root. but it didn't make a difference, the global variable still wasn't changed. I'm a newbie so don't laugh if this is a really dumb question!

View 2 Replies

ActionScript 3.0 :: Accessing A Global Variable In A Function

Jan 9, 2012

I have a global var

[Code]...

The only problem is it can't "see" myGlobals. I was wondering if someone could tell me why it can't see it! I'm sure it has something to do with scope.

View 3 Replies

ActionScript 2.0 :: Accessing Global Variable In External SWF

Mar 19, 2010

I'm trying to access a global variable in an external swf. I'm loading the external swf like this.
myLoader.loadClip(game, 2);

I'm running a main loop that repeatedly checks certain variables. The variables that are not global I am able to access in the following fashion:
_level2._root.variable;

But I can't seem to access the global variables in the external swf. Things I've tried:
_level2._global.var;
_level2._root.var;
_global._level2.var;
_global.var;

View 7 Replies

ActionScript 3.0 :: Declare Global Variable For MovieClip?

May 20, 2010

How to declare global variable for MovieClip. Normally for other datatype, i just declare:
 
package
{
public class MyGlobal
{

[Code]......

View 3 Replies

ActionScript 3.0 :: MovieClip Accessing A Variable That Is In A Function Outside Of The Movieclip

Dec 8, 2010

I am trying to access the variable myParentVariable within the function myParentFunction() from the MovieClip's myMovieClip_mc function myMovieClipFunction().
 
I know that It works if I declare the variable myParentVariable outside of the myParentFunction() but I don't really want to do that

main timeline
//-------------------------------------------------------------------- ---
myParentFunction();
function myParentFunction():void

[Code]....

View 1 Replies

Actionscript 3 :: Accessing A MovieClip Using A String Variable?

May 27, 2011

I've a general question on accessing a MovieClip by using a variable.Here's a super stripped down version of the code I'm trying to implement:

var mcVar:String = MC1;
addEventListener(Event.ENTER_FRAME, eF);
function eF(e:Event):void{

[code].....

View 1 Replies

Professional :: How To Use Global Functions - Hold Parameters

Feb 25, 2010

I have about 10 as3 coded buttons that use the same AS3 coded parameters to control the font and filters of their text fields. I'd like to create a global function to hold these parameters, and then just call the function within each button, and then also code each button to have it's own myText.text = "blahblah"; I can set up a global function no problem using an external as file, but am having trouble getting Flash to accept the parameters. For example, the following parameters work fine when used within the text fields of the buttons, but as so as I try to put them in an external global function, Flash doesn't like the parameters being external:

[Code]....

View 4 Replies

ActionScript 2.0 :: CS3 Global Variable Not Being Global

Jul 22, 2009

i defined the global variable in the first frame of my file, and i can access it on other frames, however i am trying to access it within a movieclip, and flash is telling me that it is undefined. does anyone know why this could be?

View 1 Replies

Flex :: External SWF Variable Updates Global Variable In Main Timeline?

Feb 8, 2010

I have 2 movie clips, one being loaded into a container MC via "loadMovie();"In the main movie there is a variable with no value, in the external movie there are 5 frames, each with a value to update the variable in the main movie.

IE: if on frame 1, global value = 1 / if on frame 2, global value = 2 / etc etc I'm familiar with passing variables INTO an external swf, but am stumped on how to do it the reverse way.

View 1 Replies

ActionScript 3.0 :: Accessing Global Variables In Functions/Methods?

Jun 2, 2011

Which of the following is better in terms of performance/effectiveness?

public var a:int = 0;
public function Addition():void {
a += 5;

[code].....

View 7 Replies

Flash :: Accessing Uza's Global Object From A Loaded External Swf?

Mar 4, 2010

I am using the 1.2 version of Uza's Global singleton (http://www.uza.lt/codex/as3-global-object/). The container swf stores some data and a link to a function in the "global" object.

Then another swf is loaded inside the container, it gets it's global instance with Global.getInstance();, and i suppose i can access the data and function stored in global by the container swf.

This works perfectly on localhost served by a webserver, but when i put the files on my external production server the loaded swf's global appears to not have anything stored by the container.

View 1 Replies

ActionScript 3.0 :: Accessing Stage/global Functions Inside A Class?

Apr 16, 2010

I have a .as file with a load of functions that i include using : include "myFunctions.as".They can be accessed alright.I have a custom class that extends movieclip, and i want to use a function inside that class that is located in my "myFunctions.as" file.How do i do that? Seems like the class loads before the myFunctions.as file so the functions are unavailable at this time. I get that error message :

View 7 Replies

ActionScript 3.0 :: Accessing Parameters Of Generic Object?

Mar 4, 2011

Is there a way out there to essentially loop through a generic object to find out what parameters/properties are being used and/or what there names are?

ActionScript Code:
var obj:Object = new Object();
obj.foo = "hello";
obj.bar = "world";
//... and on for however many params you need
[Code] .....

I might be trying to do something that is essentially not possible, but I'm just thinking it would be very nice sometimes to access different parts of an object without having to directly know what the param name is...

View 3 Replies

ActionScript 2.0 :: When Mouse Is Clicked, Detect Which Movieclip Is Clicked

Sep 9, 2009

I have parent movieclip and in that many different children movieclips

What i want to do is when i CLICK, i want to detect which movieclip it has clicked and call corresponding function (defined by onpress event) of that movieclip.

View 6 Replies

Define Global Variable In FMS?

Mar 1, 2011

how to define global variable in fms so that it can be accesses by different application instance of same application,

View 2 Replies

AS3 :: Xml : Declare A Global Variable?

Feb 28, 2012

I'm trying to get a value from a function which is a URLLoader COMPLETE event but even with declaring variables outside of the function will not allow me to get the value out. I'm stuck.It seems that the Asynchronous nature of Flash makes it impossible to get a value out: e.g. this works:

// Initialise a URLLoader to get XML data from XML file
var myFPBLoader:URLLoader = new URLLoader();
myFPBLoader.load(new URLRequest("flightPlannerBoard.xml"));

[code]...

View 2 Replies

ActionScript 3.0 :: Passing Value To Global Variable

Aug 11, 2009

I have a movieclip on the stage, and in that clip I have a button that is supposed to turn a global variable from true to false, but the compile tells me:
1119: Access of possibly undefined property root through a reference with static type Class.

When I use this code:
Code:
function closeMSN(event:MouseEvent):void{
this.visible = false
Stage.MSNOpen = false
}

I know how to reference the movieclip itself by this, but how do I change the value of a variable on the main stage, from inside the movie clip?

View 3 Replies

ActionScript 3.0 :: Global Variable And Inner Timeline?

Jun 23, 2009

i've declared global variable in the first frame of the main timeline:var cLabel:String;In the inner timeline of a MC, i use this code:stop();cLabel=this.currentLabel;but flash gave me error 1120: access of undefined property

View 6 Replies

ActionScript 3.0 :: Global Variable Within Function?

Aug 24, 2009

I'm having an issue with a global variable. I'm trying to give it a value within a function and it isn't working.The variable is imageList. It's an XML List. I'm making it global so I can use it anywhere in my project. I suppose if someone has a better idea to avoid the global variable, I'm up for that too. But for now, it seems like the way to go.
 
Here's my .as file:
package
{
public class MyGlobal
{

[code]....
 
It's giving me the same same Error #1009 as above. It seems like a scope problem, but why? Shouldn't it work since it's a global variable?

View 6 Replies

ActionScript 1/2 :: Global Variable Not Targeting?

Jan 8, 2010

I am trying to set up a global variable. On the root of my timeline, I have this;

_global.floorVar = "0";
trace(floorVar);
 
which seems to trace fine to say 0.
 
Then, inside of a movie clip on the main timeline, I have a button function:
 
floor1.onRelease = function() { _global.floorVar = "1"; trace(_global.floorVar) _root.gotoAndStop(2);};
if (_global.floorVar == 1) { trace("it works");
}
 
It traces as 1 once I press the button, but the if statement doesn't trace "it works" is my global variable set up wrong?

View 7 Replies

Actionscript 3 :: Define Global Variable ?

Jan 21, 2011

var frName = fruit_txt.text;

disp_btn.addEventListener(MouseEvent.CLICK, disp_fruit);

function disp_fruit(Event:MouseEvent)[code]....

defining the variable i:e frName.... outside the function it does not display anything..same time if I define same variable inside function i:e disp_fruit...it displays the name ]why?

and how can i use variable i:e frName as global var so that it can be used in any function?

View 2 Replies

Flash :: Have A Global Variable In A Stackview?

Feb 1, 2011

I have a stackview of textfields and when I type into the text field I want it to update on each stackview "page", kind of like a global variable, maybe even using a global variable.

View 1 Replies

ActionScript 2.0 :: LoadVars Global Variable?

Jul 21, 2009

Can I bring in a variable (saved in a text file) using LoadVars and then make that variable accessible from anywhere in the script (i.e. make the variable a global)?

View 1 Replies

ActionScript 3.0 :: How To Make Global Variable

Jan 10, 2010

how do I make a global variable that can be recognized in all frames?

View 1 Replies

ActionScript 2.0 :: Global Variable Undefined?

Jul 16, 2004

here is the set up. I'm working with three files. Main.swf which contains navigation.swf in a blankmc, empty mc called mcContent where navigation sleclected materials are loaded.

In the navigation.fla here is the code
[AS]trace("now defining global");
_global.loadFile_str = strPicName;

[code]......

View 5 Replies

ActionScript 2.0 :: Use Global Variable In Imported MC?

Oct 21, 2004

I want to load an external .swf into my main .swf, it will contain a textfield. However, in order for it to know what to put in that text field, it must pick up on a variable main.swf_global.USERENTRY now in order for my mc user_output to display _global.USERENTRY, what must I do?

View 1 Replies

ActionScript 2.0 :: How To Use Global Variable Declaration

Feb 24, 2003

I am trying to use the global variable declaration. Up to know I've been using the x coordinate of a movie clip to pass variables between different movies, and I thought it was time to learn properly! Just to get it to work, I am trying a flash file with two movies in the root. One movie defines a glabal variable on load;
_global.numb = 6;

And then I am trying to just get the other to trace it on enter frame, so the code attached to the other movie (on enterframe) is...
trace(numb);
(And I tried trace(_global.numb) as well, but I was under the impression that you only had to define it as being a property once.). All that happens when I run the movie is nothing is traced.

View 11 Replies

ActionScript 2.0 :: Set A Global Variable From An Xml File?

Aug 19, 2005

I've been trying for a while to set a global variable from an xml file within a function and then be able to use it in another function.

[Code]...

View 3 Replies

ActionScript 2.0 :: Hanging The Value Of A Global Variable?

Mar 17, 2006

I'm having a problem changing the value of a global variable.

I'm using the xml photogallery thats available on Kirupa. I have 2 movies on the main timeline: the galley movieclip and a navigation movie clip. I want the buttons in the navigation clip to change the global varable 'section' and this to be passed to the galley xml load function. So far i have this for the button:

Code:
gallery1button.onRelease = function(){
_root.nav.select(0);
_global.section= "gallery1";
};

I am using php to deliver the xml data dynamically to flash so I only have one xml file for several galley section. the AS looks like this:

Code:
xmlData.load("photos_xml.php?section="+_global.section);

It doesnt seem to be working though.

View 2 Replies







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