ActionScript 2.0 :: Variables In Functions?

Nov 16, 2005

I can't figure this out.

Code:
function createTextBoxes() {
for (var n=0; n<caption_obj.textXML.length; n++){[code].....

The XML portion is working fine. What I'd like to be able to do is access the created text fields outside of the function. For example:

captions1.alphaTo(0,1,"linear",1);

This works fine when it's inside of the function, but outside of it, it won't. Basically I need to time the captions to things that are happening in an animation. The animations are also tween driven, so it would be something like obj_mc.tween("_x", 200,2,"linear", 5,fadeOutCaption1); with fadeOutCaption1 being a function that fades out the first caption and brings in the second. If there is a better/more effecient way of doing this let me know.I also can't seem to apply any styles to the text field. Do I need to create an array or object with ["captions"+n] and then pull from that?

View 2 Replies


Similar Posts:


AS3 :: CS3 - Calling Variables From Other Functions

Aug 20, 2009

If I have a function and I want to call a variable from another function (only 1variable), how do I do it? I know in the olden days you could set the variable to local or global, but that does not seem to work anymore. There is only 1 variable I need access to, but all the tutorials I have come across talk about making classes for multiple variables.

e.g. function2();
{
variable_b = variable_a;
}

[Code].....

View 3 Replies

Dynamic Variables In A Functions?

May 8, 2010

Why does this not work???

Code:
function myFunction(val0,val1,val2){
trace(this["val"+0);
trace(this["val"+1);
trace(this["val"+2);
}
myFunction("hello","test","hi")

All i get is undefined. If i just put "trace(val0)" i will get "Hello" -- so i cannot work out how to get the value of the dynamic variable inside hte function?

View 4 Replies

ActionScript 3.0 :: Variables Used In Functions

Mar 16, 2012

I got this variable:[code]is there a possibility that the compiler gets confused because my variable has the same name like the functions's parameter (type = type)? i'm not certain about this topic. Normally I'd write my function's parameter like this (if such a case occurs):[code]just to make sure the names do not exactly match.

View 3 Replies

ActionScript 3.0 :: Casting Variables Into Functions?

Feb 5, 2009

haven't wrote here for a while!This is what I'm trying to do:

var level:Number = 1;
var goat:* = "thisIsLevel" + (level + 1);
var camel:Function = goat;

[code].....

View 3 Replies

ActionScript 3.0 :: Simplify Functions An Variables?

May 26, 2009

I have an animation that has roll overs controlled by AS (see code below). It works the way I have the code, but it's really messy code. And I hate that I'm have the functions rewritten for each event.How can I simplify this code?

//On the main timeline
var gearsEnabled:Boolean = true;
var gears2Enabled:Boolean = true;

[code]....

View 4 Replies

ActionScript 3.0 :: How To Pass Variables In Functions

Jul 19, 2009

I know PHP, JavaScript and AJAX. All of these other languages easily allow me to pass variables through a function, but I can't seem to work out how to do it in ActionScript 3. As you can see from the code below, I have created a variable called 'flag', this variable is set to 'notAdded'. However, once the function is called, I want to change the variable to 'added'. This for some reason does not work, the variable update only works within the function itself. There seems to be no global scope for functions.

Code:
var flag:String = "notAdded";
bobRunning.addEventListener(MouseEvent.MOUSE_UP , bobRunningUp);
if (flag=="notAdded"){function bobRunningUp(event:MouseEvent):void{ bobRunning.width = 30;
bobRunning.height = 30;
flag = "added";
}}trace(flag);

View 5 Replies

Actionscript 3 :: Functions And Accessing Variables?

Jul 14, 2010

I'm trying to create a JW player plugin, a part of the source code is shown below:

public function initPlugin(player:IPlayer, config:PluginConfig):void {
api = player;
var streamUrl:String = 'xxx';

[code].....

View 1 Replies

ActionScript 2.0 :: Performing Functions With Variables

Jan 12, 2010

i've just written the function below and I want to perform it multiple times but with different urls,

[Code]...

View 7 Replies

ActionScript 2.0 :: Class Variables In On Functions?

Nov 30, 2006

I was wondering if they found a better way of allowing the use of variables outside of an on function. For example in the script below I can use the variable bounds inside the target.onEnterFrame function because it's declared inside the constructor. However I can't use m_Bounds even though it's declared in the class.[code]...

View 7 Replies

ActionScript 2.0 :: Paths Functions And Variables

Aug 13, 2007

I have a variable in the _root called 'ordered'. I have another variable called 'total' inside a function called 'loadXML'. 'total' receives a number value from a node in a XML file correctly. I now want to transfer this value to the variable 'ordered' which, as I said, is in the _root. However, 'total' is restricted to the function and I can't access it from the variable in the _root. Neither can I transfer the value from the variable in function to the _root.ordered, since such a line targets the _root of the function itself.I guess this isn't too hard to solve, probably just a path issue, but I have a few rather large gaps in my knowledge of actionscripting.On the stage, there are three objects; a movieclip with the instance name 'clip', a movieclip with the instance name 'orderbox' and finally a dynamic text field with the instance name 'pos_txt'.[code]

View 2 Replies

ActionScript 2.0 :: Passing Variables Between Functions?

Oct 16, 2007

I am building a flash photo gallery that is fed by an XML file, now I am fine with all of the XML things in flash, my problem comes when creating the thumbnail images onRelease event. Here is my code:

Code:
_global.counter = 0;
for (_global.counter = 0; _global.counter<itemArray.length; _global.counter++) {
//populate thumbnail array with URLS

[code]....

The problem is that when I release the mouse button I get a variable undefined error in the output window. I have researched and have found that my problem is that I can't pass a variable from the main function to the onRelease function.

View 3 Replies

ActionScript 3.0 :: Flash Variables Used In Functions?

Dec 18, 2008

I have a stupid question. I got this variable:

Code:
var type:int;
and this function:

[code].....

View 5 Replies

ActionScript 2.0 :: Accessing Outside Variables From Functions?

Aug 1, 2004

how to access variables that are declared in a movie clip from a function declared in that same movie clip.

i.e.
****************************
var int1 = 1
var int2 = 2

[Code]....

I'm trying to do this in the main movie clip of a movie that I plan on importing dynamically in another movie. I've tried to use this.int1++, but I think that flash was looking for a variable that belongs to "myfunction" when I did that. I could just use _root.int1++ but like I said, I plan on dynamically loading this into another movie, in which case it would be pointing to the wrong movie.

View 2 Replies

ActionScript 3.0 :: Save Variables To Be Used Out Of Events And Functions?

Feb 23, 2010

I'm working on a project for school which is requiring me to make a game using Flash and ActionScript 3.0. One of the tasks I have to do is load an external XML file that will be displaying questions and answers. I've looked at google to find simple scripts for loading XML, one example being below:

Code:
var myXML:XML;
var myLoader:URLLoader = new URLLoader();

[code].....

View 1 Replies

ActionScript 3.0 :: Call Functions And Classes From Variables?

Oct 20, 2009

I was wondering if ActionScript had some way to call functions and classes from variables, like they do in PHP:

function funcname() {
print "Potatoes come from tree";
}
$function = "funcname";
print $function;   // Prints out "funcname"
$$function();      // Prints out "Potatoes come from tree"

In case you don't know the syntax for PHP, you should know that anything perpended with a $-symbol is a variable.

View 1 Replies

Trace All Movie Clip Variables And Functions?

Jan 21, 2010

How can I trace all available Movie Clip variables and functions?

View 5 Replies

ActionScript 3.0 :: Variables Defined Inside Of Other Functions?

May 3, 2010

Trying to find the best way to use the xDoc variable in the newImg function without adding the newImg eventListener to the xmlLoaded function

var myXML:XML;
var xDoc:XMLDocument;
var xmlLoader:URLLoader = new URLLoader();

[code].....

View 5 Replies

ActionScript 3.0 :: Pass Variables In Nested Functions?

Feb 1, 2010

I'm starting to get a handle on some AS3 basics in terms of building nested classes or packages or whatever the proper syntax terminology is.

Now I have two instance functions:

1 - parseXML

2 - loadImage

I have these 2 functions working together using an eventHandler. Once the XML is parsed the aim is to load an image. Sounds pretty common right?

When the image loading commands are in the parseXML function they work fine. But then when I put the image loading commands in separate function titled loadImage and trigger it using an eventHandler onComplete, it loses my variable and instance definitions.

View 0 Replies

ActionScript 2.0 :: Accessing Variables Inside Functions?

Mar 26, 2010

I'm trying to make a button that gets it's getURL address from an external text file. So, I load the text file and assign it to a variable:

[Code]....

View 5 Replies

ActionScript 3.0 :: Using Number Variables Declared Within Other Functions?

Sep 20, 2010

it's just some little white 'snowflakes' that fall from the upper end of the screen)

ActionScript Code:
var timer:Timer = new Timer(30);
timer.start();
timer.addEventListener(TimerEvent.TIMER, onTimer);

[Code]....

Now, this of course gives a run time error (access of undefined property snowSpeedX) due to the fact that snowSpeedX is declared in the function onTimer. The reason it is declared their is because i want it to change everytime and so each snowflake that falls, moves in the x axis with a different speed. If i declared the snowSpeedX variable outside of the onTimer function, i wouldnt get a different value for every snowflake, i would just get one.

So, how do i get the snow flakes to have a varying range of speeds?

View 4 Replies

ActionScript 3.0 :: Creating Functions With Variables Using A Loop?

Dec 11, 2010

I've created a basic function that sets a movieclip to a certain state depending on which mouse cursor is set (determined by a variable called txt_cursor). I can hard code this to work great for the one single movie clip but potentially have to do this for 624 other movie clips so obviously want to create a for loop to reproduce this.

Code:
chk1.onRelease = function()
{

[code]........

View 1 Replies

Actionscript 3.0 :: Global Scope For Functions And Variables?

Jan 28, 2009

I was just wondering what the new method for creating global functions and variables are - the _global method has been taken out of as3

View 1 Replies

Actionscript 3.0 :: Access External Functions And Variables?

Aug 26, 2009

All I need is to acess the External Movies functions, variables and the External MAIN TIMELINE to control the loaded content.

How do I do that?

I've traced the content just to give a better idea about my Structure[code]...

View 4 Replies

ActionScript 2.0 :: Using Set And Eval Functions Setting Variables?

May 12, 2006

I'm having problems in setting three variables using a for loop and then passing these variables to my function. I think it's something to do with the set function I'm using, because my colorFadeTo function claims it's being passed an undefined variable.

Code:
for (var i=0; i<circles.length; i++) {
var current = circles[i];

[code].....

View 1 Replies

ActionScript 2.0 :: Comparing Variables Inside Functions To?

Jul 29, 2007

var q4:Boolean = false; //Will have thirty-eight of these, q4-q41

function noRepeat() {
if (q(_root._currentframe) == true) {
gotoAndStop(randRange(4, 41));
} else if ((q(_root._currentframe)) == false) {
q(_root._currentframe) = true;
}
}

Now, my problem is the bits in red (yes, I know they don't work, that was just the best way I could think to describe what I wanted).

If I create a string that says "q4" then I find it won't compare that to the boolean variable, but I'm positive there must be a better way than putting one of these on every frame.

View 2 Replies

ActionScript 3.0 :: Variables Inside Functions And Performance

Dec 17, 2009

So, performance wise, is it necessary to null references to classes, etc inside a function? Something like:
Code:
function myFunction():void{
var myVar:myClass = new myClass();
//do stuff with myVar...
//don't need myVar anymore
myVar = null; //is this necessary?
}

View 4 Replies

ActionScript 3.0 :: Flex Get Variables And Functions In Imported Swf

Jun 9, 2010

I'm loading in a flex application a .swf via <mx:Image> (that is a subclass of SWFLoader). Is it possible to retrieve a list of all the public variables and functions inside the loaded .swf?

View 1 Replies

ActionScript 3.0 :: Variables Inside Functions In Memory?

Mar 19, 2011

clarification. let's say i have a function

function myFuction():void
{
var myArr:Array = new Array();

[code]......

View 2 Replies

ActionScript 1/2 :: Load SWF In Other Domain And Access Its Functions / Variables

Dec 8, 2009

I need to load a swf in other domain and call its functions and access its variables, in the same domain I can load it and access its functions successfully, but in different domains no.

View 3 Replies







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