Appcelerator Titanium is a platform for developing mobile and desktop applications using web technologies.

learn more… | top users | synonyms

29
votes
4answers
15k views

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 ...
18
votes
2answers
16k views

PhoneGap vs. Titanium

PhoneGap and Titanium allow you build native iPhone Apps based on HTML and JavaScript. Has anyone gained experience with both? What are the differences?
18
votes
6answers
6k views

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 ...
16
votes
2answers
4k views

What happens to JavaScript code after app is compiled using Titanium Mobile

I installed Titanium from appcelerator and built the "KitchenSink" example application. All works well, I'm just wondering where does the javascript code ends up in a built app. I grep-ed the Xcode ...
15
votes
3answers
8k views

How to organize JS files in a Appcelerator Titanium project

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 ...
14
votes
8answers
6k views

Is Appcelerator Titanium now banned on the iPhone?

This question has been answered quite clearly for MonoTouch here: http://stackoverflow.com/questions/2604033/is-monotouch-now-banned-on-the-iphone But what about Appcelerator Titanium? The new TOS ...
11
votes
2answers
2k views

How to append a row to a TableViewSection in Titanium?

I'm developing an iPhone application in Titanium, and need to append a row to a particular TableViewSection. I can't do this on page load, as it's done dynamically by the user throughout the ...
10
votes
10answers
1k views

Suggestions for entering mobile development — pure iPhone SDK, Android SDK, Mono Touch or Titanium?

I am entering mobile development. I have been working primarily in .NET since 1.0 came out in beta. Before that, I was mostly a C++ and Delphi guy and still dabble in C++ from time to time. I do ...
8
votes
4answers
3k views

Titanium vs The Native Tools

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 ...
7
votes
1answer
1k views

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 ...
6
votes
2answers
2k views

HTTP authentication between devise and iphone app

I'm new to ruby on rails but I want to send the data from my SQlite database from my iphone app to the rails web app. Like a "sync" service. I'm using devise for authentication for the web app. I ...
5
votes
1answer
586 views

Edit default menu in Titanium desktop app

In a Titanium OS X desktop application, is it possible to edit the default menu? You can add new menus and submenus, but you can't edit or even attach event listeners to the existing menus (help, ...
5
votes
3answers
618 views

What are best practices for Android development?

I'm looking for best practices guidelines for developers seeking to work with android. What i am using is Titanium for Andriod mobile development. Is there any article or tutorial which explains the ...
5
votes
1answer
1k views

Android can't retrieve my current position (Appcelerator Titanium)

I'm using Titanium SDK 1.5.1 for both iPhone and Android development. I have an app that loads a map with my current position perfectly on iPhone. But, for android, nothing is showing but an error ...
5
votes
2answers
970 views

Sproutcore + PhoneGap/Titanium?

I'm learning Sproutcore at the moment to write my application on it. The backend will only be a server that pushes json out to the frontend Sproutcore application. I wonder how it will be when I use ...
5
votes
4answers
634 views

How do i create a portable app (runs without installing)

how do i create an app that is: lightweight: i am guessing don't require .NET frameworks maybe? portable: runs without installing and saves data in the app directory, so i can just move the folder ...
4
votes
2answers
441 views

How can I do the paper peel effect in Android?

When making an Android app, I want to have the paper peel effect that's popular on the iPhone where the corner looks pulled back and the user and tough and drag to "fold" up the page. I'm using ...
4
votes
1answer
233 views

getElementsByTagName results in NullPointerException

consider the following code: Ti.API.info(doc.getElementsByTagName('myTag')); Ti.API.info(doc.getElementsByTagName('myTag').item(0)); the xml is valid and consists of a valid element "myTag". the ...
4
votes
1answer
154 views

Mac Multi-touch in a web application

In a web application (or even in Titanium Desktop) is it possible to recognize and use multi-touch gestures (i.e pinching/3-finger swipe)?
4
votes
3answers
1k views

