Tagged Questions
0
votes
2answers
63 views
AS3: How can I add a children (instance) on stage every time I press the button without replacing the existing children?
How can I add a children (instance) on stage every time I press the button without replacing the existing children?
I have four Classes: Symbol1, Symbol3, Symbol4, all.
When I Press Symbol3 which is ...
0
votes
3answers
200 views
AS3 addChild PARADOX.
Okay so here is a question that is more about method i think. I am fairly new at this and i therefore think a have the wrong approach.
I want to make a "game" where every time you click, the stage ...
0
votes
1answer
740 views
AS3: finding an object by it Instance name in a dynamic added child
I am doing an Adobe AIR Kiosk app but I am having a little problem.
First step is to generate a webcam container:
var bandwidth:int = 0;
var quality:int = 100;
var camera:Camera = ...
0
votes
2answers
629 views
Accessing an instance in a dynamically added MC
I've added a movie clip dynamically using the following code:
var apie=new cPie()
apie.x=100
apie.y=100
stage.addChild(apie)
I now have a pie on my stage. Yum. Assuming this works like a movie clip ...