All
New user as I am I need to ask for some help.
The problem I have is on the touch event… And what I’m trying to do is to add a object and at the same time I want this object to follow the finger…
like you point at the screen and a object show up and then you move the finger on the screen and the object follows it.
The sample for event.x (below) is great but as you can see it creates the objects at start of the app… And i don’t want that 
local circle = display.newCircle(50, 50, 100)
circle:setFillColor(0,255,00)
function moveCircle( event )
circle.x = event.x
circle.y = event.y
end
Runtime:addEventListener(“touch”, moveCircle)
I’ve been playing around with event.phase began, moved but that does not help at all.
Does anyone have any tips how to do this?
Cheers
Rotter [import]uid: 31201 topic_id: 5838 reply_id: 305838[/import]