No internet connection
  1. Home
  2. How to

SoundFlow reading and writing data from a spreadsheet

By Andrew Sherman @Andrew_Sherman
    2021-06-21 11:29:40.113Z

    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.

    Solved in post #2, click to view
    • 1 replies
    1. A
      Andrew Sherman @Andrew_Sherman
        2021-06-21 12:15:22.907Z

        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)

        Reply1 LikeSolution