Quick Links:
Download Gideros Studio
|
Gideros Documentation
|
Gideros community chat
|
DONATE
clear button — Gideros Forum
Home
Discussions
Sign In
Home
›
General questions
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Quick Links
Categories
Recent Discussions
Categories
7.8K
All Categories
11
Help with translations
4.2K
General questions
107
Roadmap
358
Game & application design
316
Plugins
70
User experience
75
Marketplace
290
Code snippets
34
Building a team?
269
Suggestions & requests
352
Announce your apps made with Gideros.
90
Step by step tutorials
668
Bugs and issues
195
Introduce yourself
239
Announcements
106
Forum talk
404
Relax cafe
In this Discussion
July 2014
amin13a
July 2014
Kirkkaf
July 2014
Jacko
July 2014
Harrison
Top Posters
ar2rsawseen
6991
SinisterSoft
4058
hgy29
3645
keszegh
3255
atilim
2892
antix
2136
MoKaLux
2006
OZApps
1983
totebo
1781
oleg
1706
hgvyas123
1412
techdojo
1321
pie
1194
gorkem
1186
rrraptor
1030
phongtt
1029
Mells
1024
MikeHart
1020
john26
995
GregBUG
962
clear button
Jacko
Member
July 2014
edited July 2014
in
General questions
whats the commend to clear button
+1
-1
Share on Facebook
Comments
Harrison
Member
July 2014
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
+1
-1
Share on Facebook
Jacko
Member
July 2014
button:addEventListener("click",
function()
print("Started button")
end)
i want him to disapear after click at him
+1
-1
Share on Facebook
Kirkkaf
Member
July 2014
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
+1
-1
Share on Facebook
amin13a
Member
July 2014
button:addEventListener("click",
function()
print("Remove button")
button:removeFromParent()
end)
+1
-1
Share on Facebook
Sign In
or
Register
to comment.
Powered by Vanilla
Comments
function()
print("Started button")
end)
i want him to disapear after click at him
Sprite:setVisible(bool)
Kirk
function()
print("Remove button")
button:removeFromParent()
end)