Professional :: Making And Loading Variable Classes

Feb 13, 2012

AS3 says you need to load variables into a class?my variables look like this... (the whole point of playing around with variables was that if I had to make a change I could access one place and change them but now I realse that I can't access or call them outside the movie clip they are in.[code] The Wholesale price. A wholesaler is usually a big shed where goods are stored.

View 7 Replies


Similar Posts:


ActionScript 3.0 :: Making One Variable Available To Multiple Classes?

Jan 15, 2011

I'd have thought this to be simple, but nothing works. I have a game I'm working on, and in it, there will be a speed stat. The fast you are going, the faster everything else has to move to make it look like you are moving faster.The problem is, the speed stat (obviously not called speed) is one of the upgradable stats, and needs to be available for the class handling upgrades for it to be changed, and it needs to be read by the class handling moving objects.The second class however, has absolutely no idea the variable even exists. I've tried for weeks to look up a tutorial on it, but there doesn't seem to be any at all that I can find. (I am using public variables, and have tried various ways of trying to point at the class it's from but apparently I must be using the wrong syntax)

View 12 Replies

ActionScript 2.0 :: Multiple Classes Accessing The Same Variable Without Making It Public?

Dec 26, 2006

i've got two classes and i'm not extending to MovieClip. I like to attach the mc in the constructor just because i'll be working with different MC's that have the same purpose.

however, im using private var loadedMC:Movieclip and now i've got another class that needs to be able to access the instance's variable.

for example, myClass.loadedMC , but this would mean having to make it public and I rather not go that route.

View 2 Replies

Professional :: Loading External Swfs Extending From Classes In The Same Shared Codebase?

Jul 25, 2011

I'm currently developing a game in flash and want to be able to divide up my .fla assets in a way that means artists can work on a game menu .fla in isolation from the game.fla and rest of the game code.If I could briefly explain how I've approached this so far, I would be extremelyMy project is setup like this:HighScoreMenu.fla -> document class HighScoreMenu extending GameMenu class.game.fla ->document class game.asgame.as class loads the published HighScoreMenu.swf and manipulates the menu i.e. animates on and off screen via inherited functions in the GameMenu class.

Now this seemed to work to begin with, until my code evolved and upon going to publish my HighScoreMenu.fla flash started complaining about symbols being used in Game.as that were in Game.fla... If I'm only publishing the HighScoreMenu which extends from GameMenu then why is it even looking to compile Game.as

View 4 Replies

Professional :: Loading A Text File Into A Global Variable?

Jan 6, 2011

From all the documentation and examples I can find, it appears that it would be
correct to create a global array variable [outside of any functions] to load image names into, then use these images for a slideshow. I want to make the app dynamic, in that changing the text file gives a new set of images.
 
The global variable goes null [no values] after the load event listener. Why is that?
 
Isn't global, well global, and alive for the duration of the SWF?
 
PARAMS.TXT:
monthNames=January,February,March,April,May,June,July,August,September ,October,November,December&dayNames=Sunday,Monday,Tuesday,Wednesday,Th ursday,Friday,Saturday

[Code].....
 
How do I access these values after loading from the external file, after the load?

View 7 Replies

ActionScript 3.0 :: Making A Movie That Has Classes?

Apr 1, 2011

I am making a movie that has classes. There is one MovieClip in the movie and it needs to have a blank base class, because one of the classes is a Dynamic.

Flash 4 keeps auto-filling in the base class: flash.display.MovieClip . How do I stop this from happening?

There is no preference to change the setting.

View 5 Replies

ActionScript 3.0 :: OOP - Making A Multipage File Using Classes

Nov 10, 2010

Basically I'm trying to make an air app which contains a variety of different pages - I was under the understanding that each page would have its own class file, with everything being instantiated for that page within the class file.

If that is the case, then how would I make the transition from class to class and also remove the previous class so it doesnt take up memory?

View 7 Replies

Flash :: Expose A Method In An Interface Without Making It Public To All Classes?

Nov 7, 2009

I have a issue where I'm working with a particular interface for quite a lot of things. However, I have a particular method that I want to be available only to a particular group of classes (basically, an internal method). [code]...

View 4 Replies

Flash - Making Starling FrameWork To Work With Classes That Uses Native DisplayObject?

Dec 6, 2011

I'm trying to use Greensock LoaderMax on a Starling Framework project, but since Starling have a lots of its own class, how I can make it work with other classes that is using the native class?

Exp:

package
{
import flash.display.Sprite;
import flash.events.Event;

[code]....

will return the error:

Error: Implicit coercion of a value of type com.greensock.loading.display:ContentDisplay to an unrelated type starling.display:DisplayObject.

View 2 Replies

ActionScript 3.0 :: Stripping Variable Between Sub Classes?

Dec 5, 2010

I was just wondering if this is possible and the best way to achieve the following.I have 3 classes. One base class and 2 subclasses. eg MyShape, Square, Circle. The Circle and Square classes both override the MyShape's assignProperties method which takes a string as its argument.What I do in this method is loop through a serialized string and assign variables.So the string looks something like p:10|x:200|f:300Because some of the properties are generic to the MyShape class I have the Circle and Square assignProperties call super.assignProperties()Now this all works great but I realised I'm going to get some repitition calling it at each level.

So I was thinking is it possible to get the supers.assignProperties to strip a property from the string if it is found before the assignProperties in the Circle and Square class is called.Here is sort of what I have with a little pseudo codeSquare Class assignProperties Method

PHP Code:
assignProperties(_properties:String) {
var properties:Array = _properties.split('|');

[code].....

View 4 Replies

ActionScript 3.0 :: Passing A Variable Through Classes?

Apr 4, 2011

I have two classes, IntroScreen.as and MainMenuScreen.as.I have an input text box on the IntroScreen that captures text and successfully traces it in the same class.

Actionscript Code:
public var nameEntry:String;public function startButton(event:MouseEvent):void {  trace("Start button clicked.")  nameEntry = enterName.text; 

[code].....

View 13 Replies

Accessing A Public Variable Between Classes?

May 25, 2009

I've got two classes running...one is a document class (EgoGame.as) and another is a class linked to several similar movie clips (Ball.as).I'm trying to access a public variable from Ball.as which has been declared in the doucment class EgoGame.as.When I run the test the outputs states the following...1120: Access of undefined property _ballPlaced.Here's my code.  What I'm trying to do is remove the event listeners from the Ball.as when the _ballPlaced variable is true, so that the user can't drag and drop the balls after they've been placed in a zone.

Document ClassEgoGame.as
package
{

[code].....

View 3 Replies

AS3 :: Flash - Pass A Variable Between Classes?

Mar 2, 2011

I've been having a problem with passing variables between classes.

I have one class called GlobeView.as

Within that is a function designed to add markers to a globe

GlobeView.as -
public function addAdventureMarker( latitude:Number, longitude:Number, name:String=null ):void
{

[Code]....

View 3 Replies

ActionScript 3.0 :: Return Variable Between Classes?

Jan 21, 2009

I have a problem with returning variable between classes. As far as I know there are some ways to do it but in this particular case I tried to use Getter.

So I have an XML file (content.xml), a class to read XML (LoadXMLExt.as), a class to display images, and the main class which first call the LoadXMLExt to get the information from and then call the displayimage class including passing the information from LoadXMLExt.

[Code]...

View 4 Replies

ActionScript 3.0 :: Pass Variable Through Classes?

Dec 9, 2009

How do you pass variables through classes?

View 7 Replies

ActionScript 3.0 :: Pass The Variable From Timeline To Classes?

Jul 25, 2011

I need to pass a boolean variable initially set to false to one of my classes called "EasyGame".It is than changed to true when one of the function in this class is runned.

View 1 Replies

ActionScript 3.0 :: Pass Variable From URLLoader() Between Classes

Aug 18, 2011

I have two classes. See below.

What I want to do is pretty simple but I must not know how to do it. I want the URLFactory to create the Array and store it in the variable "dataArray" and use the Array in the Main class by calling the GetList() of the URLFactory class. What I have returns nothing...

Basically I need to set a variable equal to  URLLoader.data (var something:String = URLLoader.data) so I can use this variable in other classes.

[Code].....

View 3 Replies

ActionScript 2.0 :: SetInterval, Classes And Variable Scope?

Jul 27, 2005

I'm trying to make a Class for a slideshow. I have a problem using the setInterval and clearInterval methods.See my code below. In the showPic function I have a conditional clearing the interval (repeating the showPic function). At least, it should do so, but it's not working. The interval continues. I'm using "this" so that's not the problem. Maybe it has to do with the scope of the variable to which I assigned the interval?

[Code]..

View 6 Replies

ActionScript 3.0 :: Variable Referencing Between Classes And Custom Event?

Nov 5, 2009

I finally got the variable referencing between classes and custom event problems sorted out. Now I got a question regarding the Error #2044 and Error #2035. The error reads like this:

Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.

I've put all the swf in the same directory, so I don't think that is the problem. Could it be that my XML file is in another directory that's causing the problem? I also heard having quotes in the URL in the XML file could also be problematic. Is that true? Here are my AS and my XML file.
[code]......

View 12 Replies

ActionScript 3.0 :: Using Static Variable To Create External Classes?

Feb 25, 2011

I've rarely used static variables or methods when creating external classes, but I have on occasion, and it's very useful when I need global access to a value. I've seen negative criticism on the use of the "static" keyword, but never understood why. Is there a right and wrong way of using it, or is this not true? I'd like to use it in a context similar to classes such as MouseEvent or TextFieldAutoSize, where there is a list of values globally accessible for identification purposes.

It allows better code readability, and also allows for easy customization in the future. The value of TextFieldAutoSize.NONE is "none", but as long as a programmer used the reference TextFieldAutoSize.NONE and not the string literal "none", Adobe could change the value of TextFieldAutoSize.NONE to be "hahahahaha" and everything would still work just dandy because (TextFieldAutoSize.NONE == TextFieldAutoSize.NONE) is still true even though ("none" == "hahahahaha") is not.

Is there any kind of negative impact on using static variables this way? Or even functions for that matter? I'd just like to clarify this before I go and build a large project around the idea this is perfectly okay.

View 0 Replies

ActionScript 2.0 :: Making A Variable With X And Y Position?

Feb 12, 2009

I am working on a client who wants a "Game-like" tour of their facilities on their website. I can use flash and do some very basic actionscript ..especially cutting and pasting

At any rate, I have character that moves on the main tour map and he starts in the parking lot...he can go from one screen ( scene ) to another. But when the character returns to the main tour map he always starts at the same location. As opposed to starting where he just came from. Such as if he just went into the "Process Plant" he should start on the main map at the "Proccessing plant" ... Can I set the X Y coordinates in some type of variable that remembers where he came from when he exits another scene and returns to the main map...?

View 6 Replies

ActionScript 3.0 :: Making A Variable Name With A String?

Jan 12, 2010

I've moved to actionscript 3.0 from PHP, and there are some things I just do not get. For example, making a variable name with another variable.Let's say I have movieclips called object1, object2, object3 and so on. I used Math.round() and Math.random() to get a random integer number, and I want to select one of my movieclips according to this number I get.
In php, you can do this:

PHP Code:
<?php
$objectNumber 1;//Let's say this is a random number

[code].....

View 8 Replies

ActionScript 3.0 :: Variable Making Loop

Sep 7, 2010

[Code]...

so what i want it to do is making 10 varibles named Name1 - 10

View 9 Replies

ActionScript 2.0 :: [FMX] Making A Random Variable?

Dec 24, 2002

Making a random variable?

View 9 Replies

ActionScript 2.0 :: Making A Variable Available Outside A Function?

Feb 20, 2006

Basically I'm trying to load a variable from an external file and then make that variable available for anything.

Code:
var where;
locSource = new LoadVars ();
locSource.load("source.txt");[code]....

I've tried all the variations of this I can think of. I've defined "where" as a global variable both outside and inside the function, tried to define a separate global value within the function (and changed the syntax of the trace accordingly in either case), nothing works. Basically, the function is being loaded properly; if I put the trace inside the function it shows up perfectly, but the variable isn't available for anything else, which is what I need to happen.

View 4 Replies

ActionScript 2.0 :: Making Filename A Variable

Apr 21, 2006

it's possible to have AS take the filename of itself and make it a variable. I need it to be done by AS only. I know it's possible in PHP, but I'm not sure about AS. I'm guessing if it's possible it's one line of code. I'm using Flash 8 but publishing at Flash 6, AS 2.

View 2 Replies

ActionScript 3.0 :: Making A String Contain The Name Of Another Variable?

May 3, 2010

var myNumberArray:Array = new Array;
myNumberArray[1] = new Object;
myNumberArray[1].myProperty = 10;

[Code]....

This obviously traces out the string "myNumberArray[1].myProperty", completely disregarding that there's already a variable/property called myNumberArray[1].myProperty, which has a value of its own.

Tracing out this[myStringVariable] just gives an 'undefined'.

Is there any way to get it to trace "10", using only the 'myStringVariable'? In other words, to make AS understand that myStringVariable contains the name of another variable/property?

View 4 Replies

ActionScript 2.0 :: FMX:Loading External Variable From Text Into Variable

Sep 8, 2003

I want to load an external variable called name from a text file into a local variable in flash called my_str...here's what I have:

var loadText = new loadVars();
loadText.onLoad = function(success) {
if (success) {

[Code]....

I need to have the variable my_str available outside the function..

View 3 Replies

Actionscript 3 :: Incompatible Classes When Loading SWF?

Apr 2, 2010

I have two ActionScript 3 projects, game(.swf) and minigame(.swf). At runtime the main game loads the minigame via Loader. I also have a shared library (SWC) of event classes, included by both, which minigame will need to dispatch and game will need to listen to.

First: Is this possible this way? Second: What will happen if I compile the minigame, then change the event classes so they're incompatible, then compile the main game. Will Flash crash when trying to load the minigame SWF? (I hope so)

Third: And what will happen if I change the event classes, but in a way that preserves interface-level compatibility?

View 1 Replies

Making Something Happen After A Variable Has Been On The Stage For A Certain Time?

Dec 13, 2011

I'm making an Elder Scrolls type game and I want my enemies to hurt me after a certain time.So pretend like 5 seconds after they come on the stage they would take 5 hp off me.Then when one of the enemies die it stops until another enemy comes on the stage then it counts how long its been on the stage.This is what I have so far:

Actionscript Code:
var tmr1:Timer=new Timer(2800); var tmr2:Timer=new Timer(5000);

[code]...

View 1 Replies







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