This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Titanium.Facebook.appid = "YOUR APP ID"; | |
| Titanium.Facebook.permissions = ['publish_stream', 'read_stream', "user_checkins", "publish_checkins"]; | |
| function doFacebookCheckin(_callback) { | |
| var getInfo = function(localCallback) { | |
| // GOTCHA - You need to stringify the coordinates or the | |
| // the API call will fail, this was a PITA to find | |
| var data = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function doClickMenu(evt){ | |
| alert(evt.source.title); | |
| } | |
| // we need to do some things to the Window once it is properly instanciated, so we add an event listener to its OPEN event | |
| $.win.addEventListener('open',function(){ | |
| var actionBar = $.win.activity.actionBar; // get a handle to the action bar | |
| actionBar.title='My App'; // change the App Title | |
| actionBar.displayHomeAsUp=true; // Show the "angle" pointing back | |
| actionBar.onHomeIconItemSelected = function() { // what to do when the "home" icon is pressed |