How to get geolocation working on appcelerator's titanium mobile application with android webview

I'm just playing with Appcelerator's Titanium platform for developing mobile apps. My test application just opens a webview pointing to an online web page. This page uses the W3C Geolocation API to ...
4
votes
1answer
206 views

Mobile-to-Server API Security

I am tasked with designing a system that will allow our users to also sign in to their accounts and interact with our service using their mobile phones. I am concerned about the security of the ...
4
votes
1answer
711 views

JavaScript library/framework for Titanium Mobile

I've just took my first steps in mobile development with Titanium Mobile. Coming from PHP and JavaScript programming for the web, I'm really missing two things: A JavaScript library A MVC or similar ...
4
votes
4answers
350 views

How can I cache Javascript and JSON data in my iPhone app?

I am developing a native iPhone app in Titanium. Within this app I am using data from a remote API (which I have developed in Rails 3). I want the user to cache the API data on their phones as much as ...
4
votes
2answers
510 views

Commercial Desktop Apps with Appcelerator Titanium

I'm wondering if there is a sense to create commercial(paid) desktop apps. I'm asking this question, because everyone can see Desktop Application's source. Or Javascript ...
4
votes
6answers
2k views

Appcelerator vs Android SDK

I am a complete newbie when it comes to mobile app development. Yet I need to build one soon in a very short time. I have been looking at appcelerator it seems pretty fine! Without a doubt, one of the ...
4
votes
1answer
364 views

How to fix Titanium's broken menu bar on mac osx

I started developing an desktop-app with Titanium Appcelerator for mac. Everything is fine except the broken menu bar. So I launch the app and get this weird looking menu bar, where every item is ...
4
votes
2answers
1k views

Desktop application development with Javascript and HTML

I am looking for Titanium Appcelerator alternatives for Desktop application development with HTML and JavaScript. I want to convert a web app to a desktop application. Hence, there will be a lot of ...
4
votes
2answers
559 views

Android Remote Video with Titanium

Greetings all! I'm trying to play a video that is hosted on our webserver on an android phone. I've already built this for iPhone and it works great. Droid, however is a different issue. Instead of ...
4
votes
1answer
2k views

what are the advantage and disadvantage of using Phonegap or Titanium?

i am planning to create a cross platform application which works in android,iphone and blackberry? i thought of using phonegap or Titanium.my questions are whether in cross platform is it possible ...
4
votes
3answers
635 views

How to optimize the size of Titanium based iPhone App?

I have created a iPhone App using the Titanium Framework. The app has totally 4 screens. I do not use any database at all. But my application size seems to be around 5.7 MB. Is there any way to reduce ...
4
votes
1answer
367 views

What version of JavaScript does Titanium use?

I'm trying to find out what features of JavaScript I can use in Titanium Appcelerator. I've noticed that it has both forEach and map on Arrays, so I guess it's JavaScript language version is least 1.6 ...
4
votes
1answer
532 views

Adobe AIR and Appcelerator Titanium for desktop application

Which would be better (performance and development time) for me if I'm creating an desktop application using HTML/CSS/JS? Is AIR more efficient at Flex and ActionScript than HTML/JS? I've played ...
4
votes
2answers
145 views

Which JavaScript Libraries do not rely on a document and navigator object?

I'm currently looking for some libraries which might help me during iPhone Development using Appcelerator Titanium. I've heard that since version 1.0 it isn't dependant on webkit anymore and it makes ...
3
votes
1answer
377 views

CoffeeScript IDE for Windows - tried Titanium Studio and RubyMine

I'm trying to find a good way to work on CoffeeScript on Windows and be able to process these files quickly to JavaScript in the IDE. RubyMine - if I just open a .coffee file in RubyMine this seems ...
3
votes
1answer
63 views

Titanium Mobile Controller troubles

