titanium

How to decide whether I should use AIR or Titanium?

I may want to create a RIA but am wondering, whether Adobe AIR or Titanium is the way to go. Do you think the open source version will last longer? Will it be better in anyway? Merry Christmas! ...

Can client side python use threads?

I have never programed in Python before, so excuse my code. I have this script that will run in a terminal but I can't get it to run client side. I am running this in Appcelerator's Titanium application. Anyway, I have been troubleshooting it and it seems that it isn't running the threads at all. Is this a limitation? does anyone know? ...

When you write a Titanium app, is the source code visible to users?

When you write an HTML/CSS/JavaScript app for Adobe AIR, the source files sit in a directory visible to anyone who looks. Appcelerator Titanium lets you code in JavaScript, Python, and Ruby. Is the bundling similar to AIR, with all the source exposed? ...

Monotouch or Titanium for rapid application development on IPhone?

As a .Net developer I always dreamed for the possibility to develop with my existing skills (c#) applications for the Iphone. Both programs require a Mac and the Iphone Sdk installed. Appcelerator Titanium was the first app I tried and it is based on exposing some Iphone native api to javascript so that they can be called using that la...

Intranet File exchange app using Titanium Desktop

Is it possible to create a app using Titanium Desktop to transfer files between users in the intranet. They also provide support for Ruby. My question is that can we use all the functionality provided by Ruby like the sockets,files etc. ...

Preventing sleep in Titanium for iPhone

I'm trying to read the accelerometer for a longer period of time (between one and two hours). However, when the iPhone goes to sleep and locks, the reading of the accelerometer readout is paused. My setInterval timer seems to be running fine though. I can also play sounds. I see two solutions a) Find a way to read the acceleromete...

any other framework for mobile app development

Was just wondering if there are any other framework for mobile app development for example using php, ruby, python etc excluding objective C (Iphone and Ipod touch), mono or the use of html and javascript (Phonegap, titanium etc). ...

Windows file permission error (IO Error 13) with Android SDK (and Titanium) and git - help needed

Running Titanium Appcelerator 0.8.1 on a Windows XP Virtual Machine, with Android SDK 2.1 When running build/install app, getting the following error: [TRACE] f = open(os.path.join(dest, dest_file), "w") [TRACE] IOError: [Errno 13] Permission denied: 'C:\\Documents and Settings\\firstname.surname\\Desktop\\MyApp\\build\\android\\.class...

Titanium vs The Native Tools

Hi, I'm still checking everything out. I'm wondering what the limitations are if we develop the app using Titanium. What cannot be done using Titanium, for iPhone and for Android? What things can only be done using only the the native tools? I heard that performance could be an issue. How bad is this going to be? Thank you in advance...

Simplest way to incorporate iPhone file upload when building app with Appcelerator's Titanium Developer

Sorry for the long explanation. Thanks in advance to all who are taking their time. I am an Ubuntu user who has set up Titanium Developer on a MacMini in order to build an app for the iPhone (and ultimately some other platforms). Rather than having any local code built in, the app simply points to my website. To do that, all I needed t...

Contending with JS "used before defined" and Titanium Developer

I have a lengthy JavaScript file that passes JSLint except for "used before it was defined" errors. I used normal function declarations, as in... function whatever() {do something;} as opposed to... var whatever = function(){do something;}; and consistent with Steve Harrison's reply to an earlier post... Assuming you declare a...

How Does Appcelerator Titanium Mobile Work?

I'm working on building an iPhone app with Titanium Mobile 1.0 and I see that it compiles down to a native iPhone binary. How does this work? Seems like it would take a lot of heavy lifting to analyze the JavaScript code and do a direct translation into Objective-C without having a superset language like 280 North's Objective-J and Cap...

How do you use asynchronous ORMs without huge callback chains?

I'm using the relatively immature Joose Javascript ORM plugin (project page) to persist objects in an Appcelerator Titanium (company page) mobile project. Since it's client side storage, the application has to check to see if the database is initialized before starting up the ORM since it inspects the DB tables to construct the classes. ...

How to upload video using titanium mobile iphone.

Hello, I am developing new app. using titanium development for iphone but I have one problem to upload video to my webserver from my iphone app. , I did'nt get code to select vodeo file and code for uploading it at server side(PHP) can any body help me to solve this problem. ...

How to upload images from iPhone app developed using Titanium

Hi, I finally landed up in developing an iPhone app using Titanium Mobile. Now the problem I face is, Im able to run the app, and the app also sends the image to the server. But Im not able to see the file that got uploaded to the server. I have pasted the iPhone app's code to send image to the server and also, the PHP file that would re...

Xcode duplicate symbol _main .

I'm getting the following error in Xcode 3.2.1 on Snow Leopard 10.6.2 whenever I try to compile any iPhone application generated by Appcelerator's Titanium . However , the build error only appears when I select iPhone simulator on the architecture menu , and if I select iPhone device , I am able to run the app on my device . Further , ...

Appcelerator Titanium - auto height table views break with shortish text

I posted this on the Appcelerator Titanium dev Q&A site, but maybe someone here has had this issue... KitchenSink 1.1 illustrates this issue. In table_view_api_auto_height.js, changing row: addRow(0,'This is some long text. This is some long text. This is some long text. This is some long text. This is some long text. This is some...

Appcelerator Titanium: Android SDK doesn't load

Hello! I started developing with Titanium and now I really stuck on one part. I downloaded the Adroid SDK and added the path to Titanium: /Users/michael/Downloads/android-sdk-mac_86/ I can open e.g. Kitchen Sink in the iPhone Simulator without problems, but when I want to open it in Android then my screen looks like this: Screenshot ...

POST EXIF Data from iPhone

I am using Titanium Appcelerator for iPhone application development . My project requires the EXIF data from images stored in the gallery . I notice that whenever I send an image from the gallery using Titanium.Media.openPhotoGallery , the image headers are completely stripped , and I receive the file at 320 x 320 resolution only . I...

How to organize JS files in a Appcelerator Titanium project

Hi all: I have recently started creating an iPhone application using Appcelerator's Titanium. Since the application is essentially all JS, I needed some advice on how I should organize this project. It's becoming very easy to just create long procedural files for each view in the application. Is there a way I can incorporate MVC, or so...