By Andrew Sherman @Andrew_Sherman
What's the best way to get SoundFLow working with data in spreadsheets/databases? Is there a way of making SF read/write the data in the file (without having to simulate keystrokes to navigate from cell to cell)?
Thinking of using something like a CSV file.
- AAndrew Sherman @Andrew_Sherman
I figured it out, I can create and update csv files and use javascript to separate the variables using the commas. From there I can get the data use as I need.
var path = 'userpathgoeshere';
var contents = sf.file.readText({path}).text;
log (contents)