Skip to content

Instantly share code, notes, and snippets.

@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 / FileUtils.js
Created March 5, 2011 19:34
Copy files from a source to a target using Titanium as a platform
/**
* Class name: FileUtils.js
* Author: Codeboxed
* URL: http://www.codeboxed.com
* Date: March 5, 2011
* Platform: Titanium
*/
var FileUtils = function (){
@codeboxed
codeboxed / database.js
Created March 5, 2011 18:55
Connect with Titanium to your databases
/**
* Class name: database.js
* Author: Codeboxed
* URL: http://www.codeboxed.com
* Date: March 5, 2011
* Platform: Titanium
*/
var database = function(dbName, table){
@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() +