Altova Authentic 2024 Desktop

As a simple example of how to automate some tasks, we add a button to the page:

 

<input type="button" value="Open" onclick="BtnOpen()">

When clicked, a predefined document will be opened in the AuthenticDesktopControl. The MakeAbsolutePath method creates an absolute path using the location of the script as a base path.

 

function BtnOpen()
{
  if(strPath.value.length > 0)
  {
    var absolutePath = MakeAbsolutePath(strPath.value);
    var objDoc = objAuthenticDesktopControl.Open(absolutePath);
    if (objDoc == null)
        alert("Unable to locate " + absolutePath + " at: " + objAuthenticDesktopControl.BaseHref);
  }
  else
  {
     alert("Please set path for the document first!");
     strPath.focus();
  }
}

© 2017-2023 Altova GmbH