Hi everyone,
I have a question about ScrollView, I insert some rect into a Scrollview like:
draw_list[data_set_index][j]=display.newRect(50,50,3,3,1)
scrollView:insert( draw_list[data_set_index][j] )
Now I want to get the insert rect, and move them from x position to x+50 position.
I can’t use draw_list[data_set_index][j].x=draw_list[data_set_index][j].x+50. Because after I insert this rect into the scrollview, draw_list[data_set_index][j] return me nil.
Can anyone help me?
Thank you very much