home *** CD-ROM | disk | FTP | other *** search
/ Beyond Sanit-E 3 / Beyond Sanit-E 3 (Disk 2 of 2).adf / TXTdata / IconX.txt < prev    next >
Encoding:
Text File  |  1978-01-01  |  2.5 KB  |  58 lines

  1. @5{USING "ICON X"
  2. @6}by Slade / PTK
  3.  
  4. @4
  5. The  following  text  file  was  written  by Slade - PTK for the wonderful disk
  6. magazine  Beyond  Sanit-E.   It  covers the use of IconX scripts and how to use
  7. them to start your programs from the Workbench.
  8.  
  9.   @2                                -+-+-+-+-+-@3
  10.  
  11. Background@1
  12. Isn't  it  annoying  to have to search through all the directories on your hard
  13. drive  just  to load one little program?
  14. Is  your  user-startup just full to the brim with assigns that you only use now
  15. and again?
  16. If your answer is YES then you need this.
  17.  
  18. Currently  when  I  load  my Workbench I have a number of programs that are run
  19. from  the  WBStartup drawer.  These include:
  20. @5
  21.       ReKeyIt       - Give keyboard shortcuts to the menus.
  22.       ToolsManager  - Gives me a launchpad from which I can run programs.
  23.                       Also allows additions to the Tools menu.
  24.       CycletoMenu   - Changes cycle gadgets into menus.
  25.       Arq           - Improved requesters.
  26.       ToolDeamon    - Add extra menus to the Workbench ones.
  27.       MultiCX3.0    - The best commodity on the Amiga!  Stops drive
  28.                       click, screen blanker and much more.
  29.       WBTitle       - Changes the Tool Bar default name.
  30. @1
  31. As  you  can  see  my Workbench is very personalised.  All this personalisation
  32. does  eat  up  the  2Mb  memory  that I have though.  So I reduce the number of
  33. assigns  to  a minimum.  Using IconX you can make the essential assigns and run
  34. the program all from the double click of one icon.  Good or what!!
  35.  
  36.   @2                                -+-+-+-+-+-@1
  37.  
  38. The following is an example that I use to launch my Assembler:
  39. @3
  40.           ; BEGIN Assem
  41.           ;
  42.           Assign Sources: Work:programming/assemblers/source/
  43.           Assign Bin: work:programming/assemblers/binary/
  44.           Assign Font2: work:programming/assemblers/fonts2/
  45.           Run Work:programming/assemblers/Asm_one/Asm_onev1.3
  46.           ;
  47.           ; END Assem
  48. @1
  49. The above makes three assigns and then runs the program. 
  50.  
  51. To  create  a IconX script all you need to do is create your script and save it
  52. in  your  s:   directory.  Then draw an icon using IconEdit.  I personally just
  53. edit  the  shell  icon as it is a lot easier.
  54. Make  the  icon  a  Project  icon  and save it as the same name as your script.
  55. Change  the  default  tooltype of the icon to IconX then save it somewhere nice
  56. and easy to get to.
  57. I  use  the  above  process  in  conjuction  with ToolsManager, and have all my
  58. scripts on a Toolsmanager dock from which they can be launched when needed.