Skip to content

Instantly share code, notes, and snippets.

View joscandreu's full-sized avatar

José Carlos Andreu joscandreu

View GitHub Profile
@joscandreu
joscandreu / app.js
Created March 13, 2012 09:00 — forked from pec1985/app.js
Titanium Vertical Label
// use this as a normal Ti.UI.Label
function VerticalLabel(_params){
// store the text in this variable
var text = _params.text || '';
// create an array of letters
var array = text.split('');
// get the length of the array (letters)
var len = array.length;