home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / KIOSK / KIOSK.Z / EXTDOOR.org < prev    next >
Text File  |  1997-04-14  |  3KB  |  91 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 display.                               -->
  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="yelback.jpg">
  19.  
  20. <!-- Start the HTML main content section -->
  21. <BODY>
  22.  
  23. <!-- Insert a horizontal line                                      -->
  24. <HR>
  25.  
  26. <!-- Display user guidelines in centre using a HTML defined style  -->
  27. <!-- of heading 5                                                  -->
  28. <H5><CENTER>
  29. Click the door to enter building or right click for options
  30. </CENTER></H5>
  31.  
  32. <!-- Insert a horizontal line                                      -->
  33. <HR>
  34.  
  35. <!-- New paragraph -->
  36. <P>
  37.  
  38. <!-- Specify the image containing the clickable hotspots and show  -->
  39. <!-- in the centre of the display. Specify the image map name to   -->
  40. <!-- be used with the image.                                       -->
  41. <CENTER>
  42. <IMG SRC="extdoor.jpg" USEMAP="#applications">
  43. </CENTER>
  44.  
  45. <!-- Image maps defined and the associated file or application to  -->
  46. <!-- execute when the hotspot is clicked.                          -->
  47.  
  48. <MAP NAME="applications">
  49.  
  50. <!-- Door image -->
  51. <AREA SHAPE="POLYGON" COORDS="316,111,424,87,420,292,393,290,318,282,317,113,317,113,316,111" HREF="corridor.htm">
  52.  
  53. <!-- Applications and files can also be executed in the following  -->
  54. <!-- ways:                                                         -->
  55.  
  56. <!-- To open a file saved in the same directory as the .htm file   -->
  57. <!-- containing the hotspot, with it's associated application      -->
  58. <!-- (defined by Windows).                                         -->
  59.  
  60. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="file name"> -->
  61.  
  62. <!-- To run an application or open a file with it's associated     -->
  63. <!-- application (defined by Windows) from a directory specified   -->
  64. <!-- in the directory path.                                        -->
  65.  
  66. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="/file name"> -->
  67.  
  68. <!-- To run an application or open a file with it's associated     -->
  69. <!-- application (defined by Windows) from a specified directory.  -->
  70.  
  71. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="FILE:///full path and file name"> -->
  72.  
  73. <!-- To run an application with a command line parameter.          -->
  74.  
  75. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates"         -->
  76. <!-- HREF="FILE:///full path of application followed by full path (if necessary) of command line parameter"> -->
  77.  
  78. <!-- To load a web site.                                           -->
  79.  
  80. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates"         -->
  81. <!-- HREF="HTTP://URL of file to be loaded">                       -->
  82.  
  83. <!-- End of image map section -->
  84. </MAP>
  85.  
  86. <!-- End of body section -->
  87. </BODY>
  88.  
  89. <!-- End of HTML specification -->
  90. </HTML>
  91.