ActionScript 3.0 :: Using And Changing Externally Defined Variables?

Aug 23, 2009

The problem which i have is about using variables (specifically "myVar") defined in one as3 class file, in a separate class file. After searching for this via google and on this forum i have not (maybe because i have been searching for the wrong thing), so here is my situation which i think should be simple to solve:Inside a fla called "Main" i have 2 MovieClips. The first is called Main and has a class linking to the com/Main.as file which has this code:

ActionScript Code:
package com{
import flash.display.MovieClip

[code]....

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Accessing Externally Defined Variables?

Aug 22, 2009

Here is the problem:I have 2 external as3 files in a "com" folder next to the FLA within which i am working. The first of these ( "Main.as") is the document class. The second ("events.as") contains variable definition "myVar:Number = 0" which i want to be able to access and change inside Main.as. I am sure that this is possible, but i can't get it working (flash very keeps pointing out that I have made an error. Specifically that old classic: "1046: Type was not found or was not a compile-time constant: myVar." which has puzzled me since the dawn of time.

View 3 Replies

ActionScript 2.0 :: Variables Not Staying Defined?

Jan 15, 2009

All of the variables that i define in frame one appear to no longer be defined in frame 2.

Here is a snippet of the actual code from frame 1 and frame 2 in case I'm missing something.

Frame 1:

ActionScript Code:
function init() {
var markedFrom = myVariables_xml.firstChild.childNodes[0].firstChild.nodeValue;
//trace("Marked From: " + markedFrom);

[Code].....

View 9 Replies

ActionScript 2.0 :: Variables Defined In A Compound?

Sep 28, 2010

What I mean by that title is, how would I define a variable name, with a variable, and some text, for example.

ActionScript Code:
var i:Number = 0
var ["test"+i] = "Test"

Where i changes to continually give me different variables, and, in this case, I would have the variable test0.

The above gives the error "Identifier expected". Oh, and it would also be useful to know how to do it in AS3, but I mainly need to know it for AS2.

View 2 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 :: Function Running Before Variables Are Defined?

Jun 15, 2010

I am trying to add an init() function to a MovieClip, but when I run the function from scene1 the variables that were set in the MovieClip are not defined yet... The MovieClip was dragged to the stage from the library.scene1:

mc.init(null);
MovieClip:
var _default = 5;

[code].....

View 1 Replies

ActionScript 3.0 :: Accessing Variables Defined In A Function?

Aug 10, 2009

I have been playing around with combining flash and PHP/Mysql for some time now, mainly sending one flash variable to a PHP file and then retrieving a result and turning it back into a different flash variable. My problem is i've got to the stage where I need to access these variables from other functions. Now I think I need to find some way of defining them outside of the function, maybe using global vars? Well i'm not gonna pretend I know anything about it. The two functions from which I access my PHP variables is as follows:

ActionScript Code:
function btnDown(event:MouseEvent):void {
var variables:URLVariables = new URLVariables();
var varSend:URLRequest = new URLRequest("http://localhost/test.php");

[Code]....

So I need a way to access the phpVar1 variable in a totally seperate function

View 6 Replies

ActionScript 2.0 :: Check If Variables Values Are Defined?

Aug 29, 2005

it's not working. why not?

[Code]....

View 8 Replies

ActionScript 2.0 :: Get Global Variables That Are Defined Inside XML Array

Aug 22, 2007

I've been trying to get these variables that are defined inside this XML Array, outside of the XML array using _global, so that i can use them else where in the animation, but i'm not getting any purchase.

[Code]....

View 2 Replies

ActionScript 3.0 :: Making Variables Defined In A Function Available Globally?

Jun 5, 2009

The following bit of code outputs that 'myRequest' and 'i' are not defined.

Code:
//Load external asset
function loadfail():void
{

[Code].....

after a bit of reading I find that it is because 'myRequest' and 'i' are defined within functions, and so those variables are not available outside those functions. How can I get around this? Make a class?

View 2 Replies

ActionScript 1/2 :: Evenly Spacing Dynamic Text Fields Defined By Variables?

Aug 4, 2010

What im going to be doing is replacing the bottom info with just a link-strip, unfortunatly I didn't want to have to sift through ten dynamic text fields re-animating every one with tweens to the way I wanted them so I set them all to a parent variable defined as "mt", such variables being as follows:HomePortfolioDocumentationDev BlogCase StudiesSupport For

View 4 Replies

ActionScript 2.0 :: Combining Logical Operator With Variables Defined By Radio Buttons

Aug 7, 2008

I have completely hit a wall. Here's what I'm after. I have two sets of radio buttons, each of which controls what loaded swf appears on stage. Then, depending on which button is clicked in group one and which button is clicked in group two, a third swf appears. I can access the value of each radio button, and I'm passing it into a variable (I think - the trace command works) but when I drop it all together into an if/else statement, no data is passed.

Here's the code:
//printArea is a movie clip on stage, which has dynamic mc's attached via code
var thisFront;
//function for what happens when fronts radio buttons clicked
frontListener = new Object();
frontListener.click = function(evt) {
[Code] .....

View 3 Replies

ActionScript 3.0 :: Load Variables Externally?

Oct 8, 2008

an external file on my website that I can edit with a text editor.I am making a flash intro to a website that has a pull-down panelthat displays information on new content on the website. It has twovariables in the main actionscript 3 code:

var gotoUrl:URLRequest = new URLRequest("
http://www.website.tld/newcontenturl")
var whatsnewText:String = "There is something new on this

[code].....

View 1 Replies

ActionScript 3.0 :: Passing Variables To Externally Loaded SWF?

Jan 30, 2011

how can I pass variables to externally loaded SWF written in AS2 ?

View 0 Replies

ActionScript 3.0 :: Access Variables Of Externally Loaded Swf?

May 12, 2011

I'm loading external swf's in a main swf, which are contained into a container "thisMC" which is a movieClip.

Now I've got various variables in these external swf's and I want to access these variables into my main swf.

eg - var myString:Variable = thisMC.myNumber;
trace("Whats the value "+myString);

o/p Whats the value undefined.so if myString is a variable that i've defined in the main swf and myNumber is a variable defined in the external swf, if I try accessing it like this , this is what I'm getting.

View 3 Replies

ActionScript 2.0 :: Make An Externally Loaded SWF And Variables

Feb 25, 2004

I'm tryin to do catalog on CD using flash. There will be 15 pages of items w/ the selections. The coding I'm using for their options is from this: [URL] Now my question is, since I can't use a DB because it's on a CD, I have to pass the variables through flash. But when they are done making all their selections how do I make an externally loaded SWF using this command:

[Code]....

read the final values that were selected on the specified pages? I've read lots of the threads concering passing variables and none of them. Also if anyone knows of any way to hold a DB on a CD and be able to write to it as well as read from it lemme know

View 8 Replies

ActionScript 2.0 :: Externally Loaded Txt And Urls With Variables

Jun 24, 2005

I've built a dynamic scrolling textbox that loads external text and formats it via css. Everything works as it should except I need to add some links in the text file that contain variables (i.e., something like this: [URL]

Flash will not interpret this properly as a normal html link in the loaed text file.

View 1 Replies

ActionScript 3.0 :: Passing Variables To And From Externally Loaded SWF?

Jul 13, 2011

Then there is an external SWF that is loaded by main.swf. I am trying to get this external SWF to check the value of "myVar" and depending on what the value is, send the playhead in the main.swf to a certain frame. have it almost working, but it is giving me problems. And I am not sure it is the best way to do it.On the timeline of main.swf is a movieClip called "BG". It has 6 frames. the first frame declares that variable, and each of the other 5 frames, set the value of it. I need the external swf to check the value of "myVar" to detemine where to send the playhead of the mian.swf. So on a frame in the external SWF, I have this code:

Code:
MovieClip(parent).addEventListener(Event.ENTER_FRA ME, fl_EnterFrameHandler); function fl_EnterFrameHandler(event:Event):void { dispatchEvent(new Event("myVar_value", true)); }

[code]......

View 13 Replies

ActionScript 3.0 :: Accessing Parent Variables In Externally Loaded Swf?

Jun 24, 2009

here's what I have (simplified to only show necessary code):

Main Timeline:
var currentItem:String = 'applesauce';
(then some code to load an external swf)

[Code].....

View 1 Replies

ActionScript 2.0 :: How To Send Variables Between 2 Externally Loaded SWFs

Sep 17, 2007

I have 2 movies 1 loaded and 1 not loaded. How do I send variables from the loaded 1 to the not loaded one when it loads?

View 7 Replies

ActionScript 3.0 :: Accessing Variables And Functions From Externally Loaded Nested Clip?

May 23, 2009

How would you go about accessing a function or variable from a parent clip if the clip accessing has been loaded using the Loader() constructor in AS3?

View 1 Replies

ActionScript 3.0 :: 1061 Error (not Defined) When Call A Method Of A Self Defined Class

Feb 9, 2010

I am using flex builder 3.2, Action Script 3 and develop for Flash Player 10 and am quite new to it. when I call a method of a self defined class, I get the 1061 error (not defined). But the class and the method exist and are public, so what the hell am I doing wrong? Flash Builder is even offering me this method in the auto-completion, so at least the builder knows it... I have already tried cleaning the project (as this is the common source of strange errors when working with java/eclipse),

edit: solved... The problem was that a package had the same name as the variable I used for the class. Very strange error message, thumbs down for this .

View 0 Replies

ActionScript 2.0 :: Changing Variables From Withing An MC

Oct 9, 2009

I have a piece I'm working on that loads some copy to the front page. Then when you mouse over the navigation it plays the 2nd half of the MC that makes the copy fade. One of the navigation buttons works to bring the copy to fade back in by playing the first half of the MC.I'm declaring a boolean variable "intro" and setting it to true on load because the copy is visible.Then within my MC at the end (when the copy is done fading out) I set "intro" to false.Then if the user mouses over the nav it runs an "if" and if the intro is true it fades it out, and if its not it shouldn't do anything (stay invisible).The problem is it keeps playing the MC - so you mouse over the nav and it fades out, then you mouse over the nav again and it fades back in, then you mouse over the nav and it fades out again.

View 2 Replies

ActionScript 3.0 :: Changing Variables With EventListener?

Dec 9, 2009

I borrowed a code to give my stage a falling snow effect, and I added on/off buttons. I'm sure there's another way around what I'm trying to do but I'm curious about going about this way. the variable in the code contains:var snowflakesCnt:Number = 180;I added EventListeners for the buttons but don' know the way about changing the variable to 0 and180 upon mouse click.

View 4 Replies

ActionScript 2.0 :: Changing Global Variables?

Oct 21, 2004

I'm trying to create a global variable that initially stores a 0.Then via a function will change the value of that global variable, and allow the other functions to access the new number. I have it working where it adds 1 to the variable, and stores the number 1 however, I cannot get the number to add up beyond 1.I have this in my first layer,frame.

_global.thisSound = 0;
function PlaySound(){
temp = _global.thisSound;

[code].....

View 1 Replies

ActionScript 2.0 :: Changing Variables When On A Different Frame

Jul 4, 2009

OK this might take a wile to explain but ill give it a go. I'm trying to make a sort f upgrade menu for my Flash game (AS2) but I'm a bit stuck. Ok my char has got this action script on it.

onClipEvent(load){
_global.speed = 1
}
onClipEvent (enterFrame) {

[Code]....

That all works fine but what i want to do is make it that when you click a button the var speed will change. I can do that quite easily with this code

on(press){
_global.speed += 1
}

and that works fine two but what i want to do is have the button for upgrading the speed on a different frame (ie. the upgrade menu)

So on frame 1 is the moving char and there is a button linking frame 1 to frame 2 (upgrade menu) and on that frame it has the button for upgrading the var speed and then a button linking frame 2 back to one but it doesn't work. I think i no why because on the char is says onClipEvent(load){ _global.speed = 1 }

so that means that the var speed will revert back to 1 when you go back to the first frame.

View 3 Replies

Flash 5: Changing Variables For Dynamic Text

Jul 17, 2009

My .txt file is called my_text.txt

Inside I have:
myText1=This is test 1.
&myText2=This is test 2.

I tested it out with my dynamic text. If I made the variable myText1, it loaded the first line. If I made it myText2, it loaded the second line. All seemed to be fine.

I have a dynamic textbox, variable named names. I want to be able to change the variable in order to get it to load whichever line of text I want.

I tried:

names = myText1;
loadVariablesNum ("my_text.txt", 0);

But that's not working. I've tried playing around with it in various ways, like
names = eval(myText1);

and such, but nothing is effectively getting it to change. I've been trying to look it up and tried all the different ways people told other people to use, but it's not working for me.

Once I get this work I everything should fall into place easily.

View 3 Replies

AS3 :: Changing Stage Variables From Within A Movie Clip

Feb 2, 2012

I want to change variables on the main stage's code from within a movie clip.

Say for example, I want to change a variable called 'chair'

In AS2, this is how I would do it:

(on the main stage)

Code:
chair = 2;
(in the movie clip)

[Code].....

But all I get is a 1119 error saying 'Access of possibly undefined property chair through a reference with static type flash.displayisplayObject.'

View 3 Replies

ActionScript 3.0 :: Variables Not Changing To New Location Coordinates

Nov 4, 2009

I have a simple Actionscript 3 project. The code is on the timeline:
ActionScript Code:
import pti.dmutility.layout.ConfigElement;
//this Class simply extends the fl.controls.Button with variables

Then I put some instances into the stage, and make them Drag&Drop. Here is the Dragging function. I want to remember the item's puck up position when clicked, I use ConfigElement's OldX and OldY properties:
ActionScript Code:
function dragStarterItem(e:MouseEvent):void{
var item = e.target;
item.OldX = item.x;
item.OldY = item.y;
item.startDrag();
item.addEventListener(MouseEvent.MOUSE_UP, dragStopperItem);
}

When I click on the item, the OldX and OldY gets the actual position of the item, BUT after dropping it somewhere else, and picking up it again, the OldX and OldY is still the same! Holds the initial position, and not changing to it's new location coordinates. Every instance remembers it's initial position only. Why not change every time I click? Why remembering the first click's position only?

View 7 Replies

ActionScript 2.0 :: Changing Variables In Dynamic Text?

May 14, 2010

Okay, here is my code which I have in the frame actions:

Code:
char_xp1 = 1000;
char_level = 1;

[code]....

View 1 Replies







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