Okay I don’t understand how to do that.
Michelle [import]uid: 72372 topic_id: 13448 reply_id: 50185[/import]
Okay I don’t understand how to do that.
Michelle [import]uid: 72372 topic_id: 13448 reply_id: 50185[/import]
instead of
[lua]fields:insert(numberFieldTwo)
fields:insert(numberFieldThree)
fields:insert(numberFieldFour)[/lua]
use
[lua]localGroup:insert(numberFieldTwo)
localGroup:insert(numberFieldThree)
localGroup:insert(numberFieldFour)[/lua]
when using director all objects should be added to the display group that we returned from the new() function or else you have to remove them manually using removeSelf(). [import]uid: 71210 topic_id: 13448 reply_id: 50187[/import]
instead of
[lua]fields:insert(numberFieldTwo)
fields:insert(numberFieldThree)
fields:insert(numberFieldFour)[/lua]
use
[lua]localGroup:insert(numberFieldTwo)
localGroup:insert(numberFieldThree)
localGroup:insert(numberFieldFour)[/lua]
when using director all objects should be added to the display group that we returned from the new() function or else you have to remove them manually using removeSelf(). [import]uid: 71210 topic_id: 13448 reply_id: 50188[/import]
Okay that worked Perfect!
Thank you! [import]uid: 72372 topic_id: 13448 reply_id: 50189[/import]