Hey,
First, I’m creating my display objects in scene:create(event).
The tutorial says I should change the position in the scene:show function.
But how can I acces my display objects there?
Example:
scene.create(…)…
local button1 = display.newImageRect("Data/Main\_Menue/button1.jpg", width,height); sceneGroup:insert(button1);
scene:show(…)
button1.x = CenterW; button1.y = CenterH-CenterH/2;
How should I acces them? Via functions? :huh: