HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. daniloprates
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 19
    • Posts 60
    • Groups 0

    daniloprates

    @daniloprates

    6
    Reputation
    4
    Profile views
    60
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    daniloprates Unfollow Follow

    Best posts made by daniloprates

    • RE: Expansion not working

      @d-healey 🤦 this was the problem, I was editing the XML file manually. It's working now.

      Thanks so much!

      posted in Newbie League
      D
      daniloprates
    • RE: Dynamically choosing the Send Container on a Send Effect

      @d-healey worked like a charm. Many thanks!

      posted in Newbie League
      D
      daniloprates
    • RE: Built HISE, but still getting the "source code has a different commit hash than the HISE build" message

      @d-healey yes, that's what was missing.

      Thanks so much!

      posted in Newbie League
      D
      daniloprates
    • RE: Quick F5 tip for Mac users

      @dannytaurus I've mapped CAPS LOCK to trigger the F5 key (via Karabiner)

      posted in General Questions
      D
      daniloprates
    • RE: LAF how to customize any object?

      Great, thanks a lot, guys!

      posted in Scripting
      D
      daniloprates

    Latest posts made by daniloprates

    • RE: Expansion not working

      @d-healey 🤦 this was the problem, I was editing the XML file manually. It's working now.

      Thanks so much!

      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      @d-healey <ExpansionType value="FileOnly"/>?

      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      No luck for me. What version of HISE are you using?

      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      @d-healey I've created an empty test project:

      Link Preview Image
      test-expansion.zip

      Shared with Dropbox

      favicon

      Dropbox (www.dropbox.com)

      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      @d-healey also tried <ExpansionType value="Files Only"/>

      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      @d-healey here's the relevant part of project_info.xml:

        <ExpansionType value="FileBased"/>
        <EncryptionKey value=""/>
        <LinkExpansionsToProject value="Yes"/>
      
      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      @d-healey

      Here's my code:

      Content.makeFrontInterface(600, 600);
      
      const var expHandler = Engine.createExpansionHandler();
      
      expHandler.setAllowedExpansionTypes([expHandler.FileBased, 
                                           expHandler.Intermediate, 
                                           expHandler.Encrypted]);
      
      
      const expList = Engine.getExpansionList();
      
      Console.print(trace(expList));
      

      The file structure:

      324fa974-8ff5-471e-808a-7a083f7169e6-image.png

      And the expansion_info.xml:

      <?xml version="1.0" encoding="UTF-8"?>
      
      <ExpansionSettings
          Name="Test Expansion"
          version="1.0.0"
          ProjectName="test-expansion"
      />
      
      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      Nothing I did worked...

      posted in Newbie League
      D
      daniloprates
    • RE: Expansion not working

      My code:

      Content.makeFrontInterface(600, 600);
      
      const var expHandler = Engine.createExpansionHandler();
      
      expHandler.setAllowedExpansionTypes([
      	expHandler.FileBased, 
      	expHandler.Intermediate, 
      	expHandler.Encrypted
      ]);
      
      expHandler.refreshExpansions();
      
      const expList = Engine.getExpansionList();
      
      Console.print(trace(expList));
      
      posted in Newbie League
      D
      daniloprates
    • Expansion not working

      I've followed @d-healey's video, both manual and automatic's way of creating an expansion, but they are never listed.

      Found this in my project_info.xml:

      <ExpansionType value="Disabled"/>
      

      and changed to

      <ExpansionType value="Files Only"/>
      

      but it didn't work

      posted in Newbie League
      D
      daniloprates