//get path thư mục Document\iMacros
function getiMacrosFile(){
return imns.Pref.getFilePref('deflogpath').path;
}
// append text to file (file ở trong Document\iMacros)
function save_logs(logFilePath, data) {
var logs = data;
logs = logs + '\n';
var file_o =...