I'm trying to rotate a webview that has some html in it on my Android app and it seems everytime the page loads a second time, the rotate transform does not work. Is this a bug?
var flip = Ti.UI.create2DMatrix(); flip = flip.rotate(-90); var commonSideTextOne = Ti.UI.createWebView({ html: '<p style="color:#fff;font-size: 10pt; padding-top: 2pt; font-family: futura;">Engine and <br />Drive Train</p>', transform: flip, top: 160, left: 195, width: 80, height: 70, backgroundColor: '#000' });