Advertisement
alestane

Closure sample

Nov 6th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. local function fetch(event)
  2.     local self = event.target
  3.     local function show(event)
  4.         self.text = event.response
  5.     end
  6.     network.request(someURL, "GET", show)
  7. end
  8. object1:addEventListener('tap', fetch)
  9. object2:addEventListener('tap', fetch)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement