Dont bump! (at least not after a few hours) Be patient
I´m not sure if you can store two single lists in one RAF file in the way you do.
You can save each list into it´s own RAF file.
Or you can use a map to hold both lists and write the map to RAF.
Sub write
raf.Initialize(File.DirRootExternal, "Init.txt", False)
dim m as Map
m.initialize
m.put("List1",list1)
m.put("List2",list2)
raf.Writeb4xobject(m,1)
raf.close
End Sub
And do the opposite to read. Get the map from RAF. Get list1 and list2 from the Map. Note that you can use the Map to store more than just the lists... all into the same Object.