The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
20k views

when to use addChildViewController vs pushViewController

I just watched a 2011 WWDC presentation on "Implementing UIViewController Containment" (here's a link to the video) They mentioned both of these ways of adding viewControllers to the screen, and I ...
3
votes
3answers
1k views

addChildViewController alternative for iOS 4.3

I would like to use the same functionality of addChildViewController, but for the version 4.3 (addChildViewController is only available in version 5). Thanks in advance.
9
votes
4answers
18k views

Adobe Flash Builder (flex4): addChild() is not available in this class.

I want to load an swf into a flex 4 application in order to use its classes. var ldr:Loader=new Loader(); ldr.load(new URLRequest("file://path/to/fileswf")); ...
2
votes
2answers
576 views

Access of undefined property for timeline addChild code :(

I'm trying to do a simple test to figure out another bug, but I'm getting Access of undefined property tsLogo for addChild(tsLogo); I don't get it because this is simple timeline code on the first ...
1
vote
1answer
5k views

AS3 Change textfield inside movieclip added from libray

I'm trying to do the following: I have an empty movieClip in my stage called zonaCentral_mc. I use a function that has this code: zonaCentral_DescripcionProceso = new ...
0
votes
2answers
57 views

Strange issues when using addChild and hitTest with AS3

I am having a couple of problems when adding a child in action script 3. I am currently building a Space Invaders game and I am writing the function that adds the asteroids to the stage. My first ...
0
votes
1answer
750 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
971 views

AS3 Global class that can add objects to stage

So I recently learnt that by importing a class into my main class I can access its functions from any other class. BUT.... one of my functions in the imported class needs to add display objects to the ...