iPhoneUtils.PlayMovieURL works but movie isn't rotating

Hi. I’m trying to play mp4 file from the net. My app is in portrait mode and everytime i try to play a movie, it plays but i cant change it’s rotation to landscape.
Example code with file url:

Function Start () {
yield WaitForSeconds (10);
	iPhoneUtils.PlayMovieURL("http://dl.dropbox.com/u/17877666/trailers/112.mp4", Color.black, iPhoneMovieControlMode.Full, iPhoneMovieScalingMode.AspectFit);

}

I have also some:

iPhoneKeyboard.autorotateToPortraitUpsideDown = false;
	iPhoneKeyboard.autorotateToLandscapeRight = false;
	iPhoneKeyboard.autorotateToLandscapeLeft = false;

tried to comment it out to test it but the same issue. Any advices? Thanks

movies don’t rotate as a movie is normally created for one orientation and only that one, it won’t work in one or the other.

you need to set the orientation before playing it and thats not done with the keyboard handling since 3.4 but the with .screenOrientation value or just the player settings in the editor

I’m on 3.3 pro. I’ve tried
//iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeLeft;
right before playing a movie and i still see movie and controlls in portrait mode. Only one thing that is changed is my app in turned to landscape when i get back to app. I cant just switch to Landscape in the settings as my app is designed for portrait. I could rotate video by 90 degrees but it wont help to it’s controlls (play,stop etc). User can watch in full screen landscape but controlls are still in portrait :frowning:

u need to set ‘auto rotation’ at the ios player settings.