I did a quick test:
--
on beginSprite me
sprite(me.spriteNum).Navigate("
end
on CommandStateChange Command, Enable
put("CommandStateChange:" && "Command:" && Command & "," && "Enable:" && Enable)
end CommandStateChange
on NavigateComplete2 pDisp, URL
put("NavigateComplete2:" && "pDisp:" && pDisp & "," && "URL:" && URL)
end DocumetComplete
on DownloadBegin
put("DownloadBegin")
end DownloadBegin
--
This generated following messages:
-- "DownloadBegin"
-- "CommandStateChange: Command: 2, Enable: 0"
-- "CommandStateChange: Command: 1, Enable: 0"
-- "DownloadBegin"
-- "CommandStateChange: Command: 2, Enable: 0"
-- "CommandStateChange: Command: 1, Enable: 0"
-- "CommandStateChange: Command: 2, Enable: 0"
-- "CommandStateChange: Command: 1, Enable: 0"
-- "CommandStateChange: Command: -1, Enable: 0"
-- "NavigateComplete2: pDisp: Microsoft Web Browser Control, URL:
-- "CommandStateChange: Command: -1, Enable: 0"
Hope you can utilise this info!