Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
* Set the image and divide it into 8 frames 
Set_Property(@Window:".OLE_PICTURE", "OLE.Image", "c:\animated.bmp") 
Set_Property(@Window:".OLE_PICTURE", "OLE.FrameCount", 8) 

* Set animation delay and start the animation 
Set_Property(@Window:".OLE_PICTURE", "OLE.AnimationDelay", 75) 
Set_Property(@Window:".OLE_PICTURE", "OLE.Animated", 1)

...