home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / opus / v5 / syspic-4.00 / demos / amiga.script < prev    next >
Text File  |  1996-09-22  |  1KB  |  62 lines

  1. SYSPIC  ; <- script identifier
  2.  
  3. ;**
  4. ;**  $VER: Amiga.script 1.1
  5. ;**  Demo script for SysPic 4.00
  6. ;**
  7. ;**  written by Grzegorz Calkowski
  8. ;**
  9.  
  10. ; Options section
  11.  
  12. Pics/amigalogo.ilbm                ; picture
  13. fadein 12 fadeout 12                ; fade options
  14. clock 520/10/7/digital.font/25            ; realtime clock
  15. sound /SoundFiles/MidnightBluesTheme.8svx     ; sample
  16. filter=off vcenter delay 10             ; other options
  17.  
  18. ;
  19. ; Init section
  20. ; here we load fonts we'll use
  21. ;
  22. init:
  23. font 1 syspic.font 23
  24. font 2 syspic.font 13
  25.  
  26. ;
  27. ; Main section
  28. ; we'll write all the texts before showing the picture 
  29. ;
  30. main:
  31. setfont 1
  32. setapen 12
  33. textxy 164 220 "Multimedia Workstation"
  34.  
  35. setfont 2
  36. setapen 1
  37.  
  38. ; we want this text centered
  39. center on    
  40. textxy 0 300 "SYSTEM CONFIGURATION:"
  41. center off
  42.  
  43. gotoxy 170 330    ; gotoxy command sets current position and the left margin
  44. rightmargin 450 ; and this command sets, guess it, right margin
  45.  
  46. ; now we print something about the configuration
  47.  
  48. text "Processor:" "MC%pr" cr
  49. text "Coprocessor:" "MC%cp" cr
  50. text "Graphics chipset:" "%cs" cr
  51. text "Chip memory:" "%TCM" cr
  52. text "Fast memory:" "%TFM" cr
  53. text "Kickstart:" "%os (%ov)" cr
  54. text "Workbench:" "%wb (%wv)"
  55.  
  56. setapen 14
  57. center on
  58. textxy 0 460 "Today is %DT, please wait while the machine is booting..."
  59.  
  60. ; IF YOU HAVE ANY PROBLEMS PLEASE REFER TO THE SCRIPT'S DOCS!
  61.  
  62.