No internet connection
  1. Home
  2. Ideas

Had the idea today to make a Surface for my dell touchscreen - it works so well.

By Kris Crunk @Kris_Crunk
    2020-12-12 05:44:28.161Z2020-12-12 05:58:52.125Z

    Still a work in progress but really happy with how it’s working. And the fact I can use a mouse or my finger on my main screen is really going to speed up my work flow. Thank you for all the work so many of you have put into writing code and teaching us all how to do this.

    • 26 replies

    There are 26 replies. Estimated reading time: 9 minutes

    1. Holy shit that's so cool!! Thank you for sharing, Kris!

      1. In reply toKris_Crunk:

        This is pretty darn slick!
        Nice work!

        1. In reply toKris_Crunk:

          @JesperA I have a feeling you'll like this :)

          1. Now we are talking

          2. In reply toKris_Crunk:

            Nice. Looks amazing Kris!
            Awesome to see others work with Surfaces.

            1. Kris Crunk @Kris_Crunk
                2020-12-14 03:54:59.544Z

                Thanks! I’m excited to fine tune things now and get things set up just right over the next few weeks of working. I feel like I have pro tools superpowers now.

                1. @Kris_Crunk – do you have an Instagram profile? Would you be ok with us sharing your pictures on our social media?
                  Feel free to contact me on christian@soundflow.org to discuss :)

                  1. I'm sure our SoundFlow User Group on Facebook would also love to see it :)

                    1. Kris Crunk @Kris_Crunk
                        2020-12-14 14:11:46.362Z

                        Email sent!

                2. In reply toKris_Crunk:
                  Kris Crunk @Kris_Crunk
                    2020-12-14 15:17:04.577Z

                    One thing I've encountered, that is an easy fix, is after I click on my main mac suface for somethings like "Save Track Preset" I had to click back into Protools (out of streamflow) to hit Ok, I couldn't just hit OK with the enter button - So I've just been adding "Activate Protools main window" at the end of my macros. Works perfectly.

                    1. M
                      In reply toKris_Crunk:
                      Michael Keeley @Michael_Keeley
                        2021-02-08 06:40:56.890Z

                        @Kris_Crunk
                        Kris this looks incredible, nice work!
                        I just transferred over to the 12” iPad would it be possible to get a closer pic of how you have the buttons laid out on your iPad. Would love to get some other ideas!

                        Also have you guys figured out a way to toggle the color of a button for ex on and off or mute and unmute?

                        Thx!

                        1. Kris Crunk @Kris_Crunk
                            2021-02-09 03:06:32.806Z

                            Here are some close ups of my surfaces. Still works in progress - I'm taking notes each day on how I can make it better.
                            It's so quick to change my main touch screen that i did one for mix setup and a few other things I don't use everyday.

                            I do programmging and composing more than I mix/edit, but I like have everything ready to go for both things.

                            The big ipad is more cluttered than I'd like so I'm working on a few other ideas.

                          • M
                            In reply toKris_Crunk:
                            Michael Keeley @Michael_Keeley
                              2021-02-09 19:02:53.731Z

                              Looks incredible, nice job!!

                              Is the ipad layout for ex DM-307 RMX etc creating inserts or show and hide markers/tracks? Love that Omnisphere gets a bigger button. I'd do the same!!

                              1. Kris Crunk @Kris_Crunk
                                  2021-02-09 19:08:27.668Z

                                  Those buttons will create a new instrument track - load the plug in OR, for instance, load all my strings/verbs routed - same with drums - I'm using Protools track presets to do it. Also added a script to put the track in record so I can go right to work.

                                  1. MMichael Keeley @Michael_Keeley
                                      2021-02-09 19:58:40.070Z

                                      Great work! I keep mine inactive then do markers to show and hide then activate when needed. I'm just starting to set mine up. needs a lot of work but here is my composing page so far. Wish the buttons could toggle the color for open closed on off etc...

                                      1. Kris Crunk @Kris_Crunk
                                          2021-02-09 20:00:14.101Z

                                          Sweet - Looks good!

                                          1. In reply toMichael_Keeley:
                                            Kris Crunk @Kris_Crunk
                                              2021-02-11 05:20:26.709Z

                                              So yeah, I just updated my mixing plugs and my audiosuite surface

                                              1. MMichael Keeley @Michael_Keeley
                                                  2021-02-11 05:25:04.810Z

                                                  Nice! Did you do that with a 2nd image under a transparent button? That’s the only way I could get it to work...

                                                  1. Kris Crunk @Kris_Crunk
                                                      2021-02-11 05:27:05.147Z

                                                      I am hosting those icons on my website and using a URL for each button.

                                                      But your idea isn’t a bad one.

                                                      1. MMichael Keeley @Michael_Keeley
                                                          2021-02-11 18:01:40.271Z

                                                          Hey @Kris_Crunk Do you mind sharing the script that you have that creates a track with insert and send settings baked in. I'd love to try out. Great idea! Once it comes up in the session are you able to tell where it should go with in the session for ex put it in the Perc Loops sub Folder?

                                                          thx

                                                          1. Kris Crunk @Kris_Crunk
                                                              2021-02-11 18:12:03.817Z

                                                              Everything is baked into the track preset - So set it up how you need it to be output wise etc.
                                                              you could add more code to put it into a folder. Take a look a Raphael's macros for that.

                                                              You have to change the paths to match your presets - and bty this isn't my code I found it on a forum I think. If you don't want it to automatiaclly be in record nuke the last two lines of this.

                                                              
                                                              sf.ui.proTools.appActivateMainWindow();
                                                              
                                                              sf.ui.proTools.menuClick({ menuPath: ["Track", "New..."] });
                                                              
                                                              newTracksWin.elementWaitFor();
                                                              
                                                              // Change path here
                                                              newTracksWin.popupButtons.allItems[1].popupMenuSelect({
                                                                  menuPath: ["Track Presets", "Avid", "etc",],
                                                              });
                                                              // And here
                                                              newTracksWin.popupButtons.first.popupMenuSelect({
                                                                  menuPath: ["Track Preset Name"],
                                                              });
                                                              
                                                              newTracksWin.buttons.whoseTitle.is('Create').first.elementClick();
                                                              
                                                              newTracksWin.elementWaitFor({ waitType: "Disappear" });
                                                              
                                                              sf.wait({ intervalMs: 500 })
                                                              
                                                              sf.ui.proTools.selectedTrack.buttons.whoseTitle.is("Track Record Enable").first.elementClick();
                                              2. D
                                                In reply toKris_Crunk:
                                                David Feldstein @David_Feldstein
                                                  2023-02-16 23:52:30.830Z

                                                  I want to do this so badly!!! How did you get SoundFlow onto the touchscreen? How do you point the app to the device...?? I have 2 Dell touchscreen monitors and I'd LOVE to do this!!

                                                  1. DDavid Feldstein @David_Feldstein
                                                      2023-02-16 23:54:22.723Z

                                                      do you have to be running Protools on a PC? I believe the Mac cannot use touch screen features...

                                                      1. Kris Crunk @Kris_Crunk
                                                          2023-02-24 22:28:08.023Z

                                                          I’m using a Mac - I use the software touch base updd