Ok so Im working on a mobile app and I wanna make sure my structure is right so I can continue to add more complex things. Basicaly I am asking if this is the best way to do this. this is my ...
3
votes
1answer
114 views

SVG in Titanium Desktop?

I'm running the 1.1.0 SDK of Titanium Desktop and only my SVG text elements are rendered properly. SVG methods such as getBBox() give error messages. The application works well outside the Titanium ...
3
votes
1answer
181 views

Titanium Mobile is not getting correct accuracy on iOS

I have a problem with my coding. My code just doesn't seem to be getting an accuracy lower then 1414. Whenever I open google maps, and get my location there it finds it usually within a second. If I ...
3
votes
3answers
223 views

Rhodes or Titanium for Rails app in iphone?

Hi i wanted to develop an iphone app with Ruby.. Is Rhodes or Titanium the best option? i need to integrate GPS and google maps
3
votes
2answers
249 views

Does Titanium Mobile convert Javascript to native Java or Objective C compiled code?

I've read so many articles (which I listed below), but I can't get a consistent answer. We would it be possible to just pick one of the following 2 answers? If you work for Appcelerator or any ...
3
votes
3answers
128 views

Install blackberry plugin in Titanium studio OsX

i have a huge problem since yesterday!! i have installed titanium studio,it runs with android and iphone. I know it does not support blackberry yet, but is there a workaround that let me build app ...
3
votes
0answers
144 views

Titanium - Custom Map Annotation Bubbles?

Is there any way to customize the map annotation bubbles in Appcelerator Titanium? Specifically, I'd like them to be able to display more text than what they show (ideally, by expanding to fit the ...
3
votes
5answers
383 views

Is Titanium's HTML5 (and JS) really native?

I'm a little confused about this. Titanium is bragging about being able to style with CSS, program with javascript and create with HTML5, whilst making the final product native to the platform. How is ...
3
votes
1answer
250 views

wcf service Internal server error

I created a simple wcf service that exposes a GetData method. It's actually the template created when you create a new wcf project. I added the application to iis server, so it can be accessed from ...
3
votes
3answers
170 views

Parsing JSON w/ @ symbol in it

My JSON object evaluates to: { "@io" = IO; "@type" = XXX; } If this variable is called my_json, how do I access the @type value of XXX? I tried my_json.@type, but this is giving errors. Help ...
3
votes
1answer
156 views

Desktop GUI Programming - How do I understand it from a Web Developers\Frontend Designers perspective?

When I develop applications for the web, I usually have the html for the layout, the css for the looks, the javascript (or css3 if supported) for the fancy animations and a server-side scripting ...
3
votes
2answers
282 views

Appcelerator Titanium Studio 1.0.1: How to show Inspector on OS X Desktop apps?

When I choose to show the inspector inside a desktop app, I get the error below. As their Wiki said, I've followed this: ...
3
votes
1answer
591 views

SOAP Problem in Appcelerator Titanium (using suds.js) - does not work with Android

we're programming a little "home device control" app within our studying using Appcelerator Titanium. We programmed a back-end in Java which is connected to our front-end apps with an interface which ...
3
votes
1answer
166 views

Android app licensing. Using Titanium appcelerator instead of eclipse

I'm done creating my Android app with Titanium appcelerator. The last step before distribution is to have it licensed. The problem is that I can't find any proper documentation in regards to third ...
3
votes
3answers
239 views

Is Titanium bugfree? and is it equally compatible for developing iOS apps as XCode and Objective-c?

Few days back i was pretty much sure that Titanium is a great IDE for developing iOS apps but in last few days i have gone through few articles about Titanium and some of these articles pointed that ...
3
votes
3answers
675 views

How to create a star rating control for an iPhone app using Titanium?

I'm building an iPhone app using the Titanium framework. I need a 5-star rating control in my app, just like the one found in the app store. As a temporary solution I'm using the slider for adding a ...

1 2 3 4 5 19