• Products
    • Isadora
    • Get It
    • ADD-ONS
    • IzzyCast
    • Get It
  • Forum
  • Help
  • Werkstatt
  • Newsletter
  • Impressum
  • Dsgvo
  • Press
  • Isadora
  • Get It
  • ADD-ONS
  • IzzyCast
  • Get It
  • Press
  • Dsgvo
  • Impressum

Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags

    Sequential Calculator User Actors

    Showcase
    3
    5
    2439
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Woland
      Woland Tech Staff last edited by Woland

      Hello All,

      A while ago I made my first iteration of what I call "Sequential Calculators", and I've since made three more.

      They do exactly what they sound like they do; they calculate in a sequence. Excellent for when you've got a huge amount of Broadcasters and Listeners you need to be able to renumber without doing each individually, also useful for mass MIDI Note On/Off Watcher and/or Send MIDI Note actor numbering (for those using it for MIDI I suggest consulting this MIDI Note/Number/Frequency Chart), generating a series of numbers with regular intervals, and a number of other applications for which they keep being useful. Depending on interest, I might label things in them a bit better, or explain more about how they work, but I think they're pretty self-explanatory right now.

      Under the right circumstances, they can save one a great deal of programming time.

      Note: the "One Octave" versions are modular, and are meant to be "stacked" (as seen in the photo) until you've got the number of outputs you need, and also because the larger ones were a bit unwieldy.

      Sequential Calculator "Family"

      Let me know if you have any questions.

      Best Wishes,

      Woland (Lucas Wilson-Spiro)

      Sequential Calculators.zip

      TroikaTronix Technical Support
      New Support Ticket: https://support.troikatronix.com/support/tickets/new
      Support Policy: https://support.troikatronix.com/support/solutions/articles/13000064762
      Add-Ons: https://troikatronix.com/add-ons/ & https://troikatronix.com/add-ons/?u=woland
      Professional Services: https://support.troikatronix.com/support/solutions/articles/13000109444

      | Isadora Version: all of them | Mac Pro (Late 2013), macOS 10.14.6, 3.5GHz 6-core, 1TB SSD, 64GB RAM, Dual AMD FirePro D700s |

      1 Reply Last reply Reply Quote 0
      • GertjanB
        GertjanB Beta Platinum last edited by

        Hi,

        I think there is also a possibility to do it with a javascript actor.
        This allows you to put as many as you want an you dont have to change it every time
        This is the code:

        /* input 1: first channel

        input 2: step

        input 3: number of outputs*/

        function main()

        {

        var array = [];

        array[0]= arguments[0];

        for (i = 1; i < arguments[2]; i++) { 

            array[i]=array[i-1] + arguments[1];

        }

        return array;

        }

        www.gertjanbiasino.be

        Woland 1 Reply Last reply Reply Quote 1
        • Woland
          Woland Tech Staff @GertjanB last edited by

          @GertjanB  Thanks. I really should dive into Java...

          TroikaTronix Technical Support
          New Support Ticket: https://support.troikatronix.com/support/tickets/new
          Support Policy: https://support.troikatronix.com/support/solutions/articles/13000064762
          Add-Ons: https://troikatronix.com/add-ons/ & https://troikatronix.com/add-ons/?u=woland
          Professional Services: https://support.troikatronix.com/support/solutions/articles/13000109444

          | Isadora Version: all of them | Mac Pro (Late 2013), macOS 10.14.6, 3.5GHz 6-core, 1TB SSD, 64GB RAM, Dual AMD FirePro D700s |

          1 Reply Last reply Reply Quote 0
          • Woland
            Woland Tech Staff last edited by

            @Maximortal

            One of these User Actors or the Javascript option should be quite the time-saver in adding more octaves to your theremin.

            TroikaTronix Technical Support
            New Support Ticket: https://support.troikatronix.com/support/tickets/new
            Support Policy: https://support.troikatronix.com/support/solutions/articles/13000064762
            Add-Ons: https://troikatronix.com/add-ons/ & https://troikatronix.com/add-ons/?u=woland
            Professional Services: https://support.troikatronix.com/support/solutions/articles/13000109444

            | Isadora Version: all of them | Mac Pro (Late 2013), macOS 10.14.6, 3.5GHz 6-core, 1TB SSD, 64GB RAM, Dual AMD FirePro D700s |

            1 Reply Last reply Reply Quote 0
            • Maximortal
              Maximortal last edited by

              definitely I have to implement it...by this way I can also add some features like tune changing and so one

              Iro Suraci | Win 10 - Ryzen 3600 - 32GB - nVidia gtx 960 4gb / Win 10 - i5 4210U - 8 GB - R5 M230 | Isadora 3.0.7| Located in Brescia, Italy

              1 Reply Last reply Reply Quote 1
              • First post
                Last post