Recommended:

  • securesignup.com

Recent Comments

Powered by Disqus

QuickTiGame2d for Titanium

2012-05-11

Titanium was designed to create native apps on multiple platforms, but that doesn’t mean, that one can’t create a game using Titanium. In fact, there are some modules that will ease game development using Titanium Appcelerator. The...

Comments Read more

Titanium Push Notification without 3rd parity service

2012-02-14

Push notifications is a great way to notify your users about new additions, improvmenets and other action about your app. Using Urban Airship is a great way start, but what if someone wants a free service, or simply doesn't want to rely on...

Comments Read more

Any format countdown

2012-02-11

Titanium Countdown class displays (and updates) time left provided by user. Time can be provided in any time units, and they will be recalculated to specified time units. It is possible to specify which units or text will appear in countdown and...

Comments Read more

Handling raw accelerometer data in Titanium apps

2012-01-15

Handling accelerometer in real mobile phone might be quite tricky. While in emulator that data is almost always perfect (haven't tried in windows 7 phone emulators, from what I've seen it's pretty decent emulator), the value in real...

Comments Read more

Customized progressbar in Titanium

2012-01-13

For now there is a pretty limited options for users to customize progressbar for both IOS and Android platforms. But slider, on the other hand, has pretty advanced customization. As usage of slider and progress bar is pretty similar, we can take...

Comments Read more

Choosing picture from gallery or camera

2012-01-11

Yesterday I got my mind blown. I was creating a battle system prototype using Titanium, for one of the games we are working on. And just for fun, I thought I'll add an option to choose picture of your enemy from gallery or shoot the new one...

Comments Read more

Storing data in Titanium application

2012-01-08

Appcelerator Titanium has one really great feature that I haven't seen in other SDK. It's called app properties, which allows you to store simple values or objects for application, for example, high score, level where user currently is,...

Comments Read more

Snow for your Titanium app

2012-01-02

Titanium Ace Snow object creates a falling snowflake effect for your application window. It is possible to set quantity and speed of flakes, and also provide image of custom snowflake. This object also provides methods to start or stop snowing...

Comments Read more

About Appcelerator Titanium mobile

2012-01-02

When I first tried Appcelerator Titanium, it wasn't pretty stable, wasn't well documented, there were a lot of memory leaks, and you usually needed to dive into each platforms native language, to fix something, or achieve what you want...

Comments Read more

Titanium - Switching between windows

2011-12-21

Here is a simple example of switching between two windows using Titanium. We load first window with application. Button in first window opens second window over first one. Button in second window closes it and it automatically goes back to the...

Comments Read more

Displaying HTML in a webview in Titanium

2011-12-18

Although Titanium API provides native application experiences, there are still some reasons you may want to use webview. So here is a snippet, how you can show a website in webview inside a native app: //create a window where to show a...

Comments Read more

HTTP requests for API in Titanium

2011-12-18

If you want to create mobile applications, chances are you will be using some sort of API to get/send information. For example, creating a facebook, twitter or a flickr app. For that you'll probably need to send HTTP requests with some...

Comments Read more

Get current users location in Titanium

2011-12-18

And here is how you can easily retrieve users location based on GPS coordinates and even find street address, where user currently is. In IOS or Android development it would take about 10 times more code to do same thing. // get current...

Comments Read more

Google Maps in Titanium

2011-12-18

Here is how you can easily create a map view and add annotations to it using built in Titanium Google Maps API: //namespace Map = {}; //here we will store our map Map.view = null; //function to create a map Map.createView = function()...

Comments Read more

Simple Titanium Example

2011-12-18

Here is a simple titanium example of creating, window, label, button and adding event to button: //namespace var main = {}; //create a window main.win = Ti.UI.createWindow({ backgroundColor:'#000' }); //create a view...

Comments Read more

Installing Titanium

2011-12-18

So what is Appcelerator Titanium, it's a platform for crossplatform application development (in our case mobile application). You can use javascript to develope applications for IOS, Android and even Blackberry. Titanium is not a webpage in...

Comments Read more