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

  1. // example of how to display a grid for testing
  2.  
  3. FrameArea { width 6000
  4.             height 5000 }
  5.  
  6. BgColour ffffffff
  7.  
  8. // the grid uses the frame width and height, so you
  9. // must have set these (using FrameArea { } ) before
  10. // including the grid
  11. #include FlashLibrary:Grid
  12.  
  13. // now place the grid on the screen - the grid has
  14. // quite high 'depth', so it'll usually be displayed
  15. // on top of all the other objects/shapes
  16. PLACEGRID
  17.  
  18. // insert your own shapes etc here....
  19.  
  20. Showframe {}
  21.