quote:
Originally posted by whiz
It seems that none of the events work. Any ideas?
this should do the trick
JScript code:
var Wnd = MsgPlus.CreateWnd("InterfaceTest.xml", "WndTest");
var browser = Wnd.Browser_GetInterface("browser");
(function(Browser) {
function Browser::DocumentComplete(){
}
function Browser::NavigateComplete2(pDisp, URL){
Debug.Trace(URL);
}
function Browser::TitleChange(sText){
}
function Browser::DownloadBegin(){
}
function Browser::ProgressChange(nProgress, nProgressMax){
}
})(browser);
browser.Navigate2("http://www.google.com");
// browser.GoHome();
As for keeping track of the history list you could manually do it using the appropriate event