I need to dynamically change the initial-dir value in <browser> from my FormAPI script. How do I easily do this? I cannot seem to find anything which does a getAttributes on an object, and there doesn't seem to be a documented method to set initial-dir... though this "should" be supported.
I was hoping to find something like:
IWItem.getAttributes()
Example:
// get handle on object
var xitem = IWDatacapture.getItem(CCXPath + '/FlashModule/Link/
@URI');
alert(xitem);
// get type
var xtype = xitem.getType();
alert(xtype);
Basically, I need to get a handle on the initial-dir attribute, check it's value, and set a new value.
Thanks in advance!!!
Jeff