I was looking at a different issue tonight, but it involved a webView and rotating. On Android devices (and possibly iOS), it’s calculating the new content area by adding the height of the status bar to the long side when rotating from portrait to landscape instead of taking the height of the nav bar out of the short side. This causes the actualContentWidth to increase instead of the actualContentHeight to decrease. The net result is that 0, 0 is (on my Nexus 7) 37 pixels too far to the right. A simple:
webview.x = display.contentCenterX + display.screenOriginX
should address it, if it’s the same issue. I’m working with engineering to see if this is the way we should handle this content area change, but at least in this case we have a work around.
Rob