<object>

Invokes a platform-specific object.

Syntax

<object
    archive = "CDATA"
    classid = "CDATA"
    codebase = "CDATA"
    codetype = "CDATA"
    cond = "CDATA"
    data = "CDATA"
    expr = "CDATA"
    fetchaudio = "URI"
    fetchhint = "{prefetch | safe}"
    fetchtimeout = "CDATA"
    name = "identifier"
    type = "CDATA"
/>

Attributes

Attribute

Data Type

Required?

Default

Description

archive

CDATA

no

NA

Currently not supported.

classid

CDATA

no

NA

URI specifying the location of the object's implementation.

codebase

CDATA

no

NA

Currently not supported.

codetype

CDATA

no

NA

Currently not supported.

cond

CDATA

no

NA

Boolean expression that must evaluate to ECMAScript true for the <object> element to execute.

data

CDATA

no

NA

Currently not supported.

expr

CDATA

no

NA

Initial value of the form item variable.

fetchaudio

URI

no

NA

Currently not supported.

fetchhint

{prefetch | safe}

no

NA

Currently not supported.

fetchtimeout

CDATA

no

NA

Currently not supported.

name

identifier

no

ECMAScript undefined

Name of the object variable. This must be a legal ECMAScript identifier.

type

CDATA

no

NA

Currently not supported.

Parents

<form>

Children

<audio>, <catch>, <enumerate>, <error> , <filled>, <noinput>, <help>, <nomatch>, <param>, <prompt>, <property>, <value>

Example

<?xml version="1.0" encoding="utf-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-GB">
    <form id="playDTMF">
         <object name="objDtmf1" classid="com.vision.DtmfGenerator">
             <param name="dtmfstring" value="1"/>
         </object>
    
</form>
</vxml>

See Also

<form>, <param>