I create several labels and text fields, and buttons.
I then add them to the display group called fields
I then ( i know lots of I then’s ) attempt to move the displayGroup to ( y position with a transition.to )
Everything on the screen moves to the correct “Y” position except for the textfields, they stay where they are.
Any clue why? or how to fix?
local fields = display.newGroup()
local txtField = native.newTextField( 20, 50, 100, 18 )
fields:insert(txtField);
local Label1 = display.newText( "Sample Label", 20, 25, native.systemFont, 12 )
fields:insert(Label1);
transition.to( fields, { time=500, y=-50 } )
I hope i got all the sample code.
But anyway everything runs, there are no errors but the textfields never move on the screen
any Help would be so wonderful. [import]uid: 11860 topic_id: 32840 reply_id: 332840[/import]