home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / KIOSK / KIOSK.Z / DISPATCH.org < prev    next >
Text File  |  1997-04-14  |  5KB  |  130 lines

  1. <!-- Copyright JSB 1996                                           -->
  2. <!-- Details between these markers indicate comments.             -->
  3. <!-- For display purposes, this sample should be used with        -->
  4. <!-- 256 colour resolution.                                       -->
  5.  
  6. <!-- This sample HTML file using image maps has been designed to  -->
  7. <!-- be used with The MultiView 2000 Kiosk.                       -->
  8. <!-- Image maps are pictures that allow the user to click on      -->
  9. <!-- specified areas to open a file or run a particular           -->
  10. <!-- application.                                                 -->
  11.  
  12.  
  13.  
  14. <!-- Start HTML specification -->
  15. <HTML>
  16.  
  17. <!-- Specify The Kiosk background image -->
  18. <BODY BACKGROUND="bluback.jpg">
  19.  
  20. <!-- Start the HTML main content section -->
  21. <BODY>
  22.                                 
  23. <!-- Display user guidelines in centre using a HTML defined font  -->
  24. <!-- of size 4                                                    -->
  25. <FONT SIZE=4><BOLD><CENTER>
  26. Click a hotspot to start an application or right click for options
  27. </CENTER></FONT></BOLD>
  28.  
  29. <!-- Specify the image containing the clickable hotspots and show  -->
  30. <!-- in the centre of the display. Specify the image map name to   -->
  31. <!-- be used with the image.                                       -->
  32. <CENTER>
  33. <IMG SRC="dispatch.jpg" USEMAP="#applications">
  34. </CENTER>
  35.  
  36. <!-- Image maps defined and the associated file or application to  -->
  37. <!-- execute when the hotspot is clicked.                          -->
  38. <MAP NAME="applications">
  39.  
  40. <!-- Door -->
  41. <AREA SHAPE="POLYGON" COORDS="484,226,500,21,416,21,406,228,484,226" HREF="../corridor.htm">
  42.  
  43. <!-- MultiView 2000 Browser --> 
  44. <AREA SHAPE="POLYGON" COORDS="294,24,383,24,378,149,292,149,294,24" HREF="APP11">
  45.  
  46. <!-- Calculator -->
  47. <AREA SHAPE="POLYGON" COORDS="471,316,490,296,479,292,479,288,431,273,431,278,429,276,409,292,471,316" HREF="APP1">
  48.  
  49. <!-- MultiView 2000 Terminal Emulator -->
  50. <AREA SHAPE="POLYGON" COORDS="374,182,370,257,393,260,388,289,263,269,263,264,283,243,288,175,374,182" HREF="APP8">
  51.  
  52. <!-- Memo -->
  53. <AREA SHAPE="POLYGON" COORDS="214,304,260,291,260,284,227,254,187,264,188,273,214,304" HREF="APP4">
  54.  
  55. <!-- Telephone List -->
  56. <AREA SHAPE="POLYGON" COORDS="97,314,146,300,146,294,139,279,126,263,145,267,147,257,139,249,133,249,74,262,66,270,65,280,72,286,82,281,83,291,97,314" HREF="APP6 PROD_DIRsamples\sample2\dispatch\phone.txt"
  57.  
  58. <!-- The Kiosk help -->
  59. <AREA SHAPE="POLYGON" COORDS="128,177,183,169,191,177,191,182,153,191,153,195,161,212,161,227,165,232,166,237,177,241,178,246,163,253,143,250,140,247,154,238,156,229,156,212,147,194,147,193,122,195,109,189,120,186,128,177" HREF="APPHELP">
  60.  
  61. <!-- End of image map section -->
  62. </MAP>
  63.  
  64. <!-- New paragraph -->
  65. <P>
  66.  
  67. <!-- Specify the image containing the clickable hotspots and show  -->
  68. <!-- in the centre of the display. Specify the image map name to   -->
  69. <!-- be used with the image.                                       -->
  70. <IMG SRC="disp.gif" USEMAP="#shortcut">
  71.  
  72. <!-- Image maps defined and the associated file or application to  -->
  73. <!-- execute when the hotspot is clicked.                          -->
  74. <MAP NAME="shortcut">
  75.  
  76. <!-- Admin -->
  77. <AREA SHAPE=RECT COORDS="2,30,28,57" HREF="../admin/admin.htm">
  78.  
  79. <!-- Return to Main Door -->
  80. <AREA SHAPE=RECT COORDS="29,1,55,7" HREF="../extdoor.htm">
  81.  
  82. <!-- Return to Corridor -->
  83. <AREA SHAPE=RECT COORDS="29,8,55,51" HREF="../corridor.htm">
  84.  
  85. <!-- Finance -->
  86. <AREA SHAPE=RECT COORDS="56,30,82,57" HREF="../finance/finance.htm">
  87.  
  88. <!-- Sales -->
  89. <AREA SHAPE=RECT COORDS="56,2,82,29" HREF="../sales/sales.htm>
  90.  
  91. <!-- End of image map section -->
  92. </MAP>
  93.  
  94. <!-- Applications and files can also be executed in the following  -->
  95. <!-- ways:                                                         -->
  96.  
  97. <!-- To open a file saved in the same directory as the .htm file   -->
  98. <!-- containing the hotspot, with it's associated application      -->
  99. <!-- (defined by Windows).                                         -->
  100.  
  101. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="file name"> -->
  102.  
  103. <!-- To run an application or open a file with it's associated     -->
  104. <!-- application (defined by Windows) from a directory specified   -->
  105. <!-- in the directory path.                                        -->
  106.  
  107. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="/file name"> -->
  108.  
  109. <!-- To run an application or open a file with it's associated     -->
  110. <!-- application (defined by Windows) from a specified directory.  -->
  111.  
  112. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="FILE:///full path and file name"> -->
  113.  
  114. <!-- To run an application with a command line parameter.          -->
  115.  
  116. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates"         -->
  117. <!-- HREF="FILE:///full path of application followed by full path (if necessary) of command line parameter"> -->
  118.  
  119. <!-- To load a web site.                                           -->
  120.  
  121. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates"         -->
  122. <!-- HREF="HTTP://URL of file to be loaded">                       -->
  123.  
  124.  
  125. <!-- End of body section -->
  126. </BODY>
  127.  
  128. <!-- End of HTML specification -->
  129. </HTML>
  130.