home *** CD-ROM | disk | FTP | other *** search
/ One Click 11 / OneClick11.iso / Tv / video.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2004-03-11  |  518 b   |  15 lines

  1. function playy()
  2. {
  3.    _level0.complete.text = "FALSE";
  4.    fscommand("Media.Type","VIDEO");
  5.    fscommand("Media.SelectFile",_level0.ssStartDir + "\\" + _root.video);
  6.    fscommand("Media.SetRepeat",_level0.repeatcount.text);
  7.    fscommand("Media.SetPosition","5,61");
  8.    fscommand("Media.SetZoom","100");
  9.    fscommand("Media.SetNotify","OnIndex,100,_level0.index.text");
  10.    fscommand("Media.SetNotify","OnComplete,,_level0.complete.text");
  11.    fscommand("Media.Play");
  12. }
  13. _root.video = "video1.avi";
  14. playy();
  15.