Handheld.PlayFullScreenMovie not playing full screen

I an using this function to play an intro movie, in full screen mode:

#pragma strict

function Start () {
Handheld.PlayFullScreenMovie (“introfinal.mov”, Color.black, FullScreenMovieControlMode.CancelOnInput);
}

it’s not playing full screen, is there anything that needs to be added to the script?

You have to use the following the same method with some additional parameter. here it is

Handheld.PlayFullScreenMovie (“Final_1.mp4”, Color.clear, FullScreenMovieControlMode.CancelOnInput, FullScreenMovieScalingMode.AspectFill);