Synchronously downloading issue.
Hi, Should the following code (the send method) be executed synchronously because of the false on the open method? This seem to be asynchronouse reguardless of weather or not you put a true or false on the open() method.
// Find the WPFe control
wpfeControl = document.getElementById("WPFeImageBrowser" );
var downloader = wpfeControl.createObject("downloader" );
downloader.open(
"GET","ImageCanvas.xaml",false );downloader.send();

