This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!SESSION 2012-01-31 16:49:52.122 ----------------------------------------------- | |
eclipse.buildId=unknown | |
java.version=1.6.0_29 | |
java.vendor=Apple Inc. | |
BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US | |
Framework arguments: -keyring /Users/egomez/.eclipse_keyring -showlocation | |
Command-line arguments: -os macosx -ws cocoa -arch x86 -keyring /Users/egomez/.eclipse_keyring -consoleLog -showlocation | |
This is a continuation of log file /Users/egomez/Documents/Titanium Studio Workspace/.metadata/.bak_0.log | |
Created Time: 2012-02-07 12:28:21.379 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ti:app xmlns:ti="http://ti.appcelerator.org"> | |
<deployment-targets> | |
<target device="mobileweb">true</target> | |
<target device="iphone">true</target> | |
<target device="ipad">true</target> | |
<target device="android">true</target> | |
<target device="blackberry">false</target> | |
</deployment-targets> | |
<sdk-version>1.9.0.v20120213133135</sdk-version> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this sets the background color of the master UIView (when there are no windows/tab groups on it) | |
Titanium.UI.setBackgroundColor('#000'); | |
// create tab group | |
var tabGroup = Titanium.UI.createTabGroup(); | |
// create base UI tab and root window | |
// | |
tabGroup.addEventListener('focus',function(e){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tabGroup = Ti.UI.createTabGroup(); | |
var win1 = Ti.UI.createWindow({ | |
url: 'twitter.js' | |
}); | |
var tab1 = Ti.UI.createTab({ | |
window: win1 | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<android xmlns:android="http://schemas.android.com/apk/res/android"> | |
<manifest> | |
<uses-permission android:name="android.permission.READ_CALENDAR"/> | |
<uses-permission android:name="android.permission.WRITE_CALENDAR"/> | |
</manifest> | |
</android> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Buildfile: /Users/yuryb/Documents/colibri/cdk2/build.xml | |
init: [mkdir] Created dir: /Users/yuryb/Documents/colibri/cdk2/build/classes [mkdir] Created dir: /Users/yuryb/Documents/colibri/cdk2/build/generated [mkdir] Created dir: /Users/yuryb/Documents/colibri/cdk2/dist | |
process.annotations: [mkdir] Created dir: /Users/yuryb/Documents/colibri/cdk2/build/generated/json [javac] Compiling 2 source files to /Users/yuryb/Documents/colibri/cdk2/build/classes [javac] Note: [KrollBindingGen] Running Kroll binding generator. [javac] Note: [KrollBindingGen] No binding data found, creating new data file: org.appcelerator.titanium.bindings/cdk2.json [javac] Note: [KrollBindingGen] Found binding for module Cdk2 [javac] Note: [KrollBindingGen] Found binding for proxy Example [javac] Note: [KrollBindingGen] Generating JSON: /Users/yuryb/Documents/colibri/cdk2/build/generated/json/org/appcelerator/titanium/bindings/cdk2.json [javac] warning: The following options were not recognized by any processor: '[kroll.checkTiContext]' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var win = Titanium.UI.createWindow(); | |
var scrollView = Titanium.UI.createScrollView({ | |
contentWidth:'auto', | |
contentHeight:'auto', | |
height:'auto', | |
top:0, | |
bottom:50, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.dropcap:first-letter { | |
float: left; | |
font-size: 4em; | |
line-height: .8em; | |
margin-right: 3px; | |
padding: 2px; | |
} | |
h1 + p:first-letter { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this sets the background color of the master UIView (when there are no windows/tab groups on it) | |
Titanium.UI.setBackgroundColor('#000'); | |
// create tab group | |
var tabGroup = Titanium.UI.createTabGroup(); | |
tabGroup.orientationModes = [Titanium.UI.PORTRAIT, Ti.UI.LANDSCAPE_LEFT, Ti.UI.LANDSCAPE_RIGHT, Ti.UI.UPSIDE_PORTRAIT]; | |
// | |
// create base UI tab and root window | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var win = Ti.UI.createWindow(); | |
// | |
// CREATE ANNOTATIONS | |
// | |
var atlantaParams = { | |
latitude:33.74511, | |
longitude:-84.38993, |