Hi,
One of my beta testers had this problem with the keyboard :
http://i45.tinypic.com/2qncf20.jpg
I remember seeing pics like that posted here before - but is there a solution?
Also, is this the correct way to keep the keyboard in portrait mode ?
iPhoneKeyboard.autorotateToPortraitUpsideDown = false;
iPhoneKeyboard.autorotateToPortrait = true;
iPhoneKeyboard.autorotateToLandscapeRight = false;
iPhoneKeyboard.autorotateToLandscapeLeft = false;
i case you support multiple orientations you might want to put this in an Update function:
if ((iPhoneInput.orientation == iPhoneOrientation.LandscapeLeft) (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.LandscapeLeft)){
iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeLeft;
} else if ((iPhoneInput.orientation == iPhoneOrientation.LandscapeRight) (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.LandscapeRight)){
iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeRight;
} else if ((iPhoneInput.orientation == iPhoneOrientation.Portrait) (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.Portrait)){
iPhoneSettings.screenOrientation = iPhoneScreenOrientation.Portrait;
} else if ((iPhoneInput.orientation == iPhoneOrientation.PortraitUpsideDown) (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.PortraitUpsideDown)){
iPhoneSettings.screenOrientation = iPhoneScreenOrientation.PortraitUpsideDown;
}
Thanks for your reply.
Here’s another screenshot of the keyboard going crazy :