1. add - adds a region element, settings to the corresponding collection, the number is optional.
    object.add. {Element [, number]} .
    EXAMPLE - add a new element to the OPTIONS collection of the SELECT
    tag
    set devel = document.createElement ("option")
    devel.text = "new"
    devel.value=100
    devadd.add devel

    <SELECT id=devadd></SELECT>
  2. addAmbient - adds ambient lighting when using the Light Filter Effect.
    object.style.filters.Light(n).AddAmbient{R,G,B,intensity} ,
  3. AddCone - adds a cone light source to the tag's filter collection.
    object.style.filters.light(n).Addcone{x1, y1, z1, x2, y2, z2, R, G, B, intensity, expansion} ,
  4. AddImport - adds a stylesheet from the url.
    DevInteger=object.addImport(url,[number])
  5. AddPoint - adds a point light to the tag's filter collection.
    object.style.filters.Light(n).addPoint{x,y,z,R,G,B,intensity} ,
  6. addRule - adds a line to the stylesheet.
    DevInteger=object.addRule(selector, style) ,
  7. alert - shows a warning window with OK button, WINDOW object method.
    <EM>object_window.alert([message])</EM> .<BR>EXAMPLE - show a warning window in the current window:<BR> <FIELDSET>alert("hello")</FIELDSET>
  8. apply - applies a tag filter by number from the filter collection of this tag, used in conjunction with the play method.
    object.filters.item(filter number).apply() ,
    object.filters(filter number).apply() .
    EXAMPLE - the disappearance of an object by clicking within 3 seconds,
    in the disappearing object in STYLE, the WIDTH value must be present:
    devfil.filters(0).apply()
    devfil.style.visibility="hidden"
    devfil.filters(0).play()
    Disappearing Object !!!
    <STRONG id=devfil title="Place the cursor inside the example frame and press Enter and I will disappear" style="FONT-SIZE: x-large; FILTER: blendtrans(duration=3); WIDTH: 200px">Disappearing object</STRONG>
  9. assign - loads another page
    object.assign(url)
  10. back - loads the previous page, a method of the History object.
    Window.History.back()
  11. blur - removes focus from the subject.
    object.blur()
  12. changeColor - changes the color of the filter.
    object.style.filters.light(n).changeColor(color number, intensity,fAbsolute) ,
  13. changeStrength - changes the intensity of the light.
    object.style.filters.light(n).changeStrenght(color number, intensity,fAbsolute) ,
  14. clear - removes all light sources of the Lightfilter.
    object.style.filters.lenght(n).clear ,
  15. clear_s - deletes the selected area of text, object method SELECTION.
    window.document.selection.clear() ,
    EXAMPLE - delete selected text in the active window:
    window.document.selection.clear()
    Select me, place the cursor on the example text and press "Enter", the example will be executed.
    Since it is possible to delete any selected text, do not delete the semantic text or you will have to reload the manual to restore it.
  16. clearInterval - resets the timer specified by the setInterval method.
    object.clearInterval(Timer ID) .
    Example - reset the timer, set the "dev_interval" timer to execute the program "program_name" every 10,000 milliseconds:
    dev=window.clearInterval(dev_interval)
    dev_interval=window.setinterval("program_name",10000,"VBSCRIPT")

  17. clearTimeout - resets the timer specified by the setTimeout method.
    object.clearTimeout(Timer_ID) .
    Example - reset the timer, set the "dev_interval" timer to execute the program "program_name" 10,000 milliseconds after loading the page:
    dev=window.clearTimeout(dev_interval)
    dev_interval=window.setTimeout("program_name",10000,"VBSCRIPT")

  18. click - fires a click event.
    object.click() ,
    EXAMPLE - trigger the onclick event of the TEST object. (id=devclick):
    devclick.click()
    TEST
    <H1 language=vbs id=devclick onclick='alert("the CLICK event of the TEST object has occurred.")'>TEST</H1>
  19. close - closes the window
    object_window.close() ,
    EXAMPLE - open the document "ac.htm" in a new window, show a message box and close it by clicking "OK":
    set devw=window.open("ac.htm")
    devw.alert("Click OK and the window will close")
    devw.close()

  20. collapse - shrinks the text area to a point at the beginning or end of the current one.
    1. object_textarea.collapse(true) - to begin;
    2. object_textarea.collapse(false) - to end.
    EXAMPLE - create a text area from the entire document, reduce the area to a point towards the end, see the text of the area:
    set devtex=document.body.createTextRange()
    devtex.collapse(false)
    msgbox devtex.text

  21. compareEndPoints - compares two text regions by the end positions of the regions and returns the comparison value:
    1. area_1.compareEndPoints ("StartToStart", area_2) - the beginning of area_1 is compared with the beginning of area_2;
    2. area_1.compareEndPoints ("EndToEnd", area_2) - the end of area_1 is compared with the end of area_2;
    3. object_textarea.compareEndPoints ("StartToEnd", area) - compares the beginning of area_1 with the end of area_2;
    4. area_1.compareEndPoints ("EndToStart", area_2) - the end of area_1 is compared to the beginning of area_2.
    Returned values:
    1. -1 - if the first compared position is located earlier than the second;
    2. 0 - if the first compared position coincides with the end position of the second;
    3. 1 - if the first compared position is located later than the second one.
    EXAMPLE - create a body area of ​​the page, duplicate it, compare the resulting two areas and see the comparison result.
  22. confirm - shows a confirmation window with a message and buttons "OK", "Cancel".
    object_window.confirm([message]) .
    focus is transferred to "other_open_window" and a confirmation window is shown in it:
    other_open_window.comfirm ("question?")

  23. contains - true if object_2 is contained in object_1.
    DevBoolean=object_1.contains(object_2) .
    EXAMPLE - see the value of the "devboolean" variable after assigning to it the result of checking the contents of the "devcon2" object in the "devcon1" object:
    devboolean=devcon1.contains(devcon2)
    msgbox devboolean
    I have an object with id = devcon1 inside me is: ,
    <STRONG id=devcon1 style="BACKGROUND: silver">I have an object with id = devcon1 inside me is:<BUTTON id=devcon2>object with id = devcon2</BUTTON></STRONG>
  24. createElement - creates an object by tag name, object method DOCUMENT.
    Set devnew=window.document.createElement("tag_name") .
    EXAMPLE - create a "select" object and get a link to it and see its html-code:
    Set devnew=window.document.createElement("select")
    alert(devnew.outerhtml)

  25. createRange - creates a textrange object from a mouse-selected area, an object's SELECTION method.
    set devtextrange=window.document.selection.createRange() ,
    EXAMPLE - view the htmltext of the selected area. Select any area and press the button:
    set devtextrange=window.document.selection.createRange()
    alert( devtextrange.innerHTML)

  26. createTextRange - creates a TextRange object based on an object object. The following object values are possible:
    1. The whole document -
      Set DevTextrange=window.document.body.createTextRange() ;
    2. Object TEXTAREA -
      Set DevTextrange=object_textarea.createTextRange()
      ;
    3. Object BUTTON -
      Set DevTextrange=object_button.createTextRange()
      ;
    4. Object INPUT -
      Set DevTextrange=object_input.createTextRange()
      .
    EXAMPLE - create a text area for the "Test object" button and view its htmltext:
    alert(devctr.createTextRange.innerHTML)

    <BUTTON id=devctr>Test object</BUTTON>
  27. duplicate - creates a copy of the textrange object.
    Set DevTextRange=object_textrange.duplicate() .
    EXAMPLE - create a text area from the body of the page, create a duplicate of the resulting area, see its first 50 characters of the html code:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    alert(devtex1.innerHTML.(0,50))

  28. elementFromPoint - returns an object with the given coordinates, a method of the DOCUMENT object.
    window.document.elementFromPoint(x,y) ,
    Set DevElement=window.document.elementFromPoint(x,y) .
    EXAMPLE - look at the HTML-code of the object where the point is located with relative coordinates 100px, 100px:
    Set Devfp=document.elementFromPoint(100,100)
    alert(Devfp.outerHTML)

  29. empty - removes the selection from the selection object and sets the value to none, a method of the SELECTION object.
    window.document.selection.empty() .
    EXAMPLE - cancel the selection made with the mouse and see the type of the selection object:
    window.document.selection.empty()
    msgbox window.document.selection.type
    The text to deselect. Highlight any part of me, & nbsp; place the mouse cursor inside the text frame of the example and press "Enter".
  30. execCommand - executes a command on the selected area.
    SevBoolean=object.execCommand(command,[bool,[,value]]) ,
  31. execScript - runs script code in the default JScript language.
    object.execScript(expression, [, language]) .
    EXAMPLE - compile and execute a JAVA script from one command (alert("12345")):
    dev=execScript("alert(""12345"");")

  32. expand - expands the text area by adding:
    1. DevBoolean=object.expand("chasracter") - symbol;
    2. DevBoolean=object.expand("word") - word;
    3. DevBoolean=object.expand("sentence") - sentence.
      EXAMPLE - create a text area of the body, shrink it to a point at the beginning, expand a point to a sentence and see its text:
      set devtex=document.body.createTextRange()
      devtex.collapse(true)
      devint=devtex.expand("sentence")
      alert(devtex.text)

  33. findText - searches for the "search text" in the textarea_object and, if found, converts the "object" to the found text area and returns True, otherwise returns False and converts nothing.
    DevBoolean=object_textarea.findText(search text) .
    EXAMPLE - in the text area of the entire document, find the "search text" symbol and print the htmltext of the found area:
    set devf=document.body.createtextrange()
    devr=devf.findText("search text")
    alert(devf.htmltext)

  34. focus - moves focus to an object.
    object.focus()
  35. forward - loads the next page from the list into an object, a method of the History object.
    Window.History.forward()
  36. getAttribute - returns the value of an attribute of an object.
    DevVariant=object.getAttribute(attribute name[,caseSensitive]) .
    EXAMPLE - we look at the value of the "tagName" attribute of the 11th object:
    alert(document.all(10).getAttribute("tagname"))

  37. getBookmark - defines a bookmark, remembers the text area to return to it.
    Dev_String=object_textarea.getBookmark() .
    EXAMPLE - create a body area, remember it as a bookmark, compress it to a point at the end, restore the area with a bookmark, see its HTML code (first 300 characters):
    set devtex=document.body.createTextRange()
    devbkm=devtex.getBookmark()
    devtex.collapse(false)
    devr=devtex.moveToBookmark(devbkm)
    alert(devtex.innerHTML.substr(0,300))

  38. go - loading page with number N from the list of visited pages, method of the History object.
    Window.History.go(N)
  39. inRange - true if object1_textrange is within another object_textrange.
    DevBoolean=object_textrange.inRange(object1_textrange) .
    EXAMPLE - create a body area, create a copy of this area, shrink the area to a point to the end, see if the copy is contained within the original:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    devtex.collapse(false)
    alert(devtex.inRange(devtex1))

  40. insertAdjacentHTML - inserts html code relative to "object":
    1. object.insertAdjacentHTML("Beforebegin",html) - before.
    2. object.insertAdjacentHTML("AfterBegin",html) - after.
    3. object.insertAdjacentHTML("BeforeEnd",html) - before end.
    4. object.insertAdjacentHTML(""AfterEnd",html) - after end.
    EXAMPLE - insert "hello" in front of an object with id = devin:
    devr=devin.insertAdjacentHTML("BeforeBegin","<strong>Hello </strong>")
    I am an object with id = devin, before me the object will be inserted if you place the cursor in the example frame and press "Enter".
  41. insertAdjacentText - inserts "html" relative to "object":
    1. object.insertAdjacentText("Beforebegin",html) -just before the opening tag.
    2. object.insertAdjacentText("AfterBegin",html) - directly after the opening tag.
    3. object.insertAdjacentText("BeforeEnd",html) - just before the closing tag.
    4. object.insertAdjacentText(""AfterEnd",html) - immediately after the end tag.
    EXAMPLE - insert "-Hi-" before the closing tag of an object with id = devin1:
    devr=devin1.insertAdjacentHTML("BeforeEnd","-Hi-")
    I am an object with id = devin1, "-Hi-" will be inserted at the end of my text if you place the cursor in the example frame and press "Enter". .
  42. isEqual - returns true if the text area "area1" is equal to the text area "area".
    DevBoolean=area.isEqual(area1) .
    EXAMPLE - create a body text area, create a similar text area, check if the text areas are equal:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    alert( devtex.isEqual(devtex1))

  43. item - returns a reference to an element of the object collection by its number.
    set DevElement=object.item(number [, additional number]) .
    EXAMPLE - let's see the html-code of 101 elements of the "document.all" collection:
    alert(document.all.item(100).outerHTML)

  44. javaEnabled - returns true if the browser can execute JAVA scripts, the method of the NAVIGATOR object.
    DevBoolean=window.navigator.javaEnabled() .
    EXAMPLE - let's see what our browser returns:
    alert(window.navigator.javaEnabled())

  45. move - expands (count > 0) or shrinks (count < 0) the text area "object" by moving the start and end points and returns the number of units to move the area, if the amount is omitted, the value is one.
    1. DevLong=object_textrange.move("sentence",value) - unit of movement - sentence of text;
    2. DevLong=object_textrange.move("word",value) - movement unit word;
    3. DevLong=object_textrange.move("character",value) -the unit of movement is simivol,
    .
  46. moveEnd - expands the "object" text area by moving the end point and returns the number of units of the area change, if the amount is omitted, the value is 1, the amount must always be greater than 0.
    1. DevLong=object.moveEnd("sentence",quantity) - unit of movement - sentence of text;
    2. DevLong=object.moveEnd("word",quantity) - movement unit word;
    3. DevLong=object.moveEnd("character",quantity) - the unit of movement is simivol.
    EXAMPLE - create a body area, transform the area into the found text area -BIG-, expand the area by moving the end point by 1 sentence, let's see the resulting area:
    set devtex=document.body.createTextRange()
    devtex.findText("-BIG-")
    devr=devtex.moveEnd("sentence",1)
    alert(devtex.innerHTML)

  47. moveLight - moves the light source.
    object.style.filters.light(n).moveLight(x,y,z,fAbsolute) ,
  48. moveStart - expands the text area "object" by moving the starting point and returns the number of units of change of the area, if quantity is omitted then the value is 1, the value of "quantity" must be less than 0.
    1. DevLong=object.moveStart("sentence",quantity) - unit of movement - sentence of text;
    2. DevLong=object.moveStart("word",quantity) - movement unit word;
    3. DevLong=object.moveStart("character",quantity) - the unit of movement is simivol.
    EXAMPLE - create an area of the body, transform the area into the area of the found text "by 3 words", expand the area by moving the starting point by 3 words, see the resulting area:
    set devtex=document.body.createTextRange()
    devtex.findText("""by 3 words""")
    devr=devtex.moveStart("word",-3)
    alert(devtex.innerHTML)

  49. moveToBookmark - restores the text area previously defined with getBookmark.
    DevString=object.moveBookmark(bookmark) ,
    EXAMPLE - we will create a text area of the body, by searching we will transform it into the area of the first found context "BIG", remember this area as a bookmark, compress to a point, restore it using a bookmark and see its text:
    set devtex=document.body.createTextRange()
    devr=devtex.findText("context ""BIG""")
    devbkm=devtex.getBookmark()
    devtex.collapse(false)
    devr=devtex.moveToBookmark(devbkm)
    alert(devtex.innerHTML)

  50. moveToElementText - sets the bounds of the textarea text area to the text of the object.
    object_textarea.moveToElementText(object) ,
    EXAMPLE - create a body region, convert it to object region 101 and see its htmltext:
    set devtex=document.body.createTextRange()
    devr=devtex.moveToElementText(document.all(100))
    alert(devtex.innerHTML)

  51. moveToPoint - narrows the area to a point on the object's HTML text with relative x, y coordinates.
    object_textarea.moveToPoint(x,y) ,
    EXAMPLE - let's create a text area of the body, turn the area into a point that is located on the HTML-code of the object where the mouse cursor is located, expand the point to a sentence and see the htmltext of the resulting area:
    set devtex=document.body.createTextRange()
    devr=devtex.moveToPoint(window.event.x,window.event.y)
    devtex.expand("sentence")
    alert(devtex.innerHTML)

  52. navigate - VBS only, loads a page with the url address into the object, a method of the WINDOW object.
    object_window.navigate(url) ,
    Example - load the start page of the constructor developers into the current window (frame):
    window.navigate("http://webcenter.ru/~globuss/")
    Running this example in a constructor breaks the constructor.
  53. nextPage - shows the next page of records in a related table.
    object.nextPage()
  54. open - opens the document in a new window as a stream to process the results of applying write and writeln.
    object_window.open() ,
    EXAMPLE - open the "ac.htm" document in a new window (then close it so it doesn't interfere):
    set devw=window.open("ac.htm")

  55. open_url - opens a new window and upload a document there with the url address.
    window=object.open(url[,name [, properties[,replace]]]) .
    EXAMPLE - open in a new window "new" document "ac.htm" with properties set by text variables dev1-dev13
    rem enable/disable properties (yes | no) and change the dimensions in pixels:
    devp1="channelmode=no," rem do not show controls
    devp2="directories=no," rem do not show catalog button
    devp3="fullscreen=no," rem do not maximize the window completely
    devp4="height=300," rem window height
    devp5="left=100," rem horizontal position
    devp6="location=no," rem do not show field ADDRESS
    devp7="menubar=no," rem do not show standard menus
    devp8="resizeable=yes," rem window size can be changed
    devp9="scrollbars=yes," rem show scrollbars
    devp10="status=no," rem do not show status bar
    devp11="toolbar=no," rem do not show toolbars
    devp12="top=0," rem vertical position
    devp13="width=300" rem window width
    devtotal=devp1& devp2& devp3& devp4& devp5& devp6& devp7& devp8& devp9& devp10& devp11& devp12& devp13
    set devwindow=window.open("ac.htm","new",devtotal)

  56. parentElement - returns the parent of everything within the text area.
    element=object_textarea.parentElement() .
    EXAMPLE - create a body area, see the name of the parent tag:
    set devtex=document.body.createTextRange()
    alert(devtex.parentNode.tagName)

  57. pasteHTML - inserts text and / or HTML code into the current text area.
    object.pasteHTML(text and HTML)
    EXAMPLE - insert the heading "second" after the word "first" instead of the symbol "?" object with id = devpaste:
    set devtex=document.body.createTextRange()
    devtex.moveToElementText(window.document.all("devpaste"))
    devr=devtex.findText("?")
    if devr then devtex.pasteHTML "<h3>second </h3>"
    first ? third. I am an object with id = devpaste, if you place the cursor in the example frame and press "Enter", then between my first words, the heading "second" will be inserted in place of the question mark
  58. play - applies a dynamic filter.
    object.filters(filter number).play(duration in sec.) ,
    if duration is specified in style, then duration in play has a higher priority.
    EXAMPLE1 - apply a filter when an object appears:
    devplay0.filters(0).apply()
    devplay0.style.visibility="visible"
    devplay0.filters(0).play()
    EXAMPLE2 - apply a filter when an object disappears:
    devplay0.filters(0).apply()
    devplay0.style.visibility="hidden"
    devplay0.filters(0).play()
    Disappearing object
    <STRONG id=devplay0 style="FONT-SIZE: x-large; BACKGROUND: silver; FILTER: blendtrans(duration=3); WIDTH: 200px">Disappearing object</STRONG>
  59. prevPage - shows the previous page of records in a related table.
    object.prevPage()
  60. promt - shows an invitation box with a message and a text box.
    object_window.prompt([message [, default]])) .
    EXAMPLE - window for entering a request to the user:
    devr=window.prompt("enter data", "default")

  61. queryCommandEnabled - returns true if the command is available.
    DevBoolean=object_textrange.queryCommandEnabled(command)
  62. queryCommandIndenterm - returns true if the command has an undefined status.
    DevBoolean=object.queryCommandIndenterm(command).
  63. queryCommandState - returns the current state of the command.
    DevBoolean=object.queryCommandState(command).
  64. queryCommandSupported - returns true if the command is supported.
    Boolean=object.queryCommandSupport(command)
  65. queryCommandText - returns the string the command works with.
    DevString=object.queryCommandText(command)
  66. queryCommandValue - returns the command value specified for a document or TextRange object.
    String=object.queryCommandValue(command)
  67. refresh - updates the contents of the table.
    object_table.refresh()
  68. replace - loads the page from url into the window (frame) replacing the previously loaded document, the method of the LOCATION object.
    object_window.location.replace(url) ,
    Example - load a new document "ac.htm"
    into the current window (it is not recommended to run the example in design mode because it breaks its work):
    window.location.replace("ac.htm")

  69. reload - updates the current page, a method of the LOCATION object.
    object_window.location.reload() ,
    Example - refresh the current page
    (running the example in design mode is not recommended because the constructor is restarted and the created page is lost):
    window.location.reload()

  70. remove - removes an element from the areas or options collection.
    object.remove(number) ,
    EXAMPLE - remove the first element of the SELECT list:
    devsel.remove(0)

    <SELECT id=devsel>
    <OPTION selected>first
    < OPTION > second
    < OPTION > third</OPTION> </SELECT>

  71. removeAttribute - removes the specified attribute from the HTML element and the current page
    Dev_Boolean=object.removeAttribute(name[,caseSensitive]) .
    EXAMPLE - remove the color attribute from the HR object:
    devr=devra.removeAttribute("color")

    <HR id=devra color=red>
  72. reset - generates an event normally raised by a mouse click on the RESET button of a FORM object.
    object_form.reset()
  73. scroll - expands an object to width x and height y, a method of the WINDOW object.
    object_window.scroll(x,y)
  74. scrollIntoView - moves the screen so that the object appears:
    1. object.scrollIntoView() - at the beginning of the screen;
      EXAMPLE - move the example frame to the beginning of the screen:
      devsivw.scrollIntoView()
      <FIELDSET id=devsivw>devsivw.scrollIntoView()</FIELDSET>
    2. object.scrollIntoView(false) - at the end of the screen .;
      EXAMPLE - move the example frame to the end of the screen:
      devsivw1.scrollIntoView(false)
      <FIELDSET id=devsivw1>devsivw1.scrollIntoView(false)</FIELDSET>

  75. select - selects and displays the current text area.
    object_textarea.select() .
    EXAMPLE - highlight the example text:
    set devtex=document.body.createTextRange()
    devtex.moveToElementText(devselect)
    devtex.select
    <FIELDSET id=devselect>set devtex=document.body.createTextRange()
    devtex.moveToElementText(devselect)
    devtex.select</FIELDSET>

  76. setAttribute - adds and/or sets the value of the "name" attribute in the tag, if "value" is absent, it is assigned the value null.
    object.setAttribute(name [,value]) .
    EXAMPLE - change the value of the title attribute of a test object:
    devr=devsat.setAttribute("title","I've already been changed!")

    <BUTTON id=devsat title="I have not been changed">Test object</BUTTON>
  77. setEndPoint - moves the start or end point of the current text area "area_1" to the beginning or end of the specified "area_2":
    1. area_1.setEndPoint("StartToStart",area_2)
      - the beginning of area_1 moves to the beginning of area_2;
    2. area_1.setEndPoint("EndToEnd",area_2)
      - the end of area_1 is moved to the end of area_2;
    3. object_textarea.setEndPoint("StartToEnd",area)
      - the beginning of area_1 moves to the end of area_2;
    4. area_1.setEndPoint("EndToStart",area_2) - the end of area_1 moves to the start of area_2.
    EXAMPLE - create an area from the body, create a duplicate of the area, create a "test" button code area from the area, extend the button area to the end of the take area and see the htmltext of this extended area:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate()
    devr=devtex.moveToElementText(devepnt)
    devr=devtex.setEndPoint("endtoend",devtex1)
    msgbox devtex.htmltext

    <button id=devepnt>test</button>
  78. setInterval - tells the "expression" procedure to be executed periodically after a specified number of milliseconds, by default the JAVASCRIPT language, a method of the WINDOW object.
    Timer ID=object.setInterval(expression, time in milliseconds, [, language]) :
    dev=window.clearInterval(dev_interval)
    dev_interval=window.setInterval("program_name",10000,"VBSCRIPT")
    Resets the timer and sets the dev_interval to execute program program_name every 10,000 milliseconds.
  79. setTimeout - runs the "expression" program in a specified number of milliseconds after loading the page, by default the JAVASCRIPT language, a method of the WINDOW object.
    Timer ID=object.SetTimeout(expression, time in milliseconds, [, language]) ,
    dev=window.clearTimeout(dev_interval)
    dev_interval=window.setTimeout("program_name",10000,"VBSCRIPT")
    Resets the timer and sets the dev_interval timer to execute program program_name 10,000 milliseconds after page load.
  80. showHelp - shows the prompt window as dialog.
    object.showHelp(url[,arguments])
  81. showModalDialod - opens a page in a dialog box, object method WINDOW.
    DevVariant=object_window.showModalDialog(url[,arguments [, properties]]) .
    EXAMPLE - open in a new window "new" the document "ac.htm" as a dialog with the properties set by the text variables dev1-dev15:
    rem enable / disable the properties (yes | no) and change the size values in accepted units (px, mm, cm):
    devp1="border=thin;" rem sets the size of the window framethin|thick
    devp2="center=no;" rem do not center the window
    devp3="dialogheight=350px;" rem window height in units
    devp4="dialogleft=100px;" rem horizontal position in units
    devp5="dialogtop=0px;" rem vertical position in units
    devp6="dialogwidth=450px;" rem window width
    devp7="font=areal;" rem default font and style
    devp8="font-family=Arial;" rem default font type
    devp9="font-size=10;" rem default font size
    devp10="font-style=;" rem default font type
    devp11="font-variant=;" rem font variant
    devp12="font-weight=;" rem default weight
    devp13="help=no;" rem do not enable help button
    devp14="maximize=yes;" rem enable maximize button
    devp15="minimize=yes" rem enable minimize button
    devtotal=devp1& devp2& devp3& devp4& devp5& devp6& devp7 & devp8& devp9& devp10& devp11& devp12& devp13& devp14& devp15
    devr=window.showModalDialog("ac.htm","new",cstr(devtotal))

  82. start - start, stop scrolling of the scrolling text of the MARQUEE tag, methods of the MARQUEE tag.
    object_marquee.start() ,
    object_marquee.stop() .
    EXAMPLE 1 - stop running test text:
    devmarq.stop()
    EXAMPLE 2 - start running test text:
    devmarq.start()
    CONTROL TEXT<MARQUEE id=devmarq style="BACKGROUND: #ffc0cb; CURSOR: hand" scrollDelay=200 direction=right behavior=alternate>CONTROL TEXT</MARQUEE>
  83. stop - interrupts the dynamic filter (ends the image conversion cycle before the transition time expires), stops the scrolling text of the MARQUEE tag.
    object.filters(number).stop .
    EXAMPLE 1 - applying a filter when a "disappearing object" appears, the time of appearance is specified in the tag:
    devplay1.filters(0).apply()
    devplay1.style.visibility="visible"
    devplay1.filters(0).play()
    EXAMPLE 2 - abort the transformation of the "disappearing object" image:
    devplay1.filters(0).stop
    EXAMPLE 3 - applying a filter when the "disappearing object" disappears, the appearance time (3 sec.) Is given in the example:
    devplay1.filters(0).apply()
    devplay1.style.visibility="hidden"
    devplay1.filters(0).play(3)
    Disappearing object <STRONG id=devplay1 style="FONT-SIZE: x-large; FILTER: blendtrans(duration=10); VISIBILITY: visible; WIDTH: 200px; CURSOR: hand">Disappearing object</STRONG>
  84. submit - sending the form to the server, analogous to pressing the SUBMIT button, the FORM tag method.
    object_form.submit()
  85. tags - creates a collection from a collection by selecting tags by name.
    set dev_new_colltction=dev_old_collection.tags("tag_name") ,
    For example, let's create a collection of all DIV objects from all objects:
    set dev_new_colltction=window.document.all.tags("DIV") .
  86. taintEnabled - always returns False, for compatibility with Netscape Navigator, a method of the NAVIGATOR object.
    DevBoolean=window.navigator.taintEnabled() ,
    EXAMPLE - let's see the return value:
    msgbox navigator.taintEnabled()

  87. write - writes a string (text and HTML) to the document in the window "object_window", a method of the DOCUMENT object.
    object_window.document.write(line) .
    EXAMPLE - open the "ac.htm" document in a new window and make a welcome page out of it:
    set devw=window.open("ac.htm")
    devw.document.write "<"&"html> <"&"head><"&"title> Greeting page</title></head> <"&"body><h1> Hello !</h1>Close the page so as not to interfere.</body></html>"

  88. writeln - writes a line (text and HTML code) with a carriage return appended at the end of the line to the document in the window "object_window" method of the DOCUMENT object.
    object_window.document.write(line)
    EXAMPLE - open the "ac.htm" document in a new window and make a welcome page out of it:
    set devw=window.open("ac.htm")
    devw.document.writeln "<"&"html> <"&"head><"&"title> Greeting page</title></head> <"&"body><h1>Hello !</h1>Close the page so as not to interfere, but first make sure by viewing the HTML code that it ends with a line feed.</body></html>"

  89. zOrder - sets the z-index of the overlapping levels.
    object.zOrder([position]) ,