Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 27th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. var win = Titanium.UI.createWindow({
  2.   'title': 'My Window',
  3.   'backgroundColor':'#FFFFFF'
  4. });
  5.  
  6. var l1 = Titanium.UI.createLabel({
  7.         text:'Lorem ipsum dolor sit amet',
  8.         width:200,
  9.         height:150,
  10.         top:10,
  11.         color:'#336699',
  12.         textAlign:'center'
  13. });
  14.  
  15. win.add(l1);