Where can I find some type opf documentation about the Javascript API for Topstyle?
is the system.JS have all the api calls?
The only ones I have found so far are:
function objectTag()
function initUI()
function onOK()
document.forms[0] Maybe????
ts.hasSelection()
ts.getSelection() -> ts.getSelection(false, true) -> what do the parameters do?
ts.isASP_VB()
ts.showPopupMenu() -> example usage?
ts.showPopupMenu(document.forms[0].type.value, 'Application,Database,Template,Object,Synchronization,MissingInclude,Expression,Lock,Any')
ts.isXHTML()
ts.browseForFileURL()
ts.getCharSet()
ts.getDocumentDOM()
ts.getImageSize()
ts.hasParent()
ts.urlEncode()
ts.isPHP()
Some functions that I think can be reused
function getDOM() {
if (!DOM)
DOM = ts.getDocumentDOM();
return DOM;
}


