• Server.setBaseURL

    9
    0 Votes
    9 Posts
    299 Views
    T

    @d-healey This was what I was missing. Thank you!

  • General Midi library question

    20
    0 Votes
    20 Posts
    908 Views
    A

    @d-healey Yes, the latest version. The workaround was to create 16 outputs somewhere else and then copy to the container.

  • Sample Loop x fade

    3
    0 Votes
    3 Posts
    320 Views
    M

    @Christoph-Hart I knew it was simple! Thank you so much :)

  • Sticky note implementation

    8
    0 Votes
    8 Posts
    453 Views
    resonantR

    @ustk Perfect. Thank you!!

  • Apple altool vs notarytool

    4
    0 Votes
    4 Posts
    767 Views
    trillbillyT

    For anyone doing it it manually, here is the code.

    Thanks @d-healey as always!

    Codesigning Plugin
    codesign --remove-signature "MacHD/User/Desktop/PluginName.vst3"
    codesign --remove-signature "MacHD/User/Desktop/PluginName.component"
    codesign -s "Developer ID Application: YOURTEAMID" "MacHD/User/Desktop/PluginName.vst3" --timestamp
    codesign -s "Developer ID Application: YOURTEAMID" "MacHD/User/Desktop/PluginName.component" --timestamp

    Build Installer

    Sign Installer
    productsign --sign "Developer ID Installer: YOURTEAMID" "MacHD/User/Desktop/PluginName.pkg" "MacHD/User/Desktop/Signed/PluginName.pkg"

    Notarize Installer
    xcrun notarytool submit --apple-id "YOURAPPLEID" --password "App-Specific-Password" --team-id "YOURTEAMID" "MacHD/User/Desktop/Signed/PluginName.pkg"

    Wait For Upload To Complete

    Staple Installer
    xcrun stapler staple "MacHD/User/Desktop/Signed/PluginName.pkg"

    Check Status (Accepted)
    spctl --assess -vvv --type install "MacHD/User/Desktop/Signed/PluginName.pkg"

    FYI: Just a tip coming from the altool manual notarizing. I used to have to enter my TEAMID including my name like "My Name (GD78YHD87G)" but with the notarytool, it seems you just need the actual TEAMID Number, not the name as well.

    Also, I dont think this way sends the Notarization Email Confirmation. I did a fairly small upload a while ago and have yet to receive it. I've had it take hours before, but for a much larger file. Typically it sent the email within 10 or so minutes with altool. (it does not send the email. Once the upload is complete, youre good to go).

  • Slider ID number

    2
    0 Votes
    2 Posts
    104 Views
    d.healeyD

    @TNTHM There are no ID numbers that I know of (maybe they are used internally). The only id is the one you set, and can be retrieved using the getId() function.

  • ScriptNode errors on compile with simple multichannel layout

    8
    0 Votes
    8 Posts
    259 Views
    LindonL

    @Christoph-Hart ok I will give it a try...

  • Deleting Embedded Samplesmaps

    7
    0 Votes
    7 Posts
    676 Views
    VorosMusicV

    @ustk
    That's true...
    Even though its not the same Sampler you might be correct. As far as I know there is an AllNotesOff event, when changing Samplers Bypass.
    But I already tried a different order, it did not make a difference.

    I think I also tried delaying the PlayNote once, but did not work as well and lately I tried a different sample and it played, so it seems to be a quite specific issue.

    I'll try to rebounce the sample I'm using, maybe that fixes things.

  • Sliderpack rectangle? (Piano roll?)

    9
    0 Votes
    9 Posts
    400 Views
    Christoph HartC

    will try to figure out what have you done.

    I've created the template functions for LAF (by right click on the slider pack and choose "Create local LAF for selection" and then I hacked around for 30 seconds...

  • FX plugin fail - works fine in HISE...

    3
    0 Votes
    3 Posts
    132 Views
    LindonL

    @ustk said in FX plugin fail - works fine in HISE...:

    @Lindon Is that EQ a panel of your own construction? Is it possible it simply has no data to draw?
    When facing that kind of issue I add a dummy button to manually force a repaint, and a dummy label to show the data (values, mouse state, etc...) so you see what's behind the scene in real time
    Could the data be in an object that is not saved in preset once exported? (in the case you save the state in a data object of a panel essentially...)

    Well the "EQ Window" is showing the values for a set of Linkwitz Reily filters, so not really an eq in the sense of displaying incoming audio...so it does have some values.

    I added repaint command in the init to force a repaint - and that didn't make any difference. The thing that really gets me is the preset name and the "preset browser opening" button not working....

    audio makes it thru the plugin - but it has no effect on it...mystery.

  • Dynamically change the size of the GUI Interface

    5
    0 Votes
    5 Posts
    364 Views
    Adam_GA

    @ustk thank you :D

  • AAX Not Valid - Mac M1

    2
    0 Votes
    2 Posts
    262 Views
    orangeO

    @kameron Are you sure you are using the developer version of Pro Tools and not the standard version? Typically, this error occurs when trying to open an unsigned plugin in the standard version Pro Tools. That's why I suggest you code sign the plugin with PACE EDEN Tools and open it in Pro Tools.

    Also which version of Hise & XCode are you using? Do exproted vsts work in your system?

  • Pluginboutique rent-to-own implementation

    4
    0 Votes
    4 Posts
    368 Views
    LindonL

    @Gabor-K well as long as you understand the API and its using some sort of post system then you should be fine...

  • Customize the values ​​shown in valuePopup

    7
    0 Votes
    7 Posts
    454 Views
    FortuneF

    @DabDab said in Customize the values ​​shown in valuePopup:

    @Fortune Do you need something like this ?

    Yes exactly. Thank you so much!

  • Preset browser search bar and tags

    1
    1 Votes
    1 Posts
    308 Views
    No one has replied
  • trigger a Global LFO Modulator without a noteon

    6
    0 Votes
    6 Posts
    436 Views
    S

    I did something similar designing the LFO in scriptnode. I think I managed to trigger it with the playhead too.

  • Selecting the custom networks inside Hardcoded Master FX

    4
    0 Votes
    4 Posts
    408 Views
    resonantR

    Thank you @d-healey @orange

    Both 2 solutions are really helpful.

  • load encrypted images and data to compiled plug-in

    1
    1 Votes
    1 Posts
    123 Views
    No one has replied
  • LinkWindows to %appdata%

    21
    0 Votes
    21 Posts
    1k Views
  • Unable to save UserPreset

    4
    0 Votes
    4 Posts
    275 Views
    d.healeyD

    @alfaholic The samples need to be installed separately, same as a standard HISE project

8

Online

1.9k

Users

12.5k

Topics

108.7k

Posts