1. add - Adds an element, in the appropriate collection, number is unessential.
    object.add.{element[,number]} .
    EXAMPLE - to add a new element (object) in a collection OPTIONS of the text SELECT.
    set devel=document.createElement("option")
    devel.text="New"
    devel.value=100
    devadd.add devel

    <SELECT id=devadd></SELECT>
  2. addAmbient - Adds external illumination with use of the filter Light Filter Effect.
    object.style.filters.Light(n).AddAmbient{R,G,B,Intensity} , To apply it was not possible.
  3. AddCone - Adds in a collection of filters of the tag a conic source of light.
    object.style.filters.light(n).Addcone{x1, y1, z1, x2, y2, z2, R, G, B, intensity, expansion} ,To apply it was not possible.
  4. AddImport - Adds the table of styles from the URL address.
    DevInteger=object.addImport(url,[number])
  5. AddPoint - Adds in a collection of filters of the tag a dot source of light.
    object.style.filters.Light(n).addPoint{x,y,z,R,G,B,intensity} ,To apply it was not possible.
  6. addRule - Adds a line in the table of styles.
    DevInteger=object.addRule(selector, style) , To apply it was not possible.
  7. alert - Shows a window of the warning with the button OK, method of object WINDOW.
    object_window.alert([message]) .
    EXAMPLE - to show the warning in a current window:
    alert("hello")
  8. apply - Applies the filter of the tag under number from a collection of filters of this tag, is applied with a method "play".
    object.filters.item(Number_of_the_filter).apply() ,
    object.filters(Number_of_the_filter).apply() .
    EXAMPLE - disappearrance of object on click during 3 seconds. In disappearing object, in STYLE the presence of value WIDTH is necessary:
    devfil.filters(0).apply()
    devfil.style.visibility="hidden"
    devfil.filters(0).play()
    Disappearing object
    <STRONG id=devfil title="Place the cursor inside of a framework of an example and press Enter and I shall become invisible." style="FONT-SIZE: x-large; FILTER: blendtrans(duration=3); WIDTH: 200px">Disappearing object</STRONG>
  9. assign - Loads other page, method of object LOCATION.
    window.location.assign(url) ,
    window.location.assign("ac.htm")
  10. back - Loads previous page, method of object HISTORY.
    Window.History.back()
  11. blur - Removes focus from object.
    object.blur()
  12. changeColor - Changes colour of the filter.
    object.style.filters.light(n).changeColor(number of colour, intensity,fAbsolute) , To apply it was not possible.
  13. changeStrength - Changes intensity of light.
    object.style.filters.light(n).changeStrenght(number of colour, intensity,fAbsolute) , To apply it was not possible.
  14. clear - Removes all sources of light of the filter "Lightfilter".
    object.style.filters.lenght(n).clear ,To apply it was not possible
  15. clear_s - Deletes the selected area of the text, method of object SELECTION.
    window.document.selection.clear() ,
    EXAMPLE - to remove the selected text in an active window:
    window.document.selection.clear()
    The text for removal. Select me, place the cursor on the text of an example and press "Enter", the example will be executed.
    As it is possible removals of any selected text do not delete the text, which is a manual, or it is necessary to overload a manual to restore it.
  16. clearInterval - Clears the timer, the interval was a set of a method "setInterval".
    object.clearInterval(timer_ID) .
    Example - to clean the timer, to charge the timer "dev_interval" on performance of the program "program_name" each 10000 miliseconds:
    dev=window.clearInterval(dev_interval)
    dev_interval=window.setinterval("program_name",10000,"VBSCRIPT")
  17. clearTimeout - Clears the timer, the set of an interval was made by a method "setTimeout".
    object.clearTimeout(timer_ID) .
    Example - to clean the timer, to set the timer "dev_interval" on performance of the program "program_name" in 10000 miliseconds after a load of page:
    dev=window.clearTimeout(dev_interval)
    dev_interval=window.setTimeout("program_name",10000,"VBSCRIPT")
  18. click - Initiates event CLICK.
    object.click() ,
    EXAMPLE - to initiate event onclick of object TEST (id=devclick):
    devclick.click()
    TEST
    <H1 language=vbs id=devclick onclick='alert("There was an event CLICK of object the TEST.")'>TEST</H1>
  19. close - object.close() - Closes a window of page.
    object_window.close() ,
    EXAMPLE - to open in a new window the document "ac.htm" to show a window of the message and on click "OK" to close:
    set devw=window.open("ac.htm")
    devw.alert("Click OK and the window will be closed")
    devw.close()
  20. collapse - The area of object TEXTAREA compresses in a point in the beginning or end current.
    EXAMPLE - to create textual area from the document, to reduce area up to a point in the party of the end, to look the text of area:
    set devtex=document.body.createTextRange()
    devtex.collapse(false)
    msgbox devtex.text
  21. compareEndPoints - Compares two textual areas on final positions of areas and returns value of comparison: Returned values: EXAMPLE - to create area of a body of page to duplicate it, received two areas to compare and to show result of comparison:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    msgbox  "Result of comparison of areas ="&devtex.compareEndPoints("StartToStart",devtex1),64
  22. confirm - Shows a window confirmation with the message and buttons "OK", "Cancel".
    object_window.confirm([The message]) .
    EXAMPLE 1 - to show a window - confirmation in a current window:
    self.confirm("Question?")
    Example 2 - focus to transfer on "another_opened_a_window" and in it to show a window confirmation:
    another_opened_a_window.comfirm("Question?")
  23. contains - The "True" returns if the object_2 is contained in object_1.
    DevBoolean=object_1.contains(object_2) .
    EXAMPLE - to show value variable "devboolean" after assignment to it of result of check of the contents of object "devcon2" in object "devcon1":
    devboolean=devcon1.contains(devcon2)
    msgbox devboolean
    I object with id=devcon1 inside me am: ,
    <STRONG id=devcon1 style="BACKGROUND: silver">I object with id=devcon1 inside me am:<BUTTON id=devcon2>object with id=devcon2</BUTTON></STRONG>
  24. createElement - Creates object on a name of the tag, method of object DOCUMENT.
    Set devnew=window.document.createElement("tag_name") .
    EXAMPLE - to create object "select", to receive the reference to it and to show its html-code:
    Set devnew=window.document.createElement("select")
    msgbox devnew.outerhtml
  25. createRange - Creates object TEXTRANGE from the area, selected by the mouse, method of object SELECTION.
    set devtextrange=window.document.selection.createRange() ,
    EXAMPLE - to show property "htmltext" of the selected area. Select any area and press the button:
    set devtextrange=window.document.selection.createRange()
    msgbox devtextrange.htmltext
  26. createTextRange - Creates object TextRange on the basis of object OBJECT. The following of variant of object OBJECT are possible: EXAMPLE - to create textual area of the button "Test object" and to show its property "htmltext":
    alert(devctr.createTextRange.htmltext)

    <BUTTON id=devctr>Test object</BUTTON>
  27. duplicate - Creates copy of object TEXTRANGE.
    Set DevTextRange=object_textrange.duplicate() .
    EXAMPLE - to create textual area from a body of page, to create a double of the received area, to show its first 50 symbols of a html-code:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    msgbox left(devtex1.htmlText,50)
  28. elementFromPoint - Returns object with the given coordinates, method of object DOCUMENT.
    window.document.elementFromPoint(x,y) ,
    Set DevElement=window.document.elementFromPoint(x,y) .
    EXAMPLE - to show a HTML-code of object on which the point with relative coordinates 100px, 100px settles down:
    Set Devfp=document.elementFromPoint(100,100)
    msgbox Devfp.outerhtml
  29. empty - Cancels selection for object SELECTION and sets value as none, method of object SELECTION.
    window.document.selection.empty() .
    EXAMPLE - to cancel selection made by the mouse and to show a type of object SELECTION:
    window.document.selection.empty()
    msgbox window.document.selection.type
    The text for a cancellation of selection. Select any part me, place the cursor of the mouse inside of a framework of the text of an example and press "Enter".
  30. execCommand - Executes the command of object TEXTRANGE.
    SevBoolean=object.execCommand(command,[bool,[,value]]) ,was not checked.
  31. execScript - Executes the script, language of the script by default JAVA
    object.execScript(script-code[,language]) .
    EXAMPLE - to compile and to execute the script on JAVA from one command:(alert (" 12345 ")):
    dev=execScript("alert(""12345"");")
  32. expand - Expands textual area adding:
    EXAMPLE - to create textual area of a body, to compress it up to a point in a beginning, to expand a point to the sentence and to show the text of the received area:
    set devtex=document.body.createTextRange()
    devtex.collapse(true)
    devint=devtex.expand("sentence")
    msgbox devtex.text
  33. findText - Searches "required text" in textual area "object_textarea" and, if it is found, transforms "object_textarea" to area of the found text and returns value "True", differently returns "False" and nothing transforms.
    DevBoolean=object_textarea.findText("required text") .
    EXAMPLE - in textual area of the document to find a string "required text " and to show htmltext of the found area:
    set devf=document.body.createtextrange()
    devr=devf.findText("required text")
    msgbox devf.htmltext
  34. focus - Moves focus on object.
    object.focus()
  35. forward - Loads the following page from the list, method of object HISTORY.
    Window.History.forward()
  36. getAttribute - Returns value of attribute of object.
    DevVariant=object.getAttribute(Name_of_attribute[,caseSensitive]) .
    EXAMPLE - to show value of attribute "tagname" at 11 objects:
    msgbox document.all(10).getAttribute("tagname")
  37. getBookmark - Defines a bookmark, remembers textual area to return to it.
    Dev_String=object_textarea.getBookmark() .
    EXAMPLE - to create area of a body, to remember by its bookmark, to compress up to a point in the end, to restore area by a bookmark to show its HTML-code (first 300 symbols):
    set devtex=document.body.createTextRange()
    devbkm=devtex.getBookmark()
    devtex.collapse(false)
    devr=devtex.moveToBookmark(devbkm)
    msgbox left(devtex.htmlText,300)
  38. go - Load of page with number N from the list of the visited pages, method of object HISTORY.
    Window.History.go(N)
  39. inRange - The "True" returns, if the object1 _ textrange is inside object_textrange.
    DevBoolean=object_textrange.inRange(object1_textrange) .
    EXAMPLE - to create area of a body, to create a copy of this area, to compress area up to a point in the end, to show the copy inside the original is contained:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    devtex.collapse(false)
    msgbox devtex.inRange(devtex1)
  40. insertAdjacentHTML - Inserts a HTML-code concerning object OBJECT
    EXAMPLE - to insert "hi" before object with id=devin:
    devr=devin.insertAdjacentHTML("BeforeBegin","<strong>hi </strong>")
    I object with id=devin, before me will be inserted object, if to place the cursor in a framework of an example and to press "Enter".
  41. insertAdjacentText - Inserts the text concerning object OBJECT:
    EXAMPLE - to insert "-Hi-" before the closing tag of object with id = devin1:
    devr=devin1.insertAdjacentHTML("BeforeEnd","-Hi-")
    I object with id=devin1, in the end of my text will be inserted "-Hi-" if to place the cursor in a framework of an example and to press "Enter". .
  42. isEqual - Returns "True" if the textual area " AREA1 " is equal to textual area "AREA".
    DevBoolean=AREA.isEqual(AREA1) .
    EXAMPLE - to create textual area of a body, to create a copy of this textual area, to show equality of areas:
    set devtex=document.body.createTextRange()
    set devtex1=devtex.duplicate
    msgbox devtex.isEqual(devtex1)
  43. item - Returns the reference to an element of a collection of object under its number.
    set DevElement=object.item(number[,additional number]) .
    EXAMPLE - to show a html-code 101 elements of a collection "DOCUMENT.ALL":
    msgbox document.all.item(100).outerhtml
  44. javaEnabled - Returns "True", if browser can carry out the script JAVA, method of object NAVIGATOR.
    DevBoolean=window.navigator.javaEnabled() .
    EXAMPLE - to show, that will return yours browser rather JAVA:
    msgbox window.navigator.javaEnabled()
  45. move - Expands (quantity>0), or compresses (quantity < 0) textual areas "object" by moving initial and final points also returns quantity of units of moving of area, if the quantity is omitted, the quantity 1 is accepted.
    the application has failed .
  46. moveEnd - Expands textual area "object" by moving of a final point and returns quantity of units of change of area, if the quantity is omitted that the quatity 1 is accepted, the quantity should be always more than 0.
    EXAMPLE - to create area of a body, to transform area to area of the found text -BIG-, to expand area by moving of a final point on 1 sentence, to show the received area:
    set devtex=document.body.createTextRange()
    devtex.findText("-BIG-")
    devr=devtex.moveEnd("sentence",1)
    msgbox devtex.htmltext
  47. moveLight - Moves a source of light.
    object.style.filters.light(n).moveLight(x,y,z,fAbsolute) ,the application has failed.
  48. moveStart - Expands textual area "object" by moving of a point of a beginning and returns quantity of units of change of area, if the quantity is omitted, that the quantity 1 is accepted, the quantity should be less than 0.
    EXAMPLE - to create area of a body, to transform area to area of the found text "on 3 words", to expand area by moving of a point of a beginning on 3 words, to show the received area:
    set devtex=document.body.createTextRange()
    devtex.findText("""on 3 words""")
    devr=devtex.moveStart("word",-3)
    msgbox devtex.htmltext
  49. moveToBookmark - Restores textual area "object", which was remembered by a method getBookmark.
    DevString=object.moveBookmark(Bookmark) ,
    EXAMPLE - to create textual area of a body, search to transform it to area of the first found context "BIG", to remember this area by a bookmark, to compress up to a point, to restore with the help of a bookmark and to show its text:
    set devtex=document.body.createTextRange()
    devr=devtex.findText("context ""BIG""")
    devbkm=devtex.getBookmark()
    devtex.collapse(false)
    devr=devtex.moveToBookmark(devbkm)
    msgbox devtex.htmlText
  50. moveToElementText - Sets textual area "object_textarea" in the text of the tag of object OBJECT.
    object_textarea.moveToElementText(OBJECT) ,
    EXAMPLE - to create area of a body, to transform it to area 101 objects and to show it of htmltext:
    set devtex=document.body.createTextRange()
    devr=devtex.moveToElementText(document.all(100))
    msgbox devtex.htmltext
  51. moveToPoint - Compresses text_area up to a point on the text of a HTML-code of object with relative coordinates of a point x,y (in pixels).
    text_area.moveToPoint(x,y) ,
    EXAMPLE - to create textual area of a body, to transform area to a point, which settles down on a HTML-code of object, on which the cursor of the mouse is located, to expand a point to the sentence and to show htmltext of the received area:
    set devtex=document.body.createTextRange()
    devr=devtex.moveToPoint(window.event.x,window.event.y)
    devtex.expand("sentence")
    msgbox devtex.htmltext
  52. navigate - Loads into object_window page with the URL address, method of object WINDOW, only for VBS.
    object_window.navigate(url) ,
    Example - to load in a current window (frame) starting page of the developers of the designer:
    window.navigate("http://webcenter.ru/~globuss/")
    The performance of this example in the designer breaks work of the designer.
  53. nextPage - Shows the following page of records in the connected table.
    object.nextPage()
  54. open - Opens in a new window the empty document for filling it later by methods: write, writeln.
    window.open() ,
    EXAMPLE - to create in a new window the empty document. (after viewing an example close a window):
    set devw=window.open()
  55. open_url - Opens a new window and loads there document with the URL address.
    set object_window=window.open(url[,name[,properties[,replace]]]) .
    EXAMPLE - to open in a new window "NEW" the document "ac.htm" by properties given textual variable dev1-dev13 (after viewing close a window):
    rem set,cancel properties (yes|no)and change of value of the sizes in pixels:
    devp1="channelmode=no," rem To not show elements of management
    devp2="directories=no," rem To not show the button of the catalogue
    devp3="fullscreen=no," rem To not unwrap a window completely
    devp4="height=300," rem Height of a window
    devp5="left=100," rem Place on a horizontal
    devp6="location=no," rem To not show a field ADDRESS
    devp7="menubar=no," rem To not show the standard menus
    devp8="resizeable=yes," rem The size of a window can be changed
    devp9="scrollbars=yes," rem To show strips of a scrolling
    devp10="status=no," rem To not show a line of the status
    devp11="toolbar=no," rem To not show the panel of tools
    devp12="top=0," rem Place on a vertical
    devp13="width=300" rem Width of a window
    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 reference to parental object for all objects, which in textual area.
    set object=object_textarea.parentElement() .
    EXAMPLE - to create area of a body, to show a name of the parental tag:
    set devtex=document.body.createTextRange()
    msgbox devtex.parentElement().tagname
  57. pasteHTML - Inserts the text and - or a code HTML into textual area object
    object.pasteHTML(The text and HTML)
    EXAMPLE - to insert heading "second" after a word "first" instead of a symbol "?":
    set devtex=document.body.createTextRange()
    devtex.moveToElementText(window.document.all("devpaste"))
    devr=devtex.findText("?")
    if devr then devtex.pasteHTML "<h3>second </h3>"
    Object with id=devpaste:
    first ? third. I object c id=devpaste, if to place the cursor in a framework of an example and will press "Enter", between first my words on a place of a mark of a question the heading "second" will be inserted
  58. play - Applies the dynamic filter.
    object.filters(filter_number).play(duration in seconds) ,
    if in STYLE duration is given, the duration in a method PLAY has the greater priority.
    EXAMPLE1 - To apply the filter with occurrence of object:
    devplay0.filters(0).apply()
    devplay0.style.visibility="visible"
    devplay0.filters(0).play()
    EXAMPLE2 - To apply the filter with disappearrance of object:
    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 previous page of records in the connected table.
    object.prevPage()
  60. promt - Shows a window of the invitation on data input with the message and textual field.
    object_window.prompt([message[,value by default]])) .
    EXAMPLE - to show a window for input:
    devr=window.prompt("Enter data","by default")
  61. queryCommandEnabled - Returns "True", if the command of object_textrange is accessible.
    DevBoolean=object_textrange.queryCommandEnabled(command) ,was not checked.
  62. queryCommandIndenterm - Returns "True", if the command has the uncertain status.
    DevBoolean=object.queryCommandIndenterm(command) , was not checked.
  63. queryCommandState - Returns a current condition of a command.
    DevBoolean=object.queryCommandState(command) , was not checked.
  64. queryCommandSupported - Returns "True" if the command is supported.
    Boolean=object.queryCommandSupport(command) , was not checked.
  65. queryCommandText - Returns a string which with works a command.
    DevString=object.queryCommandText(command) ,was not checked.
  66. queryCommandValue - Returns value of a team of the document or object TextRange.
    String=object.queryCommandValue(command) , was not checked.
  67. refresh - Updates contents of the table:
    object_table.refresh() , was not checked.
  68. replace - Loads page from url into a window (frame) replacing the loaded earlier document, method of object LOCATION.
    object_window.location.replace(url) ,
    EXAMPLE - to load in a current window the new document "ac.htm"
    (To carry out an example in the designer it is not recommended as breaks its work):
    window.location.replace("ac.htm")
  69. reload - Updates current page, method of object LOCATION
    object_window.location.reload() ,
    EXAMPLE - to update current page
    (To carry out an example in the designer it is not recommended as the designer is restarted and the created page is lost):
    window.location.reload()
  70. remove - Deletes an element (object) from a collection: areas or options.
    object.remove(number) ,
    EXAMPLE - to remove the first element of the list SELECT:
    devsel.remove(0)

    <SELECT id=devsel>
    <OPTION selected>first
    <OPTION>second
    <OPTION>third</OPTION> </SELECT>
  71. removeAttribute - Deletes attribute on its name from object (tag).
    Dev_Boolean=object.removeAttribute(name[,caseSensitive]) .
    EXAMPLE - at object HR to remove attribute color:
    devr=devra.removeAttribute("color")

    <HR id=devra color=red>
  72. reset - Creates event similar to click of the mouse on the button RESET of object FORM.
    object_form.reset()
  73. scroll - Changes the sizes of object to width x and height y, method of object WINDOW.
    object_window.scroll(x,y)
  74. scrollIntoView - Moves the screen so that the object has appeared:
  75. select - Selects and shows current textual area.
    object_textarea.select() .
    EXAMPLE - to select the text of an example:
    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 attribute, or sets value of attribute "name" in the tag, if "value" is not present the value Null is given.
    object.setAttribute(name[,value]) .
    EXAMPLE - to change value of attribute TITLE of test object:
    devr=devsat.setAttribute("title","Me already have changed!")

    <BUTTON id=devsat title="Me did not change">Test object</BUTTON>
  77. setEndPoint - Moves initial or final points of current textual area "area_1 " to a beginning or end "area_2 ":
    EXAMPLE - to create area from a body, to create a double of this area, from the duplicated area to create area of a code of the button "Test", to expand area of the button to the end of the duplicated area and to show 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 - Sets to a procedure "prog" to be carried out periodically, after given "value_of_miliseconds", by default language JAVASCRIPT, method of object WINDOW.
    timer_ID=object.setInterval(prog,value_of_miliseconds,[,language]).
    EXAMPLE - to cancel the timer and to set the timer dev_interval on performance of the program_name each 10000 miliseconds.
    dev=window.clearInterval(dev_interval)
    dev_interval=window.setInterval("program_name",10000,"VBSCRIPT")
  79. setTimeout - Starts the program each "period_in_miliseconds", after a load of page, by default language JAVASCRIPT, method of object WINDOW.
    Dev_interval=object.SetTimeout(program,period_in_miliseconds,[,language]) , EXAMPLE - to cancel the timer and to set the timer dev_interval on performance of the program_name each 10000 miliseconds, after a load of page.
    dev=window.clearTimeout(dev_interval)
    dev_interval=window.setTimeout("program_name",10000,"VBSCRIPT")
  80. showHelp - Shows a window of the help as dialogue.
    object.showHelp(url[,arguments])
  81. showModalDialod - Opens page in a dialogue window, method of object WINDOW.
    DevVariant=object_window.showModalDialog(url[,arguments[,properties]]) .
    EXAMPLE - to open in a new window "new" the document "ac.htm" as a dialogue window. Variable set properties of a window:
    rem Set or cancellation of property (yes | no), change of values of the sizes in the accepted units of measurements(px,mm,cm):
    devp1="border=thin;" rem The size of a framework of a window thin|thick
    devp2="center=no;" rem Place of a window not at centre of the screen
    devp3="dialogheight=350px;" rem Height of a window
    devp4="dialogleft=100px;" rem Place of a window on a horizontal
    devp5="dialogtop=0px;" rem Place of a window on a vertical
    devp6="dialogwidth=450px;" rem Width of a window
    devp7="font=areal;" rem Font and style of a window by default
    devp8="font-family=Arial;" rem Kind of a font by default
    devp9="font-size=10;" rem The size of a font by default
    devp10="font-style=;" rem Type of a font by default
    devp11="font-variant=;" rem Variant of a font
    devp12="font-weight=;" rem Weight of a font by default
    devp13="help=no;" rem The button help is not present
    devp14="maximize=yes;" rem To show the button maximize
    devp15="minimize=yes" rem To show the button minimize
    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_stop - Start, stop of moving of the running text of tag MARQUEE, methods of the tag MARQUEE.
    object_marquee.start() ,
    object_marquee.stop() .
    EXAMPLE 1 - to stop run of the CONTROL TEXT:
    devmarq.stop()
    EXAMPLE 2 - to start run of the CONTROL 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 work of the dynamic filter (finishes a cycle of transformation of the image before the expiration of time of transition).
    object.filters(number).stop .
    EXAMPLE 1 - to apply the filter with occurrence of "disappearing object", the time of occurrence is given in the tag:
    devplay1.filters(0).apply()
    devplay1.style.visibility="visible"
    devplay1.filters(0).play()
    EXAMPLE 2 - to interrupt transformation of the image of "disappearing object":
    devplay1.filters(0).stop
    EXAMPLE 3 - to apply the filter with disappearrance of "disappearing object ", the time of disappearrance (3 seconds) is given in an 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 - To send the information from the form on the server, analogue of pressing of the button SUBMIT, method of the text FORM.
    object_form.submit()
  85. tags - Creates from a collection a collection by a filtration of the tags on a name(tag_name).
    set dev_new_colltction=dev_old_collection.tags("tag_name") ,
    For example, to create a collection of all objects DIV from all objects:
    set dev_new_colltction=window.document.all.tags("DIV") .
  86. taintEnabled - Always returns value "False", for compatibility with Netscape Navigator, method of object NAVIGATOR.
    DevBoolean=window.navigator.taintEnabled() ,
    EXAMPLE - to show returned value:
    msgbox navigator.taintEnabled()
  87. write - Writes down a string (text and code HTML) in the document in a window " object _ window ", method of object DOCUMENT.
    object_window.document.write(string) .
    EXAMPLE - to open in a new window the document "ac.htm" and to make of it page-greeting:
    set devw=window.open("ac.htm")
    devw.document.write "<"&"html> <"&"head><"&"title> Page-greeting</title></head> <"&"body><h1> By all hi!</h1>After viewing close page. </body></html>"
  88. writeln - Writes down a string (text and code HTML) with addition at the end of a line of return of the carriage, in the document in a window "object_window", method of object DOCUMENT.
    object_window.document.write(string)
    EXAMPLE - to open in a new window the document "ac.htm" and to make of it page-greeting:
    set devw=window.open("ac.htm")
    devw.document.writeln "<"&"html> <"&"head><"&"title> Page-greeting</title></head> <"&"body><h1> By all hi!</h1>Be convinced by viewing HTML of a code, that it is finished by a symbol of carry of a line. Close page after viewing. </body></html>"
  89. zOrder - Sets z-index of a covering of levels.
    object.zOrder([position]) , was not checked.