home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gfx / sirds_gen-3.4.lha / SIRDS_GEN / ReadMeFirst < prev    next >
Text File  |  1994-04-26  |  1KB  |  45 lines

  1. Since V3.1 SIRDS_GEN uses a different method for parsing it's initial
  2. arguments. Therefore there are some incompatibilities. But It offers a greater
  3. flexibility & easier to use CLI-options. I am using now ReadArgs() for
  4. parsing, instead of ArgArrayInit().
  5. So you have to type e.g.
  6.  
  7. SIRDS_GEN src_screen "PAL:HighRes Interlace"
  8.  
  9. or
  10.  
  11.  SIRDS_GEN src_screen="PAL:HighRes Interlace"
  12.  
  13. and not    SIRDS_GEN "src_screen=PAL:HighRes Interlace"
  14.  
  15. Please check it in the Tooltypes of the icon too. It has to be written exactly
  16. the same way as the cli-options.
  17.  
  18. Boolean switches, such as HIDDEN now have the folowing syntax: [NO]option
  19. e.g. to enable the hidden mode, type
  20.  
  21. SIRDS_GEN HIDDEN
  22.  
  23. and NOT SIRDS_GEN HIDDEN=TRUE
  24.  
  25. to disable hidden mode, type
  26.  
  27. SIRDS_GEN NOHIDDEN
  28.  
  29.  
  30. A big advantage is, that you can omit the FILE statement.
  31.  
  32. e.g you can type
  33.  
  34. SIRDS_GEN cave.pic
  35.  
  36. but
  37.  
  38. SIRDS_GEN FILE cave.pic
  39.  
  40. will work too.
  41.  
  42. Another change is the way of saving the defaults. This is now done in a
  43. global ENV[ARC]:SIRDS_GEN.prefs file.
  44.  
  45.