Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
clear button — Gideros Forum

clear button

JackoJacko Member
edited July 2014 in General questions
whats the commend to clear button

Comments

  • Needs more info.. what is the button code?
    “ The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time. ” - Tom Cargill
  • JackoJacko Member
    button:addEventListener("click",
    function()
    print("Started button")
    end)



    i want him to disapear after click at him
  • Have you taken a look at the reference manual? This is extremely useful to find the functionality you are looking for.

    Sprite:setVisible(bool)

    Kirk
  • button:addEventListener("click",
    function()
    print("Remove button")
    button:removeFromParent()
    end)
Sign In or Register to comment.