You could get the values into a list, convert it to a string and then save that
Names Default To Here(1);
dt = New Table("Untitled",
Add Rows(3),
Compress File When Saved(1),
New Column("Col",
Character,
"Nominal",
Set Values({"#title=\!"\!"", "#tooltip=\!"[\!",2052", "#icon=\!"I:\ABC\!\[.ico\!""})
)
);
vals = dt[0, 1];
str = Concat Items(vals, "\!N");
Save Text File("$TEMP/test.txt", str);
wait(0);
Web("$TEMP/test.txt");
-Jarmo