home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Java / ScriptBuilder / NOSB30_TRIAL.exe / data1.cab / Program_Files / CompLib / Dialog / Dialog.scc < prev    next >
Encoding:
Text File  |  1998-10-05  |  2.0 KB  |  63 lines

  1. <!--Created with NetObjects Script Component Pad-->
  2. <?XML VERSION="1.0"?>
  3. <!DOCTYPE COMPONENT SYSTEM "ecmascriptcomponent.dtd">
  4.  
  5. <COMPONENT NAME="com.netobjects.Dialog" ENV="client"
  6.                DISPLAYNAME="Pop-up Dialog"
  7.                HINT="Simple object from which developers can render 3 different kinds of dialogs."
  8.                VERSION="1.0"
  9.                SRC="Dialog.js">
  10.  
  11.    <ICON SRC16="DialogIcon.gif"/>
  12.    <META NAME="COPYRIGHT" VALUE="Copyright ⌐1998, NetObjects, Inc."/>
  13.    
  14.    <PROPERTY NAME="name" TYPE="STRING"
  15.                  DISPLAYNAME="name"
  16.                  HINT="(REQUIRED) Enter unique name of the control. Must exactly match the name of the corresponding JavaScript object on the page."
  17.                  DEFAULTVALUE="Dialog1">
  18.                  </PROPERTY>
  19.  
  20.  
  21.    <PROPERTY NAME="dlgType" TYPE="STRING"
  22.                  DISPLAYNAME="dlgType"
  23.                  HINT="(REQUIRED) Select the dialog type."
  24.                  VALUESET="alert|confirm|prompt"
  25.                  DEFAULTVALUE="alert">
  26.                  </PROPERTY>
  27.  
  28.  
  29.    <PROPERTY NAME="message" TYPE="STRING"
  30.                  DISPLAYNAME="message"
  31.                  HINT="(REQUIRED) Enter dialog message or prompt.">
  32.                  </PROPERTY>
  33.  
  34.  
  35.     <PROPERTY NAME="value" TYPE="STRING"
  36.                  DISPLAYNAME="value"
  37.                  HINT="Enter a default value for prompt dialog.">
  38.                  </PROPERTY>
  39.  
  40.  
  41.    <PROPERTY NAME="testMode" TYPE="STRING"
  42.                  DISPLAYNAME="testMode"
  43.                  HINT="Select the test mode."
  44.                  VALUESET="off|alerts|text"
  45.                  DEFAULTVALUE="off">
  46.                  </PROPERTY>
  47.  
  48.   
  49.    <METHOD NAME="open"
  50.                DISPLAYNAME="Open"
  51.                ENV="CLIENT"
  52.                HINT="Opens the dialog.">
  53.                </METHOD>
  54.  
  55.    <EVENT NAME="onOpen"
  56.               DISPLAYNAME="onOpen"
  57.               HINT="Event fires on open of dialog."/>
  58.  
  59.     <HELP SRC="Dialog.html"/>
  60.  
  61.  
  62. </COMPONENT>
  63.