HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Gabriel Strozi
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 47
    • Groups 0

    Gabriel Strozi

    @Gabriel Strozi

    8
    Reputation
    17
    Profile views
    47
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Website gabrielstrozimusic.wixsite.com/gabrielstrozi
    Location Tatuí/SP - Brasil

    Gabriel Strozi Unfollow Follow

    Best posts made by Gabriel Strozi

    • RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"

      @d-healey I forget to say that in my monography I reffered you and your work with HISE and with your youtube channel, that helps a lot to learn about HISE. :)

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Automatic limit keys on keyboard (floatTile)

      @ustk Wowwwww! Just blowed my mind! hahaha
      Thank so much for the hints! It makes much more clean and sustainable code!
      I'll replace a lot of lines that I wrote with this kind of scripting structure.

      And yes, I'm watching all the @d-healey videos on replay hahah

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi
    • RE: Automatic limit keys on keyboard (floatTile)

      I found the way!
      On load sample map function I called:

       for (i = 0; i < 128; i++)
              {
                  Console.print(i);
                  var x = Instrumento.isNoteNumberMapped(i);
                  if (x == 1)
                  {
                      Engine.setKeyColour(i, 0x00000000);
                  }
                  else
                      Engine.setKeyColour(i, 0x90000000);
              }
      

      I'm really happy that I figured out by myself how to do that, of course you some footprints you gave me @d-healey !

      Thanks you so much!

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi
    • RE: Engine.createGlobalScriptLookAndFeel not work

      @Matt_SF said in Engine.createGlobalScriptLookAndFeel not work:

      @Gabriel-Strozi The scriptnode branch was the one at that time, but now use the 'develop' branch (new_layout is the latest but Christoph's still working on it).

      I'm downloading the delvelp branch right now to test! I tell you with it works!

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Engine.createGlobalScriptLookAndFeel not work

      @DabDab said in Engine.createGlobalScriptLookAndFeel not work:

      @Gabriel-Strozi Which branch are you using?

      I'm using the scriptnode branch as suggested!

      I'm downloading all the code from the link @d-healey sent:
      6cf34949-e380-476a-a1de-549beda4a85a-image.png

      Then extracting and replacing all the Hise-master folder content with this new code. Am I doing something wrong or too much newbie? haha.

      Thank you guys for the patience!

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: HISE crashed and then.. Corrupt File

      Don't worry, I going ahead! :) Thanks for all support!

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: HISE crashed and then.. Corrupt File

      Thanks @DabDab ! I tried to open the Autosave.hip file, but I got the same message. From now on I'll save new versions (with new file names) every 20min at least. :/

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi

    Latest posts made by Gabriel Strozi

    • RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"

      @d-healey I forget to say that in my monography I reffered you and your work with HISE and with your youtube channel, that helps a lot to learn about HISE. :)

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"

      Hey, @d-healey
      Last month I was working on my graduation project, writing a lot. Yesterday I did sumbit the finished work and now I can return to the development of my sampler.

      I didn't try to export the plugin in others computers yet. I'm planning to do it this week. WHen I test it I come to share what happened.

      Thanks!

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"

      @gabriel-strozi Do you have another computer you can test on?

      I asked my friend to use him computer. Probably next days few days I'll do this test and see what happens.

      @christoph-hart said in Errors at exporting: "unmatched tags" and "Project XML Invalid":

      Have you validated the AutogeneratedProject.jucer file in the Binaries folder? I suspect you have a weird character somewhere in a field which breaks the XML parser.

      I don't see any "AutogeneratedProject.jucer" in my Binaries folder, only the following sub-folders/files:
      6f82de5f-5974-4ec3-a9be-6742a357130e-image.png

      Inside "Source"
      ee9312a6-a6f0-48ff-8b40-9a9cbd56a567-image.png

      Inside "temp":
      d89132c1-5ad2-4761-a11e-ae5631d52fcb-image.png

      Is it missing?

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"

      Hey guy, I still have the same problem. My project is ready to export and I can't :/

      Any suggestion?

      Thanks

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"

      The errors remain!
      @Christoph-Hart could you help us to understand what's happening, please?

      posted in Bug Reports
      Gabriel StroziG
      Gabriel Strozi
    • RE: Changing the start point of the samples on reverse playback mode by code

      The reason you shouldn't do this is in case the numbers are changed in the future.

      Makes much sense! It's a relevant reason!
      Let's rewrite some code hahah

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi
    • RE: Changing the start point of the samples on reverse playback mode by code

      Getting the sampler with the Synth.getSampler("Sampler1") you can change between Normal/Oneshot using the parameter ID from Module Browser instead of using the parameter name:

      Sampler1.setAttribute(10, value);
      

      The Sampler parameters are:
      e2992980-ba47-4f92-a0ee-e041c9c7dfc3-image.png

      It worked for me as well.

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi
    • RE: Changing the start point of the samples on reverse playback mode by code

      It worked! Now I just have to cut the samples and create new SampleMaps for the reverse Sampler.

      Thank you so much!

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi
    • RE: Changing the start point of the samples on reverse playback mode by code

      @d-healey said in Changing the start point of the samples on reverse playback mode by code:

      @Gabriel-Strozi Try Sampler1.setAttribute(Sampler1.OneShot, value)

      Also didn't work. Nothing changes

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi
    • RE: Changing the start point of the samples on reverse playback mode by code

      Use a different sampler and sample map for the reverse mode, then you can cut the samples exactly how you need them.

      I'll try it! And how can I switch between Normal and One Shot playback? I'm trying to use

      Sampler1.setAttribute("OneShot", value);
      

      But don't work. Any suggestions?

      posted in General Questions
      Gabriel StroziG
      Gabriel Strozi