public void Play()
 {
     if (_movieHandle >= 0 && IsPaused)
     {
         AVProQuickTimePlugin.Play(_movieHandle);
         IsPaused  = false;
         PlayState = PlaybackState.Playing;
         IsPlaying = true;
     }
 }