home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / INCLUDE / VIDEO.CH < prev    next >
Text File  |  1994-01-16  |  766b  |  23 lines

  1. #ifndef _VIDEO_CH
  2. #define _VIDEO_CH
  3.  
  4. #xcommand DEFINE VIDEO [<oVideo>] ;
  5.              [ <file: FILE, FILENAME, DISK> <cAviFile> ] ;
  6.              [ <of: OF, WINDOW, DIALOG> <oWnd> ] ;
  7.        => ;
  8.           [ <oVideo> ] := TMci():New( "avivideo", <cAviFile>, <oWnd> )
  9.  
  10. #xcommand ACTIVATE VIDEO <oVideo> => <oVideo>:lOpen() ; <oVideo>:Play()
  11.  
  12. #xcommand PLAY VIDEO <oVideo> => <oVideo>:lOpen() ; <oVideo>:Play()
  13.  
  14. #xcommand @ <nRow>, <nCol> VIDEO [<oVideo>] ;
  15.              [ SIZE <nWidth>, <nHeight> ] ;
  16.              [ <file: FILE, FILENAME, DISK> <cFileName> ] ;
  17.              [ <of: OF, WINDOW, DIALOG > <oWnd> ] ;
  18.        => ;
  19.           [ <oVideo> := ] TVideo():New( <nRow>, <nCol>, <nWidth>, <nHeight>,;
  20.              <cFileName>, <oWnd> )
  21.  
  22. #endif
  23.