Synthetech

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 70 total)
  • Author
    Posts
  • in reply to: Send simple CC# value when changing tabs. #69567
    Synthetech
    Participant
      • Topics: 13
      • Replies: 70
      • Total: 83

      well I managed to dig in again and think I figured it out…


      — Called when the current tab in an uiTabs component is changed

      timbreSelect = function(mod, tabIndex)
      selectTimbre1 = {0xB0; 0x5F, 0x00}
      selectTimbre2 = {0xB0; 0x5F, 0x7F}
      selectTimbreSync = {0xB0; 0x5F, 0x01}

      if tabIndex==0 then
      panel:sendMidiMessageNow(CtrlrMidiMessage(selectTimbre1))

      elseif tabIndex==1 then
      panel:sendMidiMessageNow(CtrlrMidiMessage(selectTimbre2))

      elseif tabIndex==2 then
      panel:sendMidiMessageNow(CtrlrMidiMessage(selectTimbreSync))

      end
      end

      seems to output the CC msg as needed.. now I just need to verify it on the microKorg soon.
      I’m not sure if the above code is the most efficient, but it does appear to work.

      in reply to: Ctrlr – Step by step guide #69085
      Synthetech
      Participant
        • Topics: 13
        • Replies: 70
        • Total: 83

        I’ve got a fairly good understanding how to use dasfaker’s graphical ADSR and ADBSSR envelope generators if you need help with them.
        The ADBSSR he made was actually done for one of my projects, then I had to figure out how to make three of them.. DCO1, DCO2 & a VCF set of EG’s… all inside their own tabs.

        in reply to: TX7/MKs-80 issue #69056
        Synthetech
        Participant
          • Topics: 13
          • Replies: 70
          • Total: 83

          What I was trying to say earlier.. it sounds like you would benefit by getting an additional MIDI interface like a M Audio Uno USB or some other simple USB interface.. Good one, not one of those no name eBay units.

          Then you could pick extra ports to use your keyboard on, etc.

          Pretty sure you can get a decent one used on eBay for about $20 USD

          in reply to: TX7/MKs-80 issue #69032
          Synthetech
          Participant
            • Topics: 13
            • Replies: 70
            • Total: 83

            what are you using for a keyboard?

            some of my MIDI interfaces can be MIDI OUT and THRU at the same time via the OUT.

            Check into the MIDI settings of Ctrlr

            have you tried setting up “Controller” with another MIDI device input as your keyboard?

            in reply to: TX7/MKs-80 issue #69028
            Synthetech
            Participant
              • Topics: 13
              • Replies: 70
              • Total: 83

              hi chris,

              are you trying to use just the standalone instances to control the problematic synths? If not, I would suggest start with those, then move on to using with a DAW.

              Do you have some more info for us? Like how you have your MIDI setup, screenshots of your setups, etc?

              As for your MIDI IN/OUT use for the TX7.. the easiest thing I would try to do is use a separate USB midi interface for the TX. But I have like six USB’s around in the form of keyboard controllers, couple of USB jacks a knobby controller and a MOU MIDI patchbay..
              If you dont have more than one USB MIDI interface, I would highly recommend you look into investing into another one or two to make your MIDI world much easier to manage 😉

              in reply to: Ctrlr – Step by step guide #69023
              Synthetech
              Participant
                • Topics: 13
                • Replies: 70
                • Total: 83

                very nice!

                this has already helped me a few times to figure out some things.
                thanks so much for your work 🙂

                this should be stickied up somehow…

                in reply to: Problems with sliders hiding behind images.. #69015
                Synthetech
                Participant
                  • Topics: 13
                  • Replies: 70
                  • Total: 83

                  well I figured out what I done wrong..

                  I had the image sitting on top of the tab instead of setting it only as the background.. actually in that first attachement I have both the background of the tab pointed at my Timbre-1 image AND I had another Timbre-1 image on top of that, THEN the knobs..
                  Deleted the extra image and the tabs background appeared below with the knobs playing nicely now.. as seen in the updated attachment below..

                  Attachments:
                  You must be logged in to view attached files.
                  in reply to: Help script a microKorg panel… #68999
                  Synthetech
                  Participant
                    • Topics: 13
                    • Replies: 70
                    • Total: 83

                    Thank you goodweather for the links and advice on where to search for answers.
                    Lots of good stuff there… It will take a bit of study to get my head around how it works and how to make it work for my Korg.

                    in reply to: AKAI S2000 #68924
                    Synthetech
                    Participant
                      • Topics: 13
                      • Replies: 70
                      • Total: 83

                      wow that does look nice!

                      kinda wish I had kept my S2000 now..

                      Pascalc, I was trying to find a way to contact you about the TX7 panel you helped script.. I am looking for some pointers to fetch patch dumps from microKorg, edit the dump with modulator values and other called methods, then send the dump back for edits that require a total dump write back to the korg.

                      if you are still around, I sure could use some help to adapt your scripts for my needs.. I like how streamlined your code is 🙂

                      in reply to: Help script a microKorg panel… #68917
                      Synthetech
                      Participant
                        • Topics: 13
                        • Replies: 70
                        • Total: 83

                        Thanks for the reply goodweather.

                        I have managed to hook up Korg’s editor so that it sends MIDI OUT via a UNO MIDI interface.. that OUT is plugged into the IN on my Ozonic Keyboard’s MIDI IN.. then I have the Ozonic’s OUT (acting as a THRU) patched to the uKorg’s MIDI IN.. then the uKorg’s MIDI OUT goes back to the UNO interface.

                        The Ozonic interface is used in Bome’s “SendSX” so I can see live what the uKorg editor is sending out each time I change a parameter, which of course is an entire patch dump.
                        I also found it useful to have my dual screen setup with the SendSX stretched across both screens so I can see the entire dump in one line.

                        The uKorg MIDI Implimentation PDF manual does show the structure of a dump, but I think they have some errors.. the bytes don’t seem to align properly, but at least they spell out bitwise what is going on when they cram more than one parameter into a single byte.
                        So when I go and use a byte that has more than one parameter in it, I will have to do a bitwise operation to extract the value for each parameter.. should be simple enough in LUA to shift the bits…

                        I have not had a chance yet to find an example panel to find what I need to do, but it seems I need this to happen..
                        Panel can tell uKorg to select a patch..
                        loads patch up in the uKorg AND fetches that patches DUMP.
                        The DUMP info is used to set all the modulator values… now you can see what each value is before you tweak a control.

                        Now here is the tricky part (to me it seems tricky..). The panel can be used to send CC’s/NRPM’s to change values on the fly. BUT, when I want to change a value that requires an entire dump sent back to the uKorg.. I guess I need a method that will: fetch the current patch information, alter the byte in the dump I’m after to change, then resend the dump back to the uKorg.
                        Know of any panels that do that??

                        in reply to: please help with ADSR graphics #20524
                        Synthetech
                        Participant
                          • Topics: 13
                          • Replies: 70
                          • Total: 83

                          thanks dasfaker for the help.

                          I found that actually it has to be “repaint:repaint()” in order for it to work.

                          I managed to fumble my way to getting the 2nd and now 3rd EG waveforms to work.

                          are scripts case sensitive?
                          say when you getModulatorValue “BreakPoint3″… that Capitol P must be also capitolized in that slider’s name I am accessing?
                          I had issue with the 3rd EG, and noticed the name had the P capitolized, but the script did not.. as soon as I put a P in place of p, it began to work.

                          in reply to: linking a control in FL studio 11? #19964
                          Synthetech
                          Participant
                            • Topics: 13
                            • Replies: 70
                            • Total: 83

                            thanks for trying to help zeoka

                            I will have to try it in a vst plugin later when I get home

                            in reply to: linking a control in FL studio 11? #19948
                            Synthetech
                            Participant
                              • Topics: 13
                              • Replies: 70
                              • Total: 83

                              I tried to make a overrides file to the same folder as my Ctrlr-Win32.exe file.. named it the same… Ctrlr-Win32.overrides

                              Anyway, I made the new overrides file,named it Ctrlr-Win32.overrides, placed it in the same folder as my Ctrlr-Win32.exe and what ended up happening is Ctrlr would crash when opened!

                              It made a text error log…
                              (trying to open Ctrlr w/out any panels opening up.. just blank)

                              **********************************************************
                              Ctrlr debug log
                              Log started: 26 Feb 2014 9:44:38am

                              [INFO ][09:44:38:000454]: CtrlrLuaManager::ctor, lua is disabled
                              [WARN ][09:44:39:000510]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000612]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000653]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000669]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000686]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000733]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000758]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000825]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000866]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000905]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000933]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000958]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:39:000988]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000017]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000100]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000180]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000272]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000322]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000384]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000444]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000555]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000614]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000662]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000727]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000767]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000792]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000823]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000849]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000879]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:40:000950]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000012]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000112]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000168]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000226]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000257]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000325]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000380]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000425]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:41:000471]: Panel scheme is old or not defined, unexpected results may occur
                              [LUA ERR ][09:44:41:000531]: CtrlrPanel::setGlobalVariable index out of bounds(95773728)
                              [LUA ERR ][09:44:41:000594]: CtrlrPanel::setGlobalVariable index out of bounds(96711200)
                              [LUA ERR ][09:44:41:000684]: CtrlrPanel::setGlobalVariable index out of bounds(96865312)
                              [LUA ERR ][09:44:41:000713]: CtrlrPanel::setGlobalVariable index out of bounds(96975392)
                              [LUA ERR ][09:44:41:000742]: CtrlrPanel::setGlobalVariable index out of bounds(96997408)
                              [LUA ERR ][09:44:41:000764]: CtrlrPanel::setGlobalVariable index out of bounds(95763488)
                              [LUA ERR ][09:44:41:000794]: CtrlrPanel::setGlobalVariable index out of bounds(95785504)
                              [LUA ERR ][09:44:41:000820]: CtrlrPanel::setGlobalVariable index out of bounds(95939616)
                              [LUA ERR ][09:44:41:000854]: CtrlrPanel::setGlobalVariable index out of bounds(96093728)
                              [INFO ][09:44:41:000880]: CtrlrLuaManager::ctor, lua is disabled
                              [WARN ][09:44:42:000258]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000298]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000328]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000353]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000388]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000409]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000439]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000465]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000499]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000520]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000550]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000576]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000606]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000643]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000673]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000699]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000728]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000765]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000795]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000821]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000851]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000888]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000917]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000943]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000973]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:42:000999]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000035]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000141]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000211]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000285]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000355]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000407]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000471]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000511]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000552]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000577]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000607]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000640]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:44:43:000674]: Panel scheme is old or not defined, unexpected results may occur
                              [LUA ERR ][09:44:43:000709]: CtrlrPanel::setGlobalVariable index out of bounds(64)
                              [INFO ][09:44:46:000752]: Update check disabled

                              **********************************************************
                              Ctrlr debug log
                              Log started: 26 Feb 2014 9:45:01am

                              [INFO ][09:45:01:000613]: CtrlrLuaManager::ctor, lua is disabled
                              [WARN ][09:45:02:000666]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:02:000879]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:02:000979]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000011]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000034]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000067]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000113]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000146]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000179]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000201]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000234]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000257]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000290]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000313]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000345]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000379]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000412]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000435]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000468]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000502]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000535]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000557]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000590]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000624]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000657]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000680]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000712]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000735]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000768]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000791]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000824]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000847]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000879]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000902]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000935]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:03:000992]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:04:000080]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:04:000170]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:04:000250]: Panel scheme is old or not defined, unexpected results may occur
                              [LUA ERR ][09:45:04:000328]: CtrlrPanel::setGlobalVariable index out of bounds(97477664)
                              [LUA ERR ][09:45:04:000412]: CtrlrPanel::setGlobalVariable index out of bounds(98415136)
                              [LUA ERR ][09:45:04:000472]: CtrlrPanel::setGlobalVariable index out of bounds(98569248)
                              [LUA ERR ][09:45:04:000503]: CtrlrPanel::setGlobalVariable index out of bounds(98679328)
                              [LUA ERR ][09:45:04:000527]: CtrlrPanel::setGlobalVariable index out of bounds(98701344)
                              [LUA ERR ][09:45:04:000554]: CtrlrPanel::setGlobalVariable index out of bounds(97467424)
                              [LUA ERR ][09:45:04:000583]: CtrlrPanel::setGlobalVariable index out of bounds(97489440)
                              [LUA ERR ][09:45:04:000615]: CtrlrPanel::setGlobalVariable index out of bounds(97643552)
                              [LUA ERR ][09:45:04:000639]: CtrlrPanel::setGlobalVariable index out of bounds(97797664)
                              [INFO ][09:45:04:000674]: CtrlrLuaManager::ctor, lua is disabled
                              [WARN ][09:45:04:000994]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000073]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000138]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000173]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000204]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000228]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000260]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000284]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000310]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000340]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000371]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000395]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000427]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000462]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000493]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000518]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000549]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000573]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000605]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000629]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000660]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000684]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000716]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000740]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000771]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000796]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000827]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000851]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000883]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000907]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000938]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000963]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:05:000994]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:06:000019]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:06:000050]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:06:000075]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:06:000139]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:06:000175]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:06:000206]: Panel scheme is old or not defined, unexpected results may occur
                              [LUA ERR ][09:45:06:000233]: CtrlrPanel::setGlobalVariable index out of bounds(64)

                              **********************************************************
                              Ctrlr debug log
                              Log started: 26 Feb 2014 9:45:07am

                              [INFO ][09:45:07:000218]: CtrlrLuaManager::ctor, lua is disabled
                              [WARN ][09:45:08:000398]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000489]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000520]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000545]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000575]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000600]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000631]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000656]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000687]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000723]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000753]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000778]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000809]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000834]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000876]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000901]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000931]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000957]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:08:000998]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000023]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000054]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000079]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000178]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000212]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000243]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000268]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000299]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000335]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000366]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000390]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000421]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000457]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000488]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000588]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000666]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000785]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000845]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000900]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:09:000952]: Panel scheme is old or not defined, unexpected results may occur
                              [LUA ERR ][09:45:10:000076]: CtrlrPanel::setGlobalVariable index out of bounds(98591776)
                              [LUA ERR ][09:45:10:000175]: CtrlrPanel::setGlobalVariable index out of bounds(99529248)
                              [LUA ERR ][09:45:10:000297]: CtrlrPanel::setGlobalVariable index out of bounds(99683360)
                              [LUA ERR ][09:45:10:000370]: CtrlrPanel::setGlobalVariable index out of bounds(99793440)
                              [LUA ERR ][09:45:10:000419]: CtrlrPanel::setGlobalVariable index out of bounds(99815456)
                              [LUA ERR ][09:45:10:000494]: CtrlrPanel::setGlobalVariable index out of bounds(98581536)
                              [LUA ERR ][09:45:10:000553]: CtrlrPanel::setGlobalVariable index out of bounds(98603552)
                              [LUA ERR ][09:45:10:000642]: CtrlrPanel::setGlobalVariable index out of bounds(98757664)
                              [LUA ERR ][09:45:10:000731]: CtrlrPanel::setGlobalVariable index out of bounds(98911776)
                              [INFO ][09:45:10:000826]: CtrlrLuaManager::ctor, lua is disabled
                              [WARN ][09:45:11:000178]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000224]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000282]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000368]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000421]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000467]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000532]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000602]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000654]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000703]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000743]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000792]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000843]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000869]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000899]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:11:000956]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000010]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000047]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000077]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000137]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000177]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000203]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000244]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000269]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000300]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000325]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000366]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000433]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000459]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000490]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000524]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000557]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000581]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000612]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000646]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000679]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000703]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000735]: Panel scheme is old or not defined, unexpected results may occur
                              [WARN ][09:45:12:000759]: Panel scheme is old or not defined, unexpected results may occur
                              [LUA ERR ][09:45:12:000804]: CtrlrPanel::setGlobalVariable index out of bounds(64)
                              [WARN ][09:45:22:000326]: CtrlrPanelMIDIInputThread::run stopping
                              [WARN ][09:45:22:000826]: CtrlrPanelMIDIInputThread::run stopping
                              [WARN ][09:45:27:000761]: CtrlrPanelMIDIInputThread::run stopping
                              [WARN ][09:45:28:000250]: CtrlrPanelMIDIInputThread::run stopping

                              **********************************************************
                              Ctrlr debug log
                              Log started: 26 Feb 2014 9:45:40am

                              [INFO ][09:45:43:000507]: Update check disabled

                              **********************************************************
                              Ctrlr debug log
                              Log started: 26 Feb 2014 9:46:14am

                              CtrlrLog::setLogToFile: D:\ctrlr\Ctrlr-Win32.log

                              If I delete the overrides file, it will open correctly again.

                              I dont know what is wrong.. cannot make that number go up past 64 🙁

                              • This reply was modified 10 years, 1 month ago by Synthetech.
                              in reply to: linking a control in FL studio 11? #19872
                              Synthetech
                              Participant
                                • Topics: 13
                                • Replies: 70
                                • Total: 83

                                hmm…

                                I cant seem to save a Vst dll restricted instance.. let alone any instance except for a .exe file.

                                I looked up that overrides text file and it was already set to 255.. yet I open Ctrlr and it says it will only export 64

                                in reply to: linking a control in FL studio 11? #19855
                                Synthetech
                                Participant
                                  • Topics: 13
                                  • Replies: 70
                                  • Total: 83

                                  Thanks for the reply Atom,

                                  Well last night I finally managed to figure some things out..

                                  First of all I am having problems increasing the number of “Max Exported VST Parameters” it seems to be stuck at 64 and wont save a new number like 256 or 512.

                                  I ended up going into my panel and renumbering the VST Index numbers for each modulator/slider… they were really high numbers… problably due to me having a few extra panels open when I started the new panel, so it just kept assigning higher numbers.. as high as 400 or more.

                                  So when I changed the VST index number to anything below 64, then reload the panel in FL.. the FL Plugin browser would begin to show the modulator names in the list of parameters under Current Project>Generators>Fruity Wrapper Instigator in the FL Browser.
                                  So finally I was able to click on FL’s “Multilink to Controllers”, move the panel slider, move my keyboard’s knob and whalla! The real knob moves the GUI knob.. yay! 🙂

                                  So now it’s down to- how do I lock in a higher number than 64 for Max Export Parameters??

                                  I have many other questions too and perhaps in the next few days you can help me with them as well.. but for now, just getting that VST Export Parameter number higher is a good start.

                                  OS is Win7 Pro
                                  Ctrlr Revision = 1655, Build date = 2013/12/29 00:32:59
                                  FL Studio 11.0.2

                                  • This reply was modified 10 years, 1 month ago by Synthetech.
                                  • This reply was modified 10 years, 1 month ago by Synthetech.
                                  in reply to: linking a control in FL studio 11? #19828
                                  Synthetech
                                  Participant
                                    • Topics: 13
                                    • Replies: 70
                                    • Total: 83

                                    Help??

                                    Atom???

                                    in reply to: linking a control in FL studio 11? #19471
                                    Synthetech
                                    Participant
                                      • Topics: 13
                                      • Replies: 70
                                      • Total: 83

                                      Thanks for trying to help Zeoka.

                                      I’m still not getting any results…

                                      Atom, what am I doing wrong???

                                      in reply to: linking a control in FL studio 11? #19390
                                      Synthetech
                                      Participant
                                        • Topics: 13
                                        • Replies: 70
                                        • Total: 83

                                        So ctrlr wont link up a MIDI controller in FL Studio then???

                                        in reply to: Roland MKS-50 Advanced #19318
                                        Synthetech
                                        Participant
                                          • Topics: 13
                                          • Replies: 70
                                          • Total: 83

                                          *** PLEASE USE THE THIRD ZIP FILE FURTHER DOWN IN THIS THREAD ****

                                          Bonus here K3 in progress, hopefully done in a few weeks.

                                          K3

                                          *** PLEASE USE THE THIRD ZIP FILE FURTHER DOWN IN THIS THREAD ****

                                          what ever happened to this kawai K3 panel??
                                          this thing looks great!

                                          I tried to msg Bomma72, but i cannot find a way to do so.

                                          hope this is a real panel I can get for my K3.
                                          I just spent two days working up my own, but not near as nice as this one looks.. hoping to save myself the trouble of doing controls that gave me troubles..
                                          ThanKS!

                                          in reply to: akai s2000 sysex help plz #8604
                                          Synthetech
                                          Participant
                                            • Topics: 13
                                            • Replies: 70
                                            • Total: 83

                                            Thanks Hecticc for your example script.

                                            I may not have a chance to digest all this until the weekend..  it’s been a very long time since I last dug into the LUA scripting.

                                            Just at a glance I can tell I’ll be asking alot of questions.

                                            First thing I noticed is an Nil Value error occurred at load/startup.

                                             

                                            But I think I follow your mention of using scripts to control the sysex formula vs. the limited number global method (sixteen only for global, right?)

                                            I suppose you could easily end up with 60+ keygroups if you were to setup a couple drum kits.

                                             

                                             

                                            I have managed to create some XY controls that allow me to mix things up like LFO Depth/LFO Rate.

                                            It really lets loose the beast that hides in the S2000.

                                            These machines still sound great after all these years.. if you can get past/around some of those nasty artifacts that pop up in some sounds/renders.

                                            • This reply was modified 10 years, 11 months ago by Synthetech.
                                          Viewing 20 posts - 1 through 20 (of 70 total)
                                          Ctrlr