HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. ossian1961
    3. Topics
    • Profile
    • Following 2
    • Followers 0
    • Topics 16
    • Posts 139
    • Groups 0

    Topics

    • ossian1961O

      A question to Christoph about plugins and Windows platform.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      1k Views
      ossian1961O

      @Christoph-Hart said in A question to Christoph about plugins and Windows platform.:

      Yeah, that's nonsense. It has literally no effect on CPU usage whether resources are embedded in the plugin binary or not.

      Totally agree :)

    • ossian1961O

      ...Always on the PresetBrowser

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      31
      1 Votes
      31 Posts
      3k Views
      pelleP

      @orange Thank you! Can you send me a HISE-Snippet please ?

    • ossian1961O

      Showing preset name in a label

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      694 Views
      ossian1961O

      @d-healey Ok, I'm a perfect donkey! LOL
      Here's the simple code to use ;)

      const var Label1 = Content.addLabel("Label1", 10, 3); Content.setPropertiesFromJSON("Label1", { "width": 358, "height": 30, }); Label1.set("text", Engine.getCurrentUserPresetName());
    • ossian1961O

      About using textbox value withouth the knob

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      1 Votes
      3 Posts
      434 Views
      ossian1961O

      @ustk said in About using textbox value withouth the knob:

      Cool idea to use a slider and set the alpha at 0 ;)

      ;)

    • ossian1961O

      About Steinberg october 2018 deadline...

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      777 Views
      ossian1961O

      Just to talk about companies decisions...

      "Softube drops 32-bit support

      In order to keep on delivering plug-ins with stellar sound quality, Softube will be focusing on 64-bit plug-ins only from here and on. This means that our future releases will only contain 64-bit plug-ins.

      We do this so that we can put all our efforts into making great new products. Maintaining development tools for the 32-bit platform is becoming increasingly difficult and time-consuming.

      Many software users and companies have already made the move to 64-bit, so chances are that you won’t be affected by this at all. But like any technology shift, it’s one that’s painless for some and a big headache for others."

    • ossian1961O

      AHDSRgraph animation

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      809 Views
      ossian1961O

      @Christoph-Hart said in AHDSRgraph animation:

      Hmm, weird, it should be working also in the exported instrument. I'll add it to the pile of things to check :)

      Thank you! :)

    • ossian1961O

      Disable the maximize button on a standalone...

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      922 Views
      S

      @ossian1961 @Christoph-Hart
      I couldn't find a solution either, Is this still need to be fixed?

    • ossian1961O

      After change graphics...

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      540 Views
      ossian1961O

      I've changed the image and now everything works good... weird thing... I checked the image and it looks perfectly normal 🤔

    • ossian1961O

      Analyser module oscilloscope view

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      582 Views
      ossian1961O

      Oppsss... I left th -1 default value of the index... now it works fine! Sometimes some synapses of mine is out of duty 😆 😆 😆

    • ossian1961O

      Formant Filter

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      3
      1 Votes
      3 Posts
      613 Views
      ossian1961O

      @dustbro said in Formant Filter:

      If you find some code on the net that has the right kind of license, @Christoph-Hart could probably wrap it in HISE.

      Something here:

      GitHub Search Result

      and here:

      Example

    • ossian1961O

      Arpeggiator returns a sustained note

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      12
      0 Votes
      12 Posts
      1k Views
      ossian1961O

      @Christoph-Hart said in Arpeggiator returns a sustained note:

      Actually the note length 100 indicates that the step should be tied (the previous note will continue to ring). The only problem was that the code that stops the tied notes was missing. Should be fixed now.

      Well, I compiled HISE standalone from the last code you made and the Arpeggiator bug is fixed! :) <3

    • ossian1961O

      Multi Pages GUI and namespace feature

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      561 Views
      ossian1961O

      @Christoph-Hart said in Multi Pages GUI and namespace feature:

      Namespaces are resolved before the abstract syntax tree of the javascript engine is parsed so it has absolutely no impact on performance.

      So it's a better clean way to work ;)

    • ossian1961O

      Add graphic elements and Java script

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      2k Views
      Christoph HartC

      Without going into the gory details: David is right. HISEScript is not suited for "real" object-oriented programming and as soon as your talking about making dynamic GUI elements you're quickly getting into hacky workarounds.

      There is one design paradigm in HISEScript which will get in your way pretty quickly and that is that every UI element has to be declared on script initialisations. This has implications on the user preset system, plugin parameter automation, state saving etc. In C++ it is no problem creating other UI elements if you press a button, because you can easily decouple the data from the UI elements.

      Moreover, there's an uncanny value where any scripting language becomes a burden, because you start relying on industry grade debugging tools, and even if HISEScript tries to push that a little further than other scripting languages (which is why I bothered with breakpoint, local variable watch etc.) at a certain point the efficiency compared to C++ goes towards zero.

      Once you get past the Bjorn-don't-torture-me-with-<thisTemplateSyntax> state, C++ (and especially with the new C++11 / C++14 enhancements) will quickly become the language of your choice for anything audio-related - and KSP really starts to look like assembly from the 1980s :).
      JUCE also does a marvellous job of nudging you into a good coding style, which is why I decided to open the C++ API in HISE.

      I don't know you personally, but from what I've read from you in the past (here and on VI-Control) you should be able to grasp the basics of JUCE/C++ pretty quickly and leverage the full flexibility of true object orientated programming (plus being able to write C++ is a very valuable skill). The screenshot you posted is trivial to implement in C++ BTW.

      On the other hand, I won't stop you from playing around and trying to push the limits of what's doable. The code you posted looks reasonable (and I must contradict David here and say "leave the interface designer alone for this kind of stuff or you will shuffle pixels around forever").

    • ossian1961O

      HISE MAC version installed and checked, OK!

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      1 Votes
      6 Posts
      689 Views
      ossian1961O

      @Christoph-Hart Well, everythings worked fine and fast at the first take inspite Windows ambient where first times were painful 😆

    • ossian1961O

      GUI elements

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      2 Votes
      1 Posts
      436 Views
      No one has replied
    • ossian1961O

      Visual Studio error

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      3
      0 Votes
      3 Posts
      486 Views
      ossian1961O

      @dustbro Thank you, I will do it.