I'm trying to write a text file containing x, y, z coordinates.
I have the x, y and z coords as dynamic numbers so I was considering using the
[ textfile ] object to write this .txt.
the text ouput needs to read in this fashion:
10.34, 123.0, 134.0
34.2, 234, 22.3
32.3, 543.2, 22.1
where the delimiter can be anything.
So i tried sending the dynamic numbers to this [write /tmp/positions.txt cr ].
Does anyone know how I might be able to write this .txt file?
I've attached my file so you can see.
Thanks!!!!!!!