ActionScript 2.0 :: [mx04] Create An Array Within A Class

Jul 6, 2004

this lack of formal multidimensional arrays in Actionscript is getting to me. I'm trying to create an array within a class so that it's flexible enough to dynamically allocate enough space depending on how the instance of the class is specified. Ideally, I want this array's elements to also be dynamically allocatable.I've used the trick to "force" a multidimensional array in Actionscript by doing something like this before:

var row0:Array = new Array();
var row1:Array = new Array();
var matrix = [row0, row1];

...but this method isn't practical for dynamically sized arrays.

View 3 Replies


Similar Posts:


MX04 Images In An Array?

Sep 19, 2009

Can images be stored in some sort of array and then called to the stage ramdomly?

View 1 Replies

ActionScript 2.0 :: MX04 - How To Create Flash Calculator

Aug 16, 2010

How to create a decent calculator in actionscript 2. I was hoping to create on with, just one input box and the user could put something like 5 * 2 + 10 - 2, in the input box and then the computer would be able to work it out.

View 2 Replies

ActionScript 2.0 :: Create An Array Of Objects In A Class File?

Nov 28, 2009

I am trying to create an array of purchases or objects. I have several products that I want to store the users selection to contain the item they selected, price, & quantity. I'm at a loss on how to set this up. Currently the user can select their product and their total price will be displayed in the Cart Total text field but I have no way of storing the data.[code]...

View 0 Replies

ActionScript 3.0 :: Where To Create Array Of Items (Which Class File)

Jan 25, 2012

This is a hard question to phrase and having trouble finding the right search terms. In the last couple of weeks I have been learning AS 3.0 and the fantastic Classes that are cool as heck (not a programmer... well sort of). Everything has been working great and I've grasped the concepts well, but because of my lack of experience I am not sure of the "best" way to do some things. For example where (which "as file" to create an array of characters?)

This is a very simple game:
25 "characters" (character class in Character.as)
All characters have the exact same properties with different values:
charName:int
life:int
strength:int
movement:int
type:String
char_mc:MovieClip (or sprite.. probably mc)

There are 2 types of characters; shipCrew and aliens. The differences between the two is that shipCrew can use various weapons and have unique "names". Aliens don't have names, just a type and they can grow and/or multiply. All of the interaction and basic game play I can handle no problem once I figure out "where" to create my characters and classes and or subclasses. My initial "training experiments" worked well... until I started reading up on "best practices" in coding and realized I had it kind of all mixed up and backwards. My concern is "doing it wrong at the start".

My first stab at this was to create the array of ALL characters in the "main.as" class for the document, then looping the array, creating new character instances on the stage. Since each character has different properties I just created the same array properties for each with a different value. So basically I am "hard coding" all the characters up front "by hand" so to speak with all the properties in the array. Since they were all identical basically, looping the array to "do stuff" was straight forward... for now. The array looks horrible in the code and is hard to "read" but since it's all "static" anyway it doesn't seem to matter... but would still like to "do it right".

Game play is simple because at a basic level each character regardless of what type it is will do the same thing. I would expand on the differences later. However as part of this inquiry I will need class instances on the stage to communicate with each other (like the idea of a registry for this). So my questions are:
Should I create individual as class files for all 25 characters? (icky?)
Or use an array to store the character class objects? A dictionary? A vector?

They all worked, I tried them all. I like arrays better because easier to deal with, but dictionaries look like fun and might be more efficient (only 25 items, how bad could it be?) storing in an object works too. Whatever type of "array thingy" I choose, Which class file do I create the array in? In the "main" document class or the character class itself? In another type of file like an "init" file? Could I create a "custom" file "type" or class... thingy like "CharacterCreator.as"? How about using a registry?

View 5 Replies

ActionScript 3.0 :: TypeError. Create A Class With An Array Of Objects?

Mar 7, 2009

I've been trying to create an Array of Objects in a Class structure, for easy access of the objects from other classes and my .fla file. Unfortunately I keep running into this error:

"TypeError: Error #1034: Type Coercion failed: cannot convert Seed@31161a1 to SeedCollection.
at flowerGame06_fla::MainTimeline/flowerGame06_fla::frame1()"

[code]....

View 3 Replies

ActionScript 2.0 :: MX04 - Create A Script Where The User Inputs A Maths Equation (something Simple Like 5 + 2 * 10)?

Aug 1, 2010

I am trying to create a script, where the user inputs a maths equation (something simple like 5 + 2 * 10), I have managed to break down the text into an array and have the numbers in one array and the symbols in another, I wanted the computer to then work it out, however I cant seem to think of how to do this and the methods that I have tried have failed.there is one dynamic box and the value of that is then broken down by an array split(" "), however this leaves the values in an array and it is percieved as a string not a number and so when i try to work it outit just displays 5 * 10, how would i get it to work that out?

View 1 Replies

Flash :: Create A Separate Class Then Create An Object Of That Class Within The Main Class?

May 17, 2011

I'm new to Flash AS3. I started making a game and I am a bit confused. Let's assume that I want to create a game that has multiple levels/modes, how can I do this in an object orientated way?

