ActionScript 3.0 :: Use Arrays To Display Objects On The Stage?
Apr 4, 2011
How can I use arrays and some how display my objects accordingly based on my code below?
What I have here are three buttons that when clicked a new clip is added to the stage with a predefined position which means that when button1 is clicked the MovieClip will be added at the very top and when button2 is clicked the MovieClip will be added at second and when button3 is clicked the clip will be added at the very bottom, but what I would like to do is to be able to dynamically position these objects based on how many clips exist, in other words if button3 is clicked first, I want the clip to be positioned at the very top and if later button1 is clicked the clip is positioned
Accordantly (at second place). I know this may be simple, in fact I could probably use a few IF statements but I know the code would look ugly (yes, even more) and I may have add more buttons later. What I would be awesome is to some-how use arrays or something that makes more sense to hold the MovieClips and then display them accordingly.
ActionScript Code:
button1.addEventListener(MouseEvent.CLICK, addItem1, false,0,true);
button2.addEventListener(MouseEvent.CLICK, addItem2, false,0,true);
button3.addEventListener(MouseEvent.CLICK, addItem3, false,0,true);
[Code].....
View 3 Replies
Similar Posts:
May 7, 2011
I've got four arrays which I want to use to create objects on the stage.
The first one is what the Object Class is called.
The second one is what I want the instance name to be.
The third and fourth relate to the x and y co-ordinates respectively.
ActionScript Code:
var objectName:Array = [Background, Frame, Up, Down, SideBar, Yellow, Green, Pink, Blue, Titles,
TimeBar, TimeBarSlider, Stop, Play, Pause, ThumbnailOutline, Thumbnail];
var instanceName:Array = [bg, frame, up, down, sideBar, yellow, green, pink, blue, titles,
TimeBar, timeBarSlider, stopBtn, playBtn, PauseBtn, thumbnailOutline, thumbnail];
[Code] .....
The "i" would relate to the parameters for the same object. So, if i = 0, then the Object Class Name would be: 'Background', the instance name would be 'bg', the x position would be '0', and the y position would '0'. What code would I need in the for loop to create this?
View 7 Replies
Jan 20, 2010
I have a string array with a list of words,e.g. var textArray:Array = ["a1", "b2", "c3", "e5"]Then I also have an array with a list of buttons that are visible on my stage,e.g. var objectArray:Array = [a1_btn, b2_btn, c3_btn, d4_btn, e5_btn]m wanting to use actionscript to make the buttons that are writen in the text array to be visible onscreen, and the buttons that arn't written in the text array to be invisible.
View 4 Replies
Oct 2, 2008
I'm passing a stage reference to my class, but when I try to access a movieclip on the stage I get an error.[url]...
View 9 Replies
Apr 15, 2012
I'm new with strings and arrays. I want script to calling display objects to the stage and the timer to move images up and down to appear like a scrolling numbers. I start getting sloppy, and mess up passing to Tweener.
- An explanation or strategy may be enough, "I've got pretty close on this one"
- There was confusion regarding the Containers and addChildren...looked like arrays
The code "get as far as error with NumbersView and numbers undefined etc".
import flash.display.DisplayObject;
import flash.display.MovieClip;
import flash.utils.Dictionary;
import flash.events.Event;
import caurina.transitions.Tweener;
[Code] .....
The methods were proved separately. "I got a earlier version of the document going, but I need to work through this to understand it."
Symbol Properties
Class ImageView
Tweener
The "caurina" folder needs to be present
Rolling Numbers "Success loading numbers and connecting to counter".
Placed the movie clip object on stage with two dynamic text fields in it. Make sure the container is placed on stage, has the two text fields in it, and everything is given a proper instance name. Also include the caurina folder.
Seconds MovieClip symbol with instance name of seconds
firstDigit Dynamic text field with instance name of firstDigit, placed in seconds
secondDigit Dynamic text field with instance name of secondDigit, placed in seconds
Symbol
Un-tick 'Export for ActionScript'
Use 'Name, Class, and Instance' correctly
View 1 Replies
Oct 3, 2011
I think there are 2 different practices with dealing with display object on the stage.You draw all the objects on the stage and then manipulate the "visible" attribute to show or hide them.You use addChild and removeChild to manipulate the visiblity.How do you think what is the best method for this?
View 3 Replies
Oct 22, 2007
I've been putting off asking this question and have tried to resolve it myself since it would seem to be so basic; however after much frustration , here goes:Can a display object (ie an instance of a class loaded from the library such as a filled rectangle {trying to keep this simple} be positioned on the main stage by using the following syntax:myrecTangle.stage.align = StageAlign.BOTTOM;I have created a fairly simple class to load objects to the stage by class type (recTangle) and name (myrecTangle) and all works fine up to the positioning. The objects are created and named properly and are placed on stage; however, they are all placed on stage at 0,0 stage coordinates. I can postion them anywhere using x. and .y values but when I use syntax similar to that above they are still positioned at 0,0. There are no errors thrown. I have also tried to create a sprite for each, load them into the sprite and addChild the sprite to the stage. They are still positioned on stage at 0,0. Is the stage.align/StageAlign syntax peculiar to absolute main stage positioning or am I allowed to use it also for object positioning.
View 1 Replies
Feb 27, 2011
I am using CS3. And this is all about understanding Identifier and Class from the symbol property under Linkage.
I read some articles where all are using class instead of attachMovie() method on TimeLine.
Its confusing to me and couldn't able to make it work.
The article I read says that attachMovie() method will be in class file.
View 9 Replies
May 7, 2010
If an object exists outside of Flash's stage boundaries, is on the Display List, and is visible, is it causing a performance hit from Flash rendering it? In other words, does Flash render what isn't seen?
This leads me to believe so:
http://stackoverflow.com/questions/170203/how-do-you-make-flash-not-render-an-object-on-the-stage
View 1 Replies
Oct 8, 2009
When using Loader class to load display objects (bitmaps, SWFs...) from remote URLs, is there any way for them to be instantiated (referenced as we know, by Loader::content property) as some user specified valid subclass? For example if I had a class that extended a Bitmap, is there any way for the loaded object to be of this class?
View 9 Replies
Nov 22, 2010
Is there any way to display flash objects which are outside the display area when flash is embeded in HTML
The reason i ask is my current project has a rotating + enlarging effect which is largely dynamic so sometimes an object may clip the edge of the stage areathis looks messy but i dont want to increase the stage area to cover the largest possible area any object could enter because most of the time the objects are at the center and small so i would end up with a lot of white space
View 8 Replies
Aug 5, 2011
I have a list containing display objects from throughout the application (insertion order). I want to process the list either top-down (parent, child) or bottom up (child, parent). The only requirement is that either a parent is processed before any child or vice versa a child before its parent. What is a good approach? This question is not about sorting a list. It's about retrieving the depth of a particular display object.
Example
Display list:
A (root)
B1
C1
C2
D1
B2
......
My list:
list = [E1, F4, A, B2, B1, C3, ..., N9, N8]
Bottom-up:
N9, N8, F4, E1, C3, B2, B1, A
Top-down:
A, B2, B1, C3, E1, F4, N9, N8
Does not matter if N9 before N8 or N8 before N9. Important is that any N is before M (first run) or any M before its children N* (second run).
View 2 Replies
Jan 22, 2012
can I resize a display object (container) without its contents (children) are resized?
For example, in the following code when I resize the green square, red is also resized. I wanted to resize only the green.
ActionScript Code:
import flash.display.Sprite;
var sprite:Sprite = new Sprite();
sprite.graphics.beginFill(0xff0000);
[Code].....
View 3 Replies
Jun 28, 2011
How do I identify all the display objects in the display list in ActionScript, bellow the one that I have clicked? All the other objects are shadowed by the first one. What if other objects have visible parameter as hidden?
View 1 Replies
Feb 5, 2010
I want to put together an array of values that I can call by an ID I set myself, for example I want to be able to call "title" from the id "123", I tried this with Arrays but they don't seem to work the same way in AS3 as they do in PHP (the language I work with normally).
The following is what I am trying to achieve:
Code:
var Values:Object = new Object();
var Infos:Object = {
title:'something',
[Code].....
View 8 Replies
Apr 2, 2011
I'd like to know how to compare one array to another array with objects.
For example:
Array1 = [one, blue, car];
// there will always be only one entry in this array - no Array1[1], no Array1[2], etc.
Array2 = [product.number, product.color, product.type, product.cost, product.qty];
The actual content in Array2 would be something like this:
Array2[0] = [three, green, boat, 100, 5];
Array2[1] = [two, blue, truck, 200, 3];
Array2[2] = [one, red, car, 50, 20];
...and so on, up to about 60.
I'm trying to figure out to go through all of Array2 to determine if there's a match to Array1. Since none of the entries in Array2 are the same, there will always be one match.In this instance, I want to match array1 with product.number, product.color, and product.type. My example has them as the first 3 criteria, though that may not always be the case.
Something along the lines of this:
Code:
function findMatch () {
for(i = 0; i < Array2.length; i++) {
if(all 3 Array1 items equals items in Array2[i]) {
[code]...
Background: I've a combobox search that allows a user to select from drop-downs. After a user selects items from all 3 drop-downs, they click a submit button, and there's a check to see if the criteria in the drop-downs matches anything in the Array2 (which it should, if you can select it, then it's in the array).
After that, the matched information is used to populate a movieclip. There's actually about 20 pieces of information associated with each product. However, I only need to match 3 of them.I've searched and found comparisons for arrays. But I don't see how they'd apply to my issue as I'm using objects and there are more items in array2 than in array1. Of course, they may apply, and I'm just not understanding how. I could create a 3rd array and move only the items needed for a match from the array2 to it. Then I could do a straight comparison between array1 and array3.
View 2 Replies
Feb 2, 2012
Basically what I'm looking to do is hitTest bullets inside an array (spawn via addChild -> pushed into an array) with another array containing ships (spawn via addChild -> pushed into an array as well).At the moment I have:
function moveEnemyLarge():void{
var target2:EnemyLarge;
for(var i2:int=0;i2<enemyShipArray.length;i2++){
[code]....
.. and a near identical function for the bullets (using variables: i, target).What is the easiest way for me to hitTest the objects within my bullet array with the objects in my ship array. Putting "target" in the PLACEHOLDER slot doesn't work, and from what I've seen some people will shove the one for() inside of the other.
View 2 Replies
Feb 3, 2010
I have a loop, it goes through and works fine. I can trace out my variables and all is hunky dory, for example "trace(title);" displays the variable title, as expected, there is also the variables "something" and "everything" and a unique ID: id. Now I want to put these variables into an array, so the values can be called via the ID. For example (I'm a PHP programmer normally) in PHP I'd do the following:
Code:
$array[$id]["title"] = $title;
And to display it I would do
Code:
echo $array[$id]["title"];
For each part of the loop I want to add the "title", "something" and "everything" into the array so I can call them by "id". I think I'm doing it wrong though, should I be using objects? If so, how?
View 1 Replies
Nov 21, 2010
What i have is 2 arrays, where one is "correct" - set by the computer. The player then makes his array and when its done i want to compare them to see that they match up. The array is in theory able to go infinite (its a memory game), and i thought this would work.
The arrays can only contain the numbers 1,2,3 or 4. which is added like this
Code:
player.push(2);
Code:
if(player.length == siren.length)
{
if((player[n] + siren[n]) /2 == siren[n])
[Code]......
What happens with my code, is it goes to lose each time. How can i compare the object at spot 1 in each array, then 2 in each array, etc?
View 2 Replies
Jun 7, 2011
I'm trying to display strings stored in arrays with a for loop, i could just write out each array like:[code]but it only displays the last one, is there a way to display it from 1-10, or 1-any number?
View 4 Replies
Feb 14, 2011
I have a chart and am trying to display the "volume" in a line chart as the primary series & the "temp" as a column chart as the secondary series...(the "compound" will be shown in the datatip):
[{date=Tue Feb 08 19:00:00 EST 2011, volume=1200, 1={temp=-50, compound=helium}, 0={temp=-45, compound=oxygen}}]
I can get the "volume" series to display fine, but cannot get the "temp" series to display...how do I access them? Right now I have:
<mx:ColumnSeries id="secondSeries" xField="date" yField="temp">
View 1 Replies
Mar 6, 2012
I am trying to make a to-do list application. I would like it to save each time I close. So I researched shared objects, and somehow cannot get it to work. I hold all my "items" in an array, then copy that array to a shared object. Here is the code used to copy the array: At the top. I put the array in a Global class, just ignore the GlobalVars.vars. junk. It's not really necessary, but it definitely works everywhere. ListItem is a class I made that works fine by itself.
Code:
var listCookie:SharedObject;
listCookie=SharedObject.getLocal("lkjasdf");
if(!listCookie.data.itemArray) {
listCookie.data.itemArray=new Array();
} for(var i in listCookie.data.itemArray)
[Code] .....
When this function is called, it equates the two arrays fine. I trace them both afterwards, and they have the same items in there. But when I close the .swf and reopen it, the saved array is full of undefined references. It has the same length, just nullifies everything it was supposed to have.
View 3 Replies
Dec 8, 2011
I get this error when i test my movie: TypeError: Error #1009: Cannot access a property or method of a null object reference.
My code is:
var pieceArr:Array = new Array();
pieceArr[1] = {
piece: MovieClip(wRook1.mc),
[Code].....
View 2 Replies
Jan 21, 2012
I want to arrange certain objects from a vector/array into a gird
Currently, I know how to do this during the creation of the objects.
Here's the grid function I've created:
function ArrangeInGrid(uiRow:uint, uiCol:uint, iOffsetX:int, iOffsetY:int):void
{
for(var i:uint = 0; i < uiRow; ++i)
{
[Code].....
Now I want to be able to apply the same logic of arranging objects in an array/vector in to a grid, how do I do it?
Or suggest a more efficient way to do so (if you have).
Notes:
I want it to be flexible in how many rows and columns the grid can have. The vector I'm using already has the cards in it. I can't just push the cards into the vector cuz of the way I manually created my cards.
View 2 Replies
Aug 9, 2009
can you create arrays of Bitmap and Sprite Objects? or Custom Objects?
if not, how would you typically create multiple Objects of the same type? just a loop with
var enemy:Sprite = new Sprite();
for(var count:int=0; count<10; count++)
{
enemy = new Sprite();
[Code].....
That way could be fine for many things, but theres other things I want to do.. such as, create an array of wav sounds.... and my program could pick and choose them, so they wouldnt need to load them on demand.. midi files too.
View 5 Replies
Apr 18, 2011
I've got an array of coins, which are called within the array coin1, coin2, coin3, coin4 etc. I'm trying to reference them to say if the character hits coin 2, then coin2 will disappear. Here's my array (so far):
ActionScript Code:
var coinArray:Array = [coin1, coin2]; //an array which contains all of the coins
And here's the script I'm working on:
ActionScript Code:
function coinCollect(evt:Event){
if (collisionTest (character, coin/*[n]*/){
var i:int = /*the number from coin[n]*/ - 1
remove coinArray[i]
}}
But I'm missing some major things, mainly how to reference which coin has been hit, and how to take the number from that coin and take 1 from it to reference it's correct position in the array? (the code in /* */ tags represents things I'm not sure on the code of).
View 2 Replies
Oct 25, 2003
how can i have an array of strings but also with mc identifiers in the same array and have it know the difference between object and string? RIght now i've got this array of strings that goes to a textfield, and if i change it to
portfolioSection(["section 01", "section 02", {linkage: "linkage_id", x: 530, y: 280}, "section 04", "section 05"]);
this.attachMovie(portfolioSection[2].linkage)[/AS]
to try and attach an MC instead of text in a textfield i just get [object object] in the text field.
View 6 Replies
Jul 6, 2004
i m doing a program which contain few text. When i click a button,'step 1' text will be view. When i second, 'step 2 ' text will be load out and 'step 1' text is still in the stage.. the method i m using is array.i put my text in an arrays.
View 9 Replies
Jul 16, 2011
I have had a long post somewhere on here and just wanted to start a specific post on just associative arrays. First of all I have an array which I don't know if it's an array or an associative array or an object or both. ie: I read that the below would be an object but works as an array too.
The problem is when I use this array as references to instantiate classes in a runtime shared library.I seem to be able to create the appropriate arrays and objects BUT I definately can't use/acess them properly. I massive confusion between movieclips and objects. I get a forced conversion error when I try to add objects to a movieclip . simply because I want to add the mc elements to the stage.
[Code]...
View 4 Replies
Sep 2, 2010
What i'm trying to do is creating an array of objects, little squares that are positioned in a grid with coordinates and when i click on the coordinates i need to select only the elements which fit with the value. So, what i'm trying to do now is to pass a value to each element of the array but it doesn't work:
[Code]...
View 2 Replies