No internet connection
  1. Home
  2. How to

show automation line

By erichamo @erichamo
    2020-11-15 11:07:44.246Z

    Good Morning,
    I have this script to show the automation lines :( sf.ui.proTools.selectedTrack.children.whoseTitle.is('Show/hide automation lanes').first.elementClick(); ), but this works one track at a time.

    Is there a script that shows me the automation lines of more tracks selected at the same time?

    Please can anyone help me?

    Thanks
    Federico

    Solved in post #2, click to view
    • 3 replies
    1. samuel henriques @samuel_henriques
        2020-11-15 13:08:34.869Z

        hello @erichamo,
        there might be a proper way to to this without using "relative possition", but this work for me,
        it only works if track hight is "small" or larger

            sf.ui.proTools.selectedTrack.children.whoseRole.is("AXDisclosureTriangle").whoseTitle.is('Show/hide automation lanes').first.mouseClickElement({
            relativePosition: {"x":6,"y":6},
            isShift: true,
            isOption: true,
        });
        
        Reply1 LikeSolution
        1. Eerichamo @erichamo
            2020-11-15 14:58:08.295Z

            Hi Samuel,
            Your script worksssss thanks, that's what i was looking for.

            thank you so much.

            1. samuel henriques @samuel_henriques
                2020-11-15 15:04:20.313Z

                Cool, happy to help!