leetking
New Member
Posts: 10
– / /
Joined: Dec 2008
|
O.P. RE: RE: Download a File
code: function OnEvent_DownloadFileComplete(Url, OutFile, Success){
Debug.Trace("Url: " + Url);
Debug.Trace("OutFile: " + OutFile);
Debug.Trace("Success: " + Success);
}
var Url = "http://www.msgpluslive.net/favicon.ico";
MsgPlus.DownloadFile(Url);
This works.
code: Skript wurde angehalten
Skript wird gestartet
Skript wurde geladen und ist bereit
Aufgerufene Funktion: OnEvent_DownloadFileComplete
Url: http://www.msgpluslive.net/favicon.ico
OutFile: C:\DOKUME~1\Manuel\LOKALE~1\Temp\mpscript_343b.tmp
Success: true
But:
code: var Url = "http://www.msgpluslive.net/favicon.ico";
var OutFile = "C:\\ ";
MsgPlus.DownloadFile(Url, OutFile);
doesnt work:
code: Skript wird gestartet
Skript wurde geladen und ist bereit
Aufgerufene Funktion: OnEvent_DownloadFileComplete
Url: http://www.msgpluslive.net/favicon.ico
OutFile: C:\
Success: false
|
|