When i create games in other languages e.g. XNA C#, i create a separate class then create an object of that class within the main class and run the game based on a simple statement.

[Code]...

View 2 Replies

ActionScript 3.0 :: Flash Create New Instances Of Sprites From Linkage Class Names Inside An Array

May 17, 2010

i have sprites in the library with linkages in them.. how would i create new instances of them if they are stored inside an array?

[Code]...

View 2 Replies

ActionScript 2.0 :: Create A Custom Class (Testing) That Would Create A Box When An Instance Of The Class Is Created

Aug 29, 2007

I've been playing around with custom classes. My objective was to create a custom class (Testing) that would create a box when an instance of the class is created. I've tried three different approaches, however only (3) seems to be showing up. I'm just curious why (1) or (2) doesn't work?

Also is there a better approach than (3)? Since at the moment it's been created on _root. I hope the box can only be accessible through the instance. Since I'd like to incorporate the whole idea of public, private, encapsulation, etc.

[Code]...

View 3 Replies

ActionScript 2.0 :: Create Array Inside An Array Dynamically From An Unknown XML Tree?

Dec 28, 2010

Actionscript Code:
<root><node><child><grandChild></grandChild></child></node></root>

Actionscript Code:
Arr[0]=rootArr[0][0]=nodeArr[0][0][0]=childArr[0][0][0][0]=grandChild

Help needed to create Multidimensional Array from Recursive XML.

All I need create Array inside an Array dynamically from an unknown XML tree.

View 3 Replies

ActionScript 3.0 :: Create Dynamic Array Element Names Based On Another Array?

Jun 28, 2009

Is it possible to, if you have an array of class names like ActionScript Code: var city01names:Array = ["pic_01", "pic_02", "pic_03" ...] make a new array which would read these names, instantiate them, and push them into a new array containing the instances of all these pictures, which I could then use for a slideshow?

[Code]...

View 7 Replies

ActionScript 3.0 :: Create A Class File To Define A Class Called SimpleSquare

Feb 14, 2011

i) Create a symbol called SimpleSquare. This should consist of a simple red square graphic

ii) Create a class file to define a class called SimpleSquare. This should be linked to the SimpleSquare symbol. SimpleSquare ashould have the following functionality: When the instance is placed on the Stage, it should start to disappear by decreasing its alpha at 0.01 in every frame (hint: alpha)

View 1 Replies

ActionScript 3.0 :: Create A Class That Delivers The A Text Format To A Requesting Class

Jun 9, 2011

create a class that delivers the a text format to a requesting class. Unfortunately, even though when I trace the return it comes back with [object TextFormat], I do not see the results of the formatting. Heres [part of the clas trying to use the txtformatting class:

ActionScript Code:
private function buildTF(msg:String = null):void {
with (_tfield) {
alpha = 1;

[Code].....

View 6 Replies

ActionScript 2.0 :: Create A New Array That Is The Same As The Length Of Array?

Apr 21, 2005

I have 2 arrays:

Array 1 = [1,3,5,7,9,10];
Array 2 = [5,7,10];

Now, I wanted to create a new Array the is the same as the length of Array 1. The output should look like this:

New Array = [0,0,5,7,0,10];

View 3 Replies

ActionScript 3.0 :: Create A Class That Can Be Reused By Declaring The Class Only Once In Fla File

Jan 1, 2010

I have been practicing and trying to understand how classes work and I was wondering if it is possible to create a class that can be reused by declearing the class only once in my fla file. Rightnow I create an instance of the class than I asign it to a MovieClip the problem is that I can only use it once and if I want to use it again I have to create another instance of the same class, something like this.

[Code]....

View 5 Replies

ActionScript 3.0 :: Create A Main Class And Then I Import Another Class Into It?

Sep 25, 2009

I have a problem with classes. What I am trying to do is this: I create a main class and then i import another class into it.then I create an instance of the new class and add it to the stage.the problem occurs when im trying to use the new classes methods.

import classes.NewClass;
var test:NewClass = new NewClass();
addChild(test);[code].....

View 2 Replies

ActionScript 2.0 :: Create A Class That Extends The String Class?

Jul 7, 2007

How do I create a class that extends the String class?

Lets say I've created an 'exString' class that extends String.

In my project file I do the following

Code:
var test:exString = new exString();
test = "Hello World";
text.someExStringFunction();

I get a type mismatch in my "Hello World" assignment because Flash sees it as a String and not as an exString.

View 3 Replies

ActionScript 3.0 :: Dynamically Create Class Inside A Class?

Apr 19, 2010

This is what i'm trying to do :

I have 1 class that extends movieclip, let's call it Class0. I have 1 class that extends movieclip, let's call it Class1.

I create an instance of Class0 on stage like : var myClip0:Class0 = new Class0(this, "Class1");

The class Class0 when initializing, will create a new movieclip (myClip1) and add it as child, as an instance of Class1, like myClip0.myClip1. But it's when i create that clip, i want to tell it, it's an instance of Class1, like :

private var myClip1:Class1 = new Class1(this);

Where Class1 could be any class.

How do i pass Class1 to Class0 so it can create it dynamically?? Do i have to use the apply function??

inside Class0, i have a function that does :

Code:
if(subClass){
initSubclass(subClass);
}

[Code].....

View 8 Replies

ActionScript 3.0 :: Calling An Array In One Class From Another Class?

Oct 13, 2010

I'm trying to call a function in one class from another class and I'm using an array in the function of the class that I am calling from the other class. The array is declared and instantiated in the one class but when the other class calls the function with the array in it I get an error #1010: A term is undefined and has no properties. because the class that is calling the function that contains the array doesn't know that it is already declared. Anyway here is the code.

//CLASS THAT CALLS THE FUNCTION OF THE OTHER CLASS WITH THE ARRAY:
public class SpaceWolf extends MovieClip
{
private var _playerMissiles:PlayerMissiles;

[Code].....

View 7 Replies

MX04 Interactive Map Project

Apr 20, 2009

I am not exactly new to Flash in that I can do several things with it. However, I am not anywhere near expert status. I am working on an interactive map of a college campus for my employer. I am employing buttons that, when moused over, display a large image of each campus building. The question is this: is there a way to also have maybe an actionscript that would center that image automatically?

In other words, if the building I want to show is on the right hand side of an internet explorer window and I mouse over it, is there a way to have the map auto scroll the window to center the image that pops up on mouse over?

View 1 Replies

MX04 Loop A Pre-existing FLV?

Jul 22, 2010

I have been asked to loop an existing FLV file that someone else created. I do not know what version of Flash was used to create this file, however I do have an older version 7.2 Flash MX Pro. Currently the FLV starts automatically and stops and the end of the movie. The owner of the site would like the movie to start over with a continuous loop. I'm pretty much of a rookie with Flash and with HTML5 coming out soon, I don't think I'll get a chance to become a pro at this.

View 5 Replies

MX04 Understanding 'for' Loop Iterations

Mar 25, 2009

How come every time I run this script:[code]Where does the Undefined come into things? I have only asked the script to fire 3 times so the first time through the text in position [0] in the script Carp should be printed out?

View 2 Replies

MX04 Basic Countup With Intervals?

May 1, 2009

basically what im trying to do is have a basic countup timer that goes in intervals of three. (3,6,9,12,15,ETC.) but it has to run with a 12 fps and not stop. also this cannot be 1000 frames long .

View 12 Replies

MX04 : Making A Preloader/LoadBar?

May 4, 2009

Im trying to make a preloader. this is my first attempt and from a tutorial and some minor adjustments on my part this is what ive come up with. i was wondering if there was a way to add a percent, and also why this doesnt disapear after its done loading. it remains on the stage throughout the loaded swf.

PHP Code:

siteLoader.loadMovie("Population.swf");
loadingBar._xscale = 1;
loadingBar.onEnterFrame = function() {

[code]....

View 14 Replies

MX04 Moving An Action Frame

Sep 30, 2009

my flash tutor is on vacation and I need to work on a project. How do I move an action from from 246 to 271?? I've tried Copy/Paste and it's not working.

View 1 Replies

MX04 Blur Effect Won't Play?

Jan 16, 2010

I've put a blur effect on the hit state of a button, but the script for the button is On Release Go to and Play the scene I wan't it to skip to. So as soon as the button is clicked it does what it's told and the blur effect (16 frames long) doesn't get to play.

View 5 Replies

MX04 Pressing A Button While Movie Is Going?

Mar 27, 2010

On to the problem: I have a very simple flash, basically just a photo slideshow. The issue I'm having is this: I have a bunch of photos on the timeline, but I have a button on top of everything, just to give viewers the option to skip that particular scene. The button works, but only when the video timeline has reached the very end of the scene. It won't work before the end of the scene. The button actionscript is the most basic of basic:

on (release) {
gotoAndPlay(scene1)
}

View 2 Replies

ActionScript 2.0 :: JMEvevents Calendar In MX04?

Feb 23, 2004

Anyone know a good tut on how to implement the JMEvents calendar component? It comes with MX04 but I am unable to find a tut at the moment (although as I type I am looking and trying to work through it). It can be either an xml, db, or hard coded example. Just need a little push.

View 1 Replies

ActionScript 2.0 :: [MX04] Resizing Mc WITHOUT Xscale

Nov 4, 2004

I'm having a buch of pictures of different height and width, which have to be loaded into different movieclips, and resized to 'bout 100px * 100px (so they're all the same size ~> thumbnails)

The problem width xscale and yscale, is that you have to specify the amount the movieclip/image resizes, in percentages instead of in pixels.

is there ANY way you can resize a dynamically loaded JPEG to EXACTLY 100*100 pixels ?

Here's my code (which doesn't work):

Code:
movieMain.thumbsHolder.createEmptyMovieClip("afbeelding" + j, j);
imageHolder = movieMain.thumbsHolder["afbeelding" + j]; imageHolder.loadMovie(path);
imageHolder._y = j * 200;
imageHolder._height = 100;
imageHolder._width = 100;

View 4 Replies







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