I need to save the states of an arbitrary number of objects in the same family between layouts (I do not wish to make all the objects global). From what I can tell, an INI object is best suited to this purpose, is this correct? If so what is correct way to store and retrieve the data from the INI file?
Storing:
For each object of type family
->ini write (data type) [group name] [item name] value
For each of that objects private variables?
This seems to only be writing one object of each family to the file.
How would I restore the data to the proper objects when returning to a layout (I am using system create by name)?
If there is a better way, please let me know.
Some quick examples would be very helpful � I did read the wiki but it did not go into any depth.
Thank you.