@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. :)
Best posts made by Gabriel Strozi
-
RE: Errors at exporting: "unmatched tags" and "Project XML Invalid"
-
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
-
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!
-
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!
-
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:
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!
-
RE: HISE crashed and then.. Corrupt File
Don't worry, I going ahead! :) Thanks for all support!
-
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. :/
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. :)
-
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!
-
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:
Inside "Source"
Inside "temp":
Is it missing?
-
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
-
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? -
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 -
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:
It worked for me as well.
-
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!
-
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
-
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?