This content has been marked as final.
Show 4 replies
-
1. Re: bring invisible buttons to top?
Rothrock Apr 5, 2011 10:10 PM (in response to Mark Embrey)setChildIndex(button_a,0);
setChildIndex(button_b,0);
whoops made a mistake
-
2. Re: bring invisible buttons to top?
Rothrock Apr 5, 2011 10:13 PM (in response to Rothrock)Sorry I had a mistake in my test file. What I had originally was right.
setChildIndex(button_a,numChildren-1);
setChildIndex(button_b,numChildren-1);
-
3. Re: bring invisible buttons to top?
Mark Embrey Apr 6, 2011 6:24 AM (in response to Rothrock)thanks Rothrock!
-
4. Re: bring invisible buttons to top?
kglad Apr 6, 2011 7:29 AM (in response to Mark Embrey)it's easier to use:
addChild(button_a);
addChild(button_b);



