Table of Contents

AUTOPLAY property (Animate)

Description

Specifies if the AVI file begins playing as soon as it is opened.

Property Value

The AUTOPLAY property is a Boolean value of "0" (FALSE$) or "1" (TRUE$).

Property Traits

DevelopmentRuntimeIndexedScaledSynthetic
Get/SetGet/SetNoNoNo

Remarks

N/A

Example

 
// Example:

   //

   // Open an AVI file called "FileCopyXP.avi" and begin playing

   // immediately

   

   $Insert Logical

   

   ObjxArray =        @Window : ".ANI_COPYING"

   PropArray =        "AUTOPLAY"

   DataArray =        TRUE$

   

   ObjxArray := @Rm : @Window : ".ANI_COPYING"

   PropArray := @Rm : "CLIPNAME"

   DataArray := @Rm : ".\avi\filecopyxp.avi"

   

   Call Set_Property_Only( ObjxArray, PropArray, DataArray )
 
 
 

See Also

N/A