home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 284.GIFV.SLO < prev    next >
Text File  |  1993-02-17  |  954b  |  32 lines

  1. ;
  2. ; GIFV.SLO
  3. ; This file demonstrates the usage of the Res+ , Res- , Center, Res-Lock,
  4. ; Res-UnLock, Res, Res-Up and Res-Down functions.
  5. ;
  6. ; Each picture will load with a resolution higher than the previous one until
  7. ; the maximum resolution is reached! After the last file is displayed the
  8. ; files are then displayed in reverse order with the resolution going down.
  9. ;
  10. ; NOTE: In the first pass where the files are displayed with increasing
  11. ;       resolution, each picture is increased in resolution on the screen a
  12. ;       couple of times, and then decreased a couple of resolutions. Then
  13. ;       finally the picture is centered, before continuing on.
  14. ;
  15.         change-path *.gif
  16.         res 1
  17.         res-lock
  18. :loop
  19.         loadnext :next
  20.         res+
  21.         res+
  22.         res-
  23.         res-
  24.         center
  25.         res-up
  26.         goto     :loop
  27. :next
  28.         loadprev :exit
  29.         res-down
  30.         goto     :next
  31. :exit
  32.