Skip to content

Instantly share code, notes, and snippets.

@codeboxed
Created March 26, 2011 15:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeboxed/888392 to your computer and use it in GitHub Desktop.
Save codeboxed/888392 to your computer and use it in GitHub Desktop.
Titanium Desktop event listeners
<html>
<head></head>
<body style="background-color:#1c1c1c;margin:0">
<div style="border-top:1px solid #404040">
<div style="color:#fff;;padding:10px">Welcome to Titanium</div>
</div>
<script type="text/javascript">
var eventName = 'randomEvent';
Titanium.API.addEventListener(eventName, function() {
alert(eventName+' fired!');
});
Titanium.API.fireEvent(eventName);
Titanium.API.removeEventListener(eventName);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment