PDA

View Full Version : ID of Children


Duane
05-22-2008, 03:43 PM
Hello ....

I have a VBox that I am dynamically adding checkBoxs to. Each checkbox has a unique ID. That works fine.

Now I need to have access to each of those checkbox's ids so I can tell which ones where checked, disable and enable them, etc.

Can someone help me with that?

Thanks

amarghosh
05-23-2008, 04:17 AM
checkBox1_id.enabled = false;
if(checkBox2_id.selected)
trace("it was so simple :)");