[Solved] Titanium function call issue [closed]

you can do two things : 1> you can pass that function to a window from where you can call that function. 2> you can use custom addEventListener to call from another window like below. app.js function test(){ alert(‘Hello from Function’); Ti.App.addEventListener(‘callTest’,test); } =================== another.js Ti.App.fireEvent(‘callTest’); solved Titanium function call issue [closed]

[Solved] An error occurred, please try again later [closed]

A Facebook app will always be linked to the Facebook account (the developer’s) which created it. Which is why you are getting the GraphMethodException, because you can only access that data if you request it using the said account. So unfortunately you will have to re-create the app with a new Facebook account and update … Read more