Skip to content

Instantly share code, notes, and snippets.

@codeboxed
codeboxed / app.js
Created July 1, 2011 17:55
Implement More tab on Android
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');
var isAndroid = false;
if (Ti.Platform.name === 'android') {
isAndroid = true;
}
// create tab group
@codeboxed
codeboxed / database.js
Created June 6, 2011 09:07
Titanium Mobile Database Class
/**
* Class name: database.js
* Author: Codeboxed
* URL: http://www.codeboxed.com
* Date: June 6, 2011
* Platform: Titanium
*/
var Database = function(dbPath, dbName, table, tableFields){
@codeboxed
codeboxed / plist-to-json.js
Created June 1, 2011 09:34
PlistToJson class
/**
* Class name: PlistToJson
* Author: Codeboxed
* URL: http://www.codeboxed.com
* Date: May 10, 2011
* Platform: Titanium
*/
var PlistToJson = function() {
/**
@codeboxed
codeboxed / call.js
Created March 26, 2011 16:14
Send requests to a server using Titanium API
/**
* Filename: Call.js
* Author: Codeboxed
* URL: http://www.codeboxed.com
* Date: March 26, 2011
* Platform: Titanium
*/
/**
* Call
@codeboxed
codeboxed / index.html
Created March 26, 2011 15:50
Titanium Desktop event listeners
<html>
<head></head>
<body style="background-color:#1c1c1c;margin:0">
<div style="border-top:1px solid #404040">
<div style="color:#fff;;padding:10px">Welcome to Titanium</div>
</div>
<script type="text/javascript">
var eventName = 'randomEvent';
@codeboxed
codeboxed / Preferences.js
Created March 5, 2011 20:57
Preferences class for storing/retrieving Titanium.App.Properties
/**
* Class name: Preferences.js
* Author: Codeboxed
* URL: http://www.codeboxed.com
* Date: March 7, 2011
* Platform: Titanium
*/
var Preferences = function() {
// Private
@codeboxed
codeboxed / example.js
Created March 5, 2011 20:13
Example on how to set the file path for embedding videos on Mac OS X and Windows with Titanium
var filesPath = Titanium.API.application.dataPath +
Titanium.Filesystem.getSeparator();
var currentFile = 'file.mp4';
var filePath = null;
switch(Titanium.getPlatform()) {
// Apple
case 'osx':
filePath = "file:///" + filesPath + currentFile;
break;
@codeboxed
codeboxed / index.html
Created March 5, 2011 17:29
Download script using Titanium API
<html>
<head></head>
<body style="background-color:#1c1c1c;margin:0">
<div style="border-top:1px solid #404040">
<div style="color:#fff;;padding:10px">Welcome to Titanium</div>
</div>
<script type="text/javascript">
var url = 'http://www.codeboxed.com';
// Initialize the HTTPClient object
@codeboxed
codeboxed / index.html
Created March 5, 2011 17:27
Download remote files async with Titanium
<html>
<head></head>
<body style="background-color:#1c1c1c;margin:0">
<div style="border-top:1px solid #404040">
<div style="color:#fff;;padding:10px">Welcome to Titanium</div>
</div>
<script type="text/javascript">
localFile = Titanium.Filesystem.getDesktopDirectory().toString() +
Titanium.Filesystem.getSeparator() +