To reset the Field of View of a QuickTime VR object called qtvr to the original default
qtvr.SetFieldOfView( 1.0 )
To change the Field of View of a QuickTime VR object called qtvr:
for (FOV = 0.9; FOV < 1.1; FOV += 0.05)
{
qtvr.SetFieldOfView( FOV )
wait( 0 )
}
Note:
This example assumes that the Field of View range specifed in the QuickTime VR movie is from 0.9 to 1.1. This may not be the case for all QuickTime VR movies and will depend on the movie author.