AB,
It won't save data stored in methods or extensions, for example LDList.
Can you create a small example code that doesn't work.
This is my test case:
It won't save data stored in methods or extensions, for example LDList.
Can you create a small example code that doesn't work.
This is my test case:
Code:
a = 1
b = Math.Pi
c = "Hello world"
d[1] = a
d[2] = b
e[c][1] = 25
f[b][c] = "Something else"
path = File.GetSettingsFilePath()
LDFile.SaveAllVariables(path)
a = ""
b = ""
c = ""
d = ""
e = ""
f = ""
LDFile.LoadAllVariables(path)
TextWindow.WriteLine(a)
TextWindow.WriteLine(b)
TextWindow.WriteLine(c)
TextWindow.WriteLine(d[1])
TextWindow.WriteLine(d[2])
TextWindow.WriteLine(e[c][1])
TextWindow.WriteLine(f[b][c])