home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Archived / Updates / Flash / writeflash / Examples / viewfont < prev   
Text File  |  2000-04-25  |  771b  |  70 lines

  1. // viewfont
  2. // example script-file for writeflash
  3.  
  4. #include FlashFonts:IDs
  5. #include FlashFonts:Halvett.Medium
  6.  
  7.  
  8. FileVersion 1
  9.  
  10. FrameArea {
  11.   width 30000
  12.   height 4500
  13. }
  14.  
  15. FrameRate 10.0
  16.  
  17. BackgroundColour 800000
  18.  
  19.  
  20. Text {
  21.   id 1
  22.   style {
  23.     font HALVETT_MEDIUM
  24.     size 1200
  25.     colour ffffffff
  26.   }
  27.   text "abcdefghijklmnopqrstuvwxyz"
  28. }
  29.  
  30. Text {
  31.   id 2
  32.   style {
  33.     font HALVETT_MEDIUM
  34.     size 1200
  35.     colour ffffffff
  36.   }
  37.   text "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  38. }
  39.  
  40. Text {
  41.   id 3
  42.   style {
  43.     font HALVETT_MEDIUM
  44.     size 1200
  45.     colour ffffffff
  46.   }
  47.   text "0123456789"
  48. }
  49.  
  50.  
  51. PlaceObject {
  52.   depth 1
  53.   id 1
  54.   matrix { 65536 400 200 }
  55. }
  56.  
  57. PlaceObject {
  58.   depth 2
  59.   id 2
  60.   matrix { 65536 400 1500 }
  61. }
  62.  
  63. PlaceObject {
  64.   depth 3
  65.   id 3
  66.   matrix { 65536 400 2800 }
  67. }
  68.  
  69. ShowFrame { }
  70.