|
One of the commands in the Save menu.
You can choose this command after selecting one or more objects.
The Objects window will ask you for a file name. After you click OK, the objects will be written to a text file on disk.
If you selected a single object, e.g., of type Pitch, the file will start with the lines:
File type = "ooTextFile"
Object class = "Pitch"
After this, the pitch data will follow.
File type = "ooTextFile"
Object class = "Collection"
size = 2
item []:
item [1]:
class = "Pitch"
name = "hallo"
(pitch data...)
item [2]:
class = "Polygon"
name = "kromme"
(polygon data...)
The file can be read again with Read from file..., which, by the way, does not need the verbosity of the above example. The following minimal format will also be read correctly:
"ooTextFile"
"Collection" 2
"Pitch" "hallo" (pitch data...)
"Polygon" "kromme" (polygon data...)
Thus, all text that is not a free-standing number and is not enclosed in double quotes or < >, is considered a comment, as is all text following an exclamation mark (“!”) on the same line.
© ppgb 20110129