Tagged Questions
0
votes
1answer
28 views
randomly generating images on screen, how do i get it to loop after a certain amount
so I'm creating a project and for the background I want stars randomly appearing and dissapearing from the screen.
I have the stars randomly appearing, but they just stay on the screen and eventually ...
1
vote
5answers
1k views
AS3 : AddChild based on Array Value
Let's say I have an array, each item in the array has a corresponding library item.
I'd like to do something like :
var rando = Math.round(Math.random()*3)
var myArray = new Array ["ball", "wall", ...
0
votes
2answers
269 views
Changing Child Index of MovieClips based on their Y Position?
I'm writing a game with Flash CS5/AS 3.0 that tries to simulate depth of field by drawing all the relevant Movie Clips based on their Y position in ascending order, i.e. things lower on the stage ...
0
votes
2answers
1k views
as3 using addChild with an array containing indexes
so i have an array containing many instances. let's say movieclips.
and i have another array which contains numbers..in this case those numbers represent selected indices that i've somehow chosen!
...
0
votes
2answers
476 views
How to add an element to an array inside a SimpleXMLElement Object
I have this object parsed using SimpleXML:
SimpleXMLElement Object
(
[contact] => SimpleXMLElement Object
(
[name] => Some guy
[number] => **********
)
[messages] ...
0
votes
2answers
1k views
movieClip in Array displays null, and aren't showing up on stage.addChild(Array[i])
i am new to Actionscript3, i need to know why i keep getting Parameter child must be non-null. And my code won't display 5 enemyBlock objects onto the stage but only just one.
any tips and help will ...