home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Archived / Updates / Flash / writeflash / Examples / first < prev    next >
Text File  |  2000-04-19  |  575b  |  38 lines

  1.  
  2. FileVersion 1
  3.  
  4. // all units are in 1/20th of a pixel
  5. FrameArea {
  6.   width 4000
  7.   height 3000
  8. }
  9.  
  10. // frames per second
  11. FrameRate 10.0
  12.  
  13. BackgroundColour { 0 128 128 }
  14.  
  15. // define the shape
  16. DefineShape {
  17.   id 1
  18.   fillstyle { solid ffffffff }
  19.   selectfillstyle0 1
  20.   moveby { 1000 1000 }
  21.   lineby { 1000 1000 }
  22.   lineby { 1000 -1000 }
  23.   lineby { -1000 -1000 }
  24.   lineby { -1000 1000 }
  25. }
  26.  
  27. // place the shape on the screen
  28. PlaceObject {
  29.   depth 1
  30.   id 1
  31.   matrix {
  32.     65536           // scale x and y
  33.     0 500           // translate
  34.   }
  35. }
  36. // show what we've got so far
  37. ShowFrame { }
  38.