Hi,
I'm currently working on an application that uses various KuneriLite plugins. The GPS works ok.
Now, I'm trying to do an updated log (txt or xml) and the plugin is not working.
Here is the according code:
function createLogFile():Void{
loadVariables("
http://127.0.0.1:1001/Basic/file?klCommand=create&klPath=files\\log.txt&", "", "POST");
}
function writeLog(dataToWrite):Void{
loadVariables("
http://127.0.0.1:1001/Basic/file?klCommand=append&klPath=files\\log.txt&klData="+dataToWrite+"&", "", "POST");
}
I tried also the File Plugin Example and it never stops loading. Do you have any idea of what may be wrong?
Regards