Is it a bug that events are NOT getting triggered for my “circle” object when I turn the alpha down to zero(0) for it’s fill?
I’m making an IOS7 like button and using a circle however it won’t pickup the event. Seems like I’ll need to set the alpha to 0.01 or something like that.
-- CIRCLE BORDER local myCircle = display.newCircle( 100,100, 100 ) -- myCircle:setFillColor(128,128,128, 0.01) -- WORKS myCircle:setFillColor(128,128,128, 0) -- DOES NOT WORK myCircle.strokeWidth = 5 myCircle:setStrokeColor(0,0,0) -- LISTENER SETUP local function localHandler(event) print(event.phase) end myCircle:addEventListener("touch", localHandler)