Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I wanted to have an invisible box, for example, how could I get touch events if it has an alpha of 0? Or is there another way to make an invisible box.

local function invisiblebuttontouch(event)
    if event.phase == 'began' then
        print (event.x..","..event.y)
    end
end

button = display.newRect(1,1,300,300)
button:addEventListener("touch",invisiblebuttontouch)
button.alpha = 0

It never prints out the x and y, however if I don't set the alpha to 0, then it works fine.

share|improve this question

1 Answer

up vote 3 down vote accepted

You need to add this line to your code:

button.isHitTestable = true

Source: http://docs.coronalabs.com/api/type/DisplayObject/isHitTestable.html

share|improve this answer
That did the trick! Thanks! – Michael Jan 5 at 5:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.