touch problem : finger slip down the point A..point B...Point C...will be disappear!

dear all,

I want to let user’s finger touch slip down the Point A, Point B…etc… and then it will disapper, I have try use the touch, but need to touch every Point(like the “tap” event), also I have try multi-touch, but no different.

so please help…

thanks in advance.

raymond [import]uid: 22631 topic_id: 23519 reply_id: 323519[/import]

Are you looking for this kind of thing or is there something more complex I am not yet understanding?

[lua]local point = {}

local function touchPoint(event)
event.target:removeSelf()
end

for i = 1, 3 do
point[i] = display.newCircle( 160, i*100, 20 )
point[i]:addEventListener(“touch”, touchPoint)
end[/lua]

Let me know.

Peach :slight_smile: [import]uid: 52491 topic_id: 23519 reply_id: 94416[/import]