home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / KIOSK / KIOSK.Z / SCENE.org < prev    next >
Text File  |  1997-04-14  |  4KB  |  103 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 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. <!-- Specify the image containing the clickable hotspots and show  -->
  24. <!-- in the centre of the display. Specify the image map name to   -->
  25. <!-- be used with the image.                                       -->
  26. <CENTER>
  27. <IMG SRC="scene.jpg" USEMAP="#applications">
  28. </CENTER>
  29.  
  30. <!-- New paragraph -->
  31. <P>
  32.  
  33. <!-- Display user guidelines in centre using a HTML defined style  -->
  34. <!-- of heading 5                                                  -->
  35. <H5><CENTER>
  36. Click a hotspot to start an application or right click for options
  37. </CENTER></H5>
  38.  
  39.  
  40. <!-- Image maps defined and the associated file or application to  -->
  41. <!-- execute when the hotspot is clicked.                          -->
  42. <MAP NAME="applications">
  43.  
  44. <!-- Calculator -->
  45. <AREA SHAPE="CIRCLE" COORDS="52,60,14" HREF="APP1">
  46.  
  47. <!-- Word Processing -->
  48. <AREA SHAPE="CIRCLE" COORDS="371,19,14" HREF="APP2">
  49.  
  50. <!-- Database -->
  51. <AREA SHAPE="CIRCLE" COORDS="145,159,14" HREF="APP3">
  52.  
  53. <!-- Memo -->
  54. <AREA SHAPE="CIRCLE" COORDS="505,144,14" HREF="APP4">
  55.  
  56. <!-- Spreadsheet -->
  57. <AREA SHAPE="CIRCLE" COORDS="17,261,14" HREF="APP5">
  58.  
  59. <!-- Telephone List -->
  60. <AREA SHAPE="CIRCLE" COORDS="313,373,14" HREF="APP6 PROD_DIRsamples\sample1\phone.txt">
  61.  
  62. <!-- The Kiosk help -->
  63. <AREA SHAPE="CIRCLE" COORDS="16,379,14" HREF="APPHELP">
  64.  
  65. <!-- Applications and files can also be executed in the following  -->
  66. <!-- ways:                                                         -->
  67.  
  68. <!-- To open a file saved in the same directory as the .htm file   -->
  69. <!-- containing the hotspot, with it's associated application      -->
  70. <!-- (defined by Windows).                                         -->
  71.  
  72. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="file name"> -->
  73.  
  74. <!-- To run an application or open a file with it's associated     -->
  75. <!-- application (defined by Windows) from a directory specified   -->
  76. <!-- in the directory path.                                        -->
  77.  
  78. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="/file name"> -->
  79.  
  80. <!-- To run an application or open a file with it's associated     -->
  81. <!-- application (defined by Windows) from a specified directory.  -->
  82.  
  83. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates" HREF="FILE:///full path and file name"> -->
  84.  
  85. <!-- To run an application with a command line parameter.          -->
  86.  
  87. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates"         -->
  88. <!-- HREF="FILE:///full path of application followed by full path (if necessary) of command line parameter"> -->
  89.  
  90. <!-- To load a web site.                                           -->
  91.  
  92. <!-- <AREA SHAPE="shape type" COORDS="hotspot coordinates"         -->
  93. <!-- HREF="HTTP://URL of file to be loaded">                       -->
  94.  
  95. <!-- End of image map section -->
  96. </MAP>
  97.  
  98. <!-- End of body section -->
  99. </BODY>
  100.  
  101. <!-- End of HTML specification -->
  102. </HTML>
  103.