webguy22
Member
Code:
function DemoCallback(content) {
alert("DemoCallback");
alert(content);
}
function clearFolders(oForm) {
exeoutput.GetHEScriptCom('hescript://UserMain.GetHTMLPath',DemoCallback);
}
Code:
function GetHTMLPath: String;
Begin
MessageBox("Start GetHTML Path","Test",MB_OK);
Result := GetCurrentHTMLPagePath();
MessageBox(Result, "path", MB_OK);
Anybody see why this would not work?