I know it's old but I was looking for suceh stuff.
Currently busy with a small table wher I can modify some character lights.
But I want to first save the addresses and their value before any changes.
Then write them back when I finish.
So, I presume a ReadFromClipboard and a write for evey al.value
Yeah, you can definitely do the reverse. Just read the file line by line and assign each value to your address list entries. Example:
local al = getAddressList()
local file = io.open("C:\\path\\to\\values.txt", "r")
if file then
for i = 0, al.Count - 1 do
local val = file:read("*l")
if not val then break end
al[i].Value = val
end
file:close()
end
That’ll load values from the text file (top to bottom) into your address list.
All times are GMT - 6 Hours Goto page Previous1, 2
Page 2 of 2
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum