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 / ImageCtl / AnimImageCtl.scc < prev    next >
Encoding:
Text File  |  1998-10-05  |  4.7 KB  |  141 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.AnimImg" ENV="client"
  6.                DISPLAYNAME="Animated Image"
  7.                HINT="Provides animation by rotating through a series of images at a specified time interval."
  8.                VERSION="1.0"
  9.                SRC="imageCtl.js">
  10.  
  11.    <ICON SRC16="AnimImageCtlIcon.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="AnimImg1">
  18.                  </PROPERTY>
  19.  
  20.    <PROPERTY NAME="linkURL" TYPE="STRING"
  21.                  DISPLAYNAME="linkURL"
  22.                  HINT="Enter link URL."
  23.                  DEFAULTVALUE="http://">
  24.                  </PROPERTY>
  25.  
  26.    <PROPERTY NAME="alt" TYPE="STRING"
  27.                  DISPLAYNAME="alt"
  28.                  HINT="Enter alternative text or hint.">
  29.                  </PROPERTY>
  30.  
  31.    
  32.    <PROPERTY NAME="imageArrayStr" TYPE="STRING"
  33.                  DISPLAYNAME="imageArrayStr"
  34.                  HINT="Enter a semicolon delimited list of image URL's.">
  35.                  </PROPERTY>
  36.  
  37.    <PROPERTY NAME="imageInterval" TYPE="STRING"
  38.                  DISPLAYNAME="imageInterval"
  39.                  HINT="Enter the number of milliseconds each image should display.">
  40.                  </PROPERTY>
  41.  
  42.  
  43.    <PROPERTY NAME="height" TYPE="NUMBER"
  44.                  DISPLAYNAME="height"
  45.                  HINT="Enter the image height.">
  46.                  </PROPERTY>
  47.  
  48.    <PROPERTY NAME="width" TYPE="NUMBER"
  49.                  DISPLAYNAME="width"
  50.                  HINT="Enter the image width.">
  51.                  </PROPERTY>
  52.  
  53.    <PROPERTY NAME="target" TYPE="STRING"
  54.                  DISPLAYNAME="target"
  55.                  HINT="Enter the link target.">
  56.                  </PROPERTY>
  57.  
  58.    <PROPERTY NAME="border" TYPE="NUMBER"
  59.                  DISPLAYNAME="border"
  60.                  HINT="Enter the image border."
  61.                  DEFAULTVALUE="0">
  62.                  </PROPERTY>
  63.  
  64.  
  65.    <PROPERTY NAME="testMode" TYPE="STRING"
  66.                  DISPLAYNAME="testMode"
  67.                  HINT="Select the test mode."
  68.                  VALUESET="off|alerts|text"
  69.                  DEFAULTVALUE="off">
  70.                  </PROPERTY>
  71.  
  72.   
  73.    <METHOD NAME="render"
  74.                DISPLAYNAME="Render"
  75.                ENV="CLIENT"
  76.                HINT="Renders control.">
  77.                </METHOD>
  78.    <METHOD NAME="animationStart"
  79.                DISPLAYNAME="Animation Start"
  80.                ENV="CLIENT"
  81.                HINT="Starts image animation.">
  82.                </METHOD>
  83.    <METHOD NAME="animationStop"
  84.                DISPLAYNAME="Animation Stop"
  85.                ENV="CLIENT"
  86.                HINT="Stops image animation.">
  87.                </METHOD>
  88.  
  89.    <EVENT NAME="onClick"
  90.               DISPLAYNAME="onClick"
  91.               HINT="Event fires on completed click of mouse button."/>
  92.  
  93.    <EVENT NAME="onMouseDown"
  94.               DISPLAYNAME="onMouseDown"
  95.               HINT="Event fires on down press of mouse button."/>
  96.  
  97.    <EVENT NAME="onMouseUp"
  98.               DISPLAYNAME="onMouseUp"
  99.               HINT="Event fires on upward movement or release of mouse button."/>
  100.  
  101.    <EVENT NAME="onMouseOver"
  102.               DISPLAYNAME="onMouseOver"
  103.               HINT="Event fires on rolling cursor over image."/>
  104.  
  105.    <EVENT NAME="onMouseOut"
  106.               DISPLAYNAME="onMouseOut"
  107.               HINT="Event fires on rolling cursor off of image."/>
  108.  
  109.    <EVENT NAME="onError"
  110.               DISPLAYNAME="onError"
  111.               HINT="Event fires on failure to load image."/>
  112.  
  113.    <EVENT NAME="onAbort"
  114.               DISPLAYNAME="onAbort"
  115.               HINT="Event fires on user aborted loading of image."/>
  116.  
  117.    <EVENT NAME="onLoad"
  118.               DISPLAYNAME="onLoad"
  119.               HINT="Event fires on successful load of image."/>
  120.  
  121.    <EVENT NAME="onRender"
  122.               DISPLAYNAME="onRender"
  123.               HINT="Event fires on render of image control."/>
  124.  
  125.    <EVENT NAME="onAnimationStart"
  126.               DISPLAYNAME="onAnimationStart"
  127.               HINT="Event fires on start of animation."/>
  128.  
  129.    <EVENT NAME="onAnimationStop"
  130.               DISPLAYNAME="onAnimationStop"
  131.               HINT="Event fires on stop of animation."/>
  132.  
  133.    <EVENT NAME="onRotateImage"
  134.               DISPLAYNAME="onRotateImage"
  135.               HINT="Event fires on rotation of image."/>
  136.  
  137.     <HELP SRC="AnimImage.html"/>
  138.  
  139.  
  140. </COMPONENT>
  141.