iPhone in-game move rotation

How can I make the in-game move rotate when the player rotates the iPhone 180 degrees? I have attached this script to the scene that plays the movie, but it will not rotate.

function FixedUpdate () { 

//////// screen orientation if ((iPhoneInput.orientation == iPhoneOrientation.LandscapeLeft) && (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.LandscapeLeft)) { iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeLeft; }

if ((iPhoneInput.orientation == iPhoneOrientation.LandscapeRight) && (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.LandscapeRight)) { iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeRight; } }

I also tried:

function FixedUpdate () { 

//////// screen orientation if ((iPhoneInput.orientation == iPhoneOrientation.LandscapeLeft) && (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.LandscapeLeft)) { iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeLeft; }

if ((iPhoneInput.orientation == iPhoneOrientation.LandscapeRight) && (iPhoneSettings.screenOrientation != iPhoneScreenOrientation.LandscapeRight)) { iPhoneSettings.screenOrientation = iPhoneScreenOrientation.LandscapeRight; } } function Start () {

iPhoneUtils.PlayMovie("TransportTube.m4v", Color.black, iPhoneMovieControlMode.Full); Application.LoadLevel(28); }

In-game movies still will not rotate. Any help would be great Thanks,

did you came up with an answer? have you tried async load ?