Deselected (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Gordonrox24
mNo edit summary
>Emess
categorizing
 
(15 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{CatUp|Events}}
{|
{{stub}}
|<onlyinclude>{{Event|name = Deselected
 
|arguments =
|description = Fired when a HopperBin's thumbnail is clicked or it's corresponding number is pressed while it's selected.
|object = HopperBin
|}}</onlyinclude>
|}
{{Example|<pre>
local bin = script.Parent --script is inside a HopperBin
--note the use of an anonymous function
bin.Deselected:connect(function()
  print("Deselected")
end)
</pre>}}


[[Category:Events]]
[[Category:Events]]

Latest revision as of 22:39, 13 May 2011

Deselected ( )
Description Fired when a HopperBin's thumbnail is clicked or it's corresponding number is pressed while it's selected.
Member of: HopperBin
Example
local bin = script.Parent --script is inside a HopperBin
--note the use of an anonymous function
bin.Deselected:connect(function()
  print("Deselected")
end)