The ChanScript property holds the value used to build an optional CHANSCRIPT CDF element. When the CDF string for an object that has a ChanScript property is constructed, the property is checked. If it is not null, the <CHANSCRIPT> element is added to the string, with the value of the property set as the contents.
Type
String (VT_BSTR)
Default
Null
Remarks
This element is used by the Mobile Channel channel distribution system to identify an ITEM element that contains an HREF to a Mobile Channel script. The value of the element should specify an ID attribute value for an ITEM element contained within the CHANNEL CDF element.
A complete discussion of this element and its associated functionality is beyond the scope of this documentation. For additional information about XML elements used by the Mobile Channel channel distribution system, see the product documentation and software development kit (SDK).
Example
VBScript
IDispChannel.ChannelScript = "item2"
Set IDispItem = IDispChannel.AddItem
IDispItem.ID = "item2"
IDispItem.HREF="http://someserver/somedir/itemscript.mcs"