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

  1. --PC
  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 1f 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.  
  27. on buildPCMatrix
  28.   
  29.   set gMatrix = [┬¼
  30. "1a":"Adelphia",¬
  31. "2a":"Adelphia",¬
  32. "1a2b":"",¬
  33. "1a2c":"",¬
  34. "1a2d":"",¬
  35. "1a2e":"",¬
  36. "1b":"Docs",¬
  37. "1b2b":"",¬
  38. "1b2c":"",¬
  39. "1b2d":"",¬
  40. "1b2e":"",¬
  41. "1c2a":"",¬
  42. "1c2b":"",¬
  43. "1c2c":"",¬
  44. "1c2d":"",¬
  45. "1c2e":"",¬
  46. "1d2a":"",¬
  47. "1d2b":"",¬
  48. "1d2c":"",¬
  49. "1d2d":"",¬
  50. "1d2e":"",¬
  51. "1e2a":"",¬
  52. "1e2b":"",¬
  53. "1e2c":"",¬
  54. "1e2d":"",¬
  55. "1e2e":"",¬
  56. "1f2a":"",¬
  57. "1f2b":"",¬
  58. "1f2c":"",¬
  59. "1f2d":"",¬
  60. "1f2e":"",¬
  61. "1f2f":"",¬
  62. "void":"void"]
  63.   
  64. end
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.