SQLite performance issue workaround
Everybody who works with Ti.Database already worked with code similar to:var rs = db.execute(sql); var values = [], fc=0; while (rs.isValidRow()) { var o = {}; if (!fc) { fc =...
View ArticleAdding Event listener to the TextField and call the webservice
Hi All, Someone please help on below requirement. 1. I have a textField entry which should allow only numeric values. (ex: airway bill numbers) 2. I have a button beside the textField widget 3. When I...
View ArticleRTF file and document viewer
Hi, I am using below code var fileloc = Ti.Filesystem.getFile(Ti.Filesystem.applicationDataDirectory, filename); fileloc.write(this.responseData); // write to the file viewer =...
View ArticleApplication installation falied on Tizen Emulator
I am using Titanium 3.1.1 GA and Tizen 2.1 SDK. I created one tizen application in titanium and run on tizen emulator. It is installed and launched successfully. But after 3 or 4 try of installtion,...
View ArticleProblem showing animation followed by splash in Android
I am developing for iOS and Android. My aim is to play an animation when the app opens and then (after the animation) show a splash screen/image. I followed this answer, it works fine on iPhone and...
View ArticleStoreKit returns empty products array
Hi, I'm developing an iOS app with Titanium Studio 3.1.1 and SDK 3.0.2 GA that has in-app purchases. This is the code with the problem:var array=['com.mysite.id1', 'com.mysite.id2', 'com.mysite.id3'];...
View Articlecalendar iPhone 3.x problems
Hi everybody, I´m trying to use the example code from appcelerator documentation to see how to insert an evente on an especific calendar i have in my iphone. if i open the calendar app i see gmail...
View ArticlePlay sounds (createSound) and music(iPod) when locked? (Both play when app is...
I can not get sound (createSound) and music(ipod) to play when the slider is locked. BackgroundModes are set in plist and tiapp.xml. Is there a work around, am I missing something, or is it just not...
View Articleblob images
Hi All, I want to store images which i get from facebook in the blob format in the dir. how can i do that? I am using titanium 3.1 and using iphone to deploy it Thanks
View ArticleMobileWeb: Using apply() to run an event handler in a specific scope
On iOS, I can use the following function to set scope for an event handler:var oxi = {}; oxi.bind = function(scope, fn) { return function() { fn.apply(scope, arguments); }; }; Â // Setting event...
View ArticleIphone 3G Splash Screen Not Changing
We changed our splash screen and it's not changing on phones that had the old version installed... I've cleaned, I've uninstalled and reinstalled... I've looked for the original file anywhere and I...
View ArticleCreating an iOS module with bundled framework and headers only
I am a JS developer who has built some Ti Alloy projects before and am currently trying to create an iOS module with a provided framework bundle and 2 small header files. I started with the module...
View Articleshare to facebook error
kindly when i use the following code :- fb.requestWithGraphPath('me/feed', {message: "Trying out FB Graph API and it's fun!"}, "POST", function(e) { if (e.success) { alert("Success! From FB: " +...
View ArticleInternet Cache
Hi All, I am developing a simple app with web view.... When the app is opened, 3 tabs and each tab has a web view.. If there is an internet connectivity, the web view opens.. What I want here is, When...
View ArticleDeploy on iOS Device or Store fails 90% of time
Hi, Each time I want to deploy on iOS device or App Store it takes me ages because 90% of times I got the following error: ** BUILD FAILED ** [ERROR] : The following build commands failed: [ERROR] :...
View ArticleStorekit fails to restore all completed transactions
Hi, I use Storekit extension to manage in-app purchases for an iPhone app. This is the code I use (very similar to the example's one): // onclick --- function restorePurchases() { spinner.show();...
View Articlei am installing titanium in mac mini and create a new project name demo. and...
Launching simulator process failed [ERROR] : Error: EACCES, permission denied '/Users/weetech/.titanium' at fs.mkdirSync (fs.js:642:18) at Object.mkdirSyncRecursive...
View ArticleHow to user custom label with phone of contact
I want to add new phone number to one contact with custom label. Is It able to make custom label on Titanium? I can make phone number with precomposed tags, like "home, work, other, mobile, pager,...
View ArticleTraceback error in ios
HI Iam using IOS 3.1.1GA, while iam simulating iam getting error.[ERROR] [ERROR] Error: Traceback (most recent call last): File "/Library/Application...
View ArticleAlloy: where to put events? xml or js
Hi, couldn't find it in the Alloy Best Practices list so I quickly ask: What is the best place to put e.g. click events? Directly inside the xml: <Button id="mybtn" onClick="clickFn"/> or in the...
View Article