• SVG -> base64 Batch conversion?

    Scripting
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 12 Votes
    59 Posts
    1k Views
    ChazroxC

    @digi 👊 ⚡ Im glad to add anything within reason. If people need it, I want it too! lol

  • [Devlog] Blog

    C++ Development
    3
    3 Votes
    3 Posts
    6 Views
    ChazroxC

    @griffinboy said in [Devlog] Blog:

    blog post about devloping a blog post.

    haha 💪

  • Why isn't my projucer showing up?

    General Questions
    6
    0 Votes
    6 Posts
    136 Views
    David HealeyD

    @duma Change the macOS version in Projucer

  • AAX Build on MacOS

    General Questions
    31
    0 Votes
    31 Posts
    752 Views
    Oli UllmannO

    @Lindon
    I second that! :-)

  • Is the HISE REST server ready for use?

    AI discussion
    22
    0 Votes
    22 Posts
    697 Views
    dannytaurusD

    @David-Healey Give it a try and let us know.

  • 4 Votes
    2 Posts
    195 Views
    soundsyncS

    Just wanted to give a quick view of the first implemented HISE serial validation tool.

    First and foremost, use the Product Wizard to create a product. It will walk you through step by step.
    11f7ea5a-7a0e-4212-a91e-13e05eb16e06-{0B3C526C-0AA4-46B3-8510-B76FA53E3490}.png

    Once that is complete, you can generate a HISE package directly in the developer product view page. Simply enter your project UI size and generate the package. Unzip and place the SoundSync folder in your HISE projects "Scripts" folder.
    license manager0.jpg

    Open your project and use 1 simple include line to generate the entire package in your project.

    include("SoundSync/Runtime/SoundSyncRuntime.js");

    Then your branded validation window will be present. It will pull your logo, brand colors, store name, etc all from your Store/Brand page in the developer profile.
    license manager1.jpg

    Use the "Test Connection" button (when connected to the internet) to confirm your connection with SoundSync and to tell the server you have successfully put the package in your project. In your product view (where you downloaded the HISE package) you will see connection status.
    license manager00.jpg

    Once server connection is verified, simply hide the Test Connection button on your UI. This would complete your setup for live export/compilation.

    Now lets test it.

    Enter a serial number from your Serials page. You can generate them via the Serial Generator. Customer purchases will include an auto generated serial. If the serial is not tied to a customer yet, it will make them confirm identity and create an account on your website.
    Click "Register and Verify"
    license manager2.jpg

    The verification will either pass (if serial is already link to customer) or will tell customer to check their email for confirmation. All customer support, verification, etc emails are also branded. If you have set up your custom braded website and domains, they will be used here as well for your from and reply to emails. Soundsync is created to live completely in the background.
    license manager3.jpg

    Once the customer verifies the license, they will be directed to a confirmation page and the plugin will automatically validate in the background.
    license manager4.jpg

    Hopefully some of you can find this helpful.

    Looking forward to the feedback and thanks to everyone who already signed up!

    All the best,

    Aaron

  • How To Fix this problem building HISE on MacOS

    General Questions
    8
    0 Votes
    8 Posts
    191 Views
    D

    @David-Healey Please check your dms for me

  • Oriental Drummer

    General Questions
    2
    4 Votes
    2 Posts
    129 Views
    Oli UllmannO

    @David-Healey
    Looks like they are selling Plug-Ins and knives. :-)

  • Channel Strip help

    General Questions
    2
    0 Votes
    2 Posts
    99 Views
    David HealeyD

    @pratitghosh move all the xml files into the new project and then compile the DLL there

  • Rotation around center of mass is weird.

    Solved Scripting
    14
    0 Votes
    14 Posts
    272 Views
    ChazroxC

    StarKnobNoiseMaskLayerFixed.gif

    Heres the fix:

    MyKnobLaf.registerFunction("drawRotarySlider", function(g, obj) { var a = obj.area; var range = obj.max - obj.min; var stableSize = a[2] * (1.0 - 2.0 * 0.15); var ox = a[0] + (a[2] - stableSize) / 2; var oy = a[1] + (a[2] - stableSize) / 2; var cx = ox + stableSize / 2; var cy = oy + stableSize / 2; var sw = stableSize / 200.0; var startOffset = 2.5; var totalSweep = 2.0 * startOffset; var endOffset = -startOffset + totalSweep * (obj.value - obj.min) / range; var cStarBody3Top = 0xffFF0000; var cStarBody3Bot = 0xff00FBFF; var cStarBody3Outline = 0xfa000000; var starBody3Size = stableSize * 0.76; var starBody3X = cx - starBody3Size * 0.5; var starBody3Y = cy - starBody3Size * 0.5; var starBody3Static = Content.createPath(); starBody3Static.addStar([0.5, 0.5], 3, 0.13, 0.5, 0); starBody3Static.roundCorners(1); var starBody3StaticBounds = starBody3Static.getBounds(starBody3Size).translated(starBody3X, starBody3Y); var starBody3Star = Content.createPath(); starBody3Star.addStar([0.5, 0.5], 6, 0.05, 0.6, endOffset); starBody3Star.roundCorners(1); var starBody3RotBounds = starBody3Star.getBounds(starBody3Size).translated(starBody3X, starBody3Y); // PASS 1: gradient fill g.beginLayer(false); g.setGradientFill([cStarBody3Top, cx, starBody3Y, cStarBody3Bot, cx, starBody3Y + starBody3Size, false]); g.fillPath(starBody3Star, starBody3RotBounds); g.endLayer(); // PASS 2: noise — use full obj.area so noise fills behind mask cleanly g.beginLayer(false); g.applyMask(starBody3Star, starBody3RotBounds, false); g.rotate(endOffset, [cx, cy]); g.addNoise({"alpha": 0.3, "monochromatic": true, "area": [a[0], a[1], a[2] * 2, a[3] * 2]}); g.rotate(-endOffset, [cx, cy]); g.endLayer(); // PASS 3: outline g.beginLayer(false); g.setColour(cStarBody3Outline); g.drawPath(starBody3Star, starBody3RotBounds, 3.06 * sw); g.endLayer(); });
  • 0 Votes
    3 Posts
    107 Views
    ustkU

    @observantsound You can use both references at the same time. Just use the one that works for the bypass, and the other for your sampler job

    What I said might work, but do as @David-Healey said it's better implementation even if the reference are the same behind the scene 👍

  • Ellipse Masking // Mask makes shape dark.

    Unsolved Scripting
    13
    0 Votes
    13 Posts
    289 Views
    ChazroxC

    Update: I bowed out gracefully.....for now lol

  • AI is the future

    AI discussion
    3
    5 Votes
    3 Posts
    158 Views
    Christoph HartC

    Not gonna lie I‘ve made this exact mistake about three times in my life already without help from a robot…

  • Disable frontend Macros on right click

    General Questions
    3
    0 Votes
    3 Posts
    121 Views
    David HealeyD

    I think you can probably do it using the MidiAutomationHandler: https://docs.hise.dev/scripting/scripting-api/midiautomationhandler/index.html

  • 0 Votes
    36 Posts
    1k Views
    Y

    @David-Healey ok thank you

  • Thoughts on Moonbase?

    General Questions
    20
    0 Votes
    20 Posts
    1k Views
    J

    @JC Hey i actually got the moonbase module to work in juce 6..
    took David's advice and messed around with Claude and got it to work.

    little tricky for me but its working. I Havent shipped anything yet though--Hopefully soon.

  • 0 Votes
    11 Posts
    299 Views
    J

    @jeffd

    So i got a notarized .pkg working of the .hr files. still need to test more but i got them into the plugin's own per-user app-data folder. Then when the plug-in opens and installs the samples it can also auto-delete the .hr files right after extracting. And no gatekeeper quarantine from macos. Ill have to do the same on pc and create .exe for the .hr files to match. but perhaps this will be best. less confusing for people i imagine?

  • Compiling VST files on Windows for macOS!!

    General Questions
    3
    0 Votes
    3 Posts
    127 Views
    David HealeyD

    @Oli-Ullmann Yes a vm is the way to go if you don't have a mac

  • 0 Votes
    3 Posts
    101 Views
    Y

    @David-Healey payload is good.

    Oh ok, I didn't know. I do it right now.