home *** CD-ROM | disk | FTP | other *** search
/ Adephia Powerlink / AdephiaPowerlink-030102.iso / mac / external / config.cst / 00003_MaclinkMatrix.ls < prev    next >
Encoding:
Text File  |  2001-03-28  |  1.2 KB  |  70 lines

  1. --MAC
  2. --Links
  3.  
  4. Global gMatrix
  5.  
  6. --Matrix for Executable links┬¼ 
  7. --The top left selection on question 1 is called button 1a
  8. --The second selection left column is button 1b, ┬¼
  9. --continuing down to 1e in the first column
  10. --
  11. --
  12. --The second page of questions repeats the same ┬¼
  13. --desending column number/letter naming structure ┬¼
  14. --only the first numeral is 2. (2a,2b,2c...)┬¼
  15. --
  16. --The Matrix is simply built as a record of┬¼
  17. --the user choices in question 1 and then question 2
  18. --1a2a would be the path to the first questions top left button choice┬¼ 
  19. --and the top left button choice in the second question┬¼
  20.  
  21. --ONLY change the name of the folder which contains the correct VTruch executable ┬¼
  22. --associated with the Button Name inside the quotation marks
  23. --Structure of the list can not change
  24.  
  25.  
  26. on buildMacMatrix
  27.   
  28.   set gMatrix = [┬¼
  29. "1a":"Adelphia",¬
  30. "2a":"Adelphia",¬
  31. "1a2c":"",¬
  32. "1a2d":"",¬
  33. "1a2e":"",¬
  34. "1b":"Docs",¬
  35. "1b2b":"",¬
  36. "1b2c":"",¬
  37. "1b2d":"",¬
  38. "1b2e":"",¬
  39. "1c2a":"",¬
  40. "1c2b":"",¬
  41. "1c2c":"",¬
  42. "1c2d":"",¬
  43. "1c2e":"",¬
  44. "1d2a":"",¬
  45. "1d2b":"",¬
  46. "1d2c":"",¬
  47. "1d2d":"",¬
  48. "1d2e":"",¬
  49. "1e2a":"",¬
  50. "1e2b":"",¬
  51. "1e2c":"",¬
  52. "1e2d":"",¬
  53. "1e2e":"",¬
  54. "1f2a":"",¬
  55. "1f2b":"",¬
  56. "1f2c":"",¬
  57. "1f2d":"",¬
  58. "1f2e":"",¬
  59. "void":"void"]
  60.   
  61. end
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.