• This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • DrawWavetablePath - without additional waterfall lines.

    Unsolved
    1
    0 Votes
    1 Posts
    149 Views
    No one has replied
  • Blocking All notes, and Letting only 2 notes go in?

    4
    0 Votes
    4 Posts
    219 Views
    NatanN

    @Lindon 🙏 Cheers to you mate

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    15 Views
    No one has replied
  • Linking 2 Sets Of Buttons Inside a Loop?

    3
    0 Votes
    3 Posts
    193 Views
    NatanN

    @d-healey Thank you so much Fine Sir :folded_hands:

  • 0 Votes
    4 Posts
    156 Views
    A

    @Christoph-Hart Right, the issue is with creating the directories in the Application Support folder. Permissions thing?

    Because Packages can't install to users' folder. Hopefully the MPC won't have that issue. Or the one where it can't create directories in global appdata

  • Finding the Processor Type of a (Module Tree) Processor?

    Unsolved
    7
    0 Votes
    7 Posts
    237 Views
    LindonL

    @d-healey said in Finding the Processor Type of a (Module Tree) Processor?:

    @clevername27 could you distinguish them by variable name?

    or use two array one of fx one of all audio processors and use indexOf....

  • 0 Votes
    4 Posts
    255 Views
    A

    @d-healey Ahhhhh such a simple solution, thank you!

  • 0 Votes
    5 Posts
    396 Views
    trillbillyT

    @Lindon said in User Specified Sample Folder per Sampler?:

    FileSystem.browseForDirectory(var startFolder, var callback)

    Yes, thank you. I have added this to the SampleLoadSave.js of the CustomSampleImport project. On Right Click, it opens the directory browser twice. I can select a folder but it does not load the samples in the folder or randomize the folder.

    SampleDropper.setMouseCallback(function(event) { // Clear the sample on double click if(event.doubleClick) { Sampler1.clearSampleMap(); return; } this.data.hover = event.hover; // Show a directory browser on right click if(event.rightClick) { FileSystem.browseForDirectory(FileSystem.Samples, loadSample); return; this.repaint(); } });

    Here is how I am randomizing some components in case I need something here. I know there is a way to reduce the script, I just don't know it.

    const sampleMapsRAN = Sampler.getSampleMapList(); inline function onShuffleSamplebtn1Control(component, value) { if (value) { local index = Math.randInt(0, sampleMapsRAN.length); local sampleMap = sampleMapsRAN[index]; Sampler1.loadSampleMap(sampleMap); SampleViewer1.setValue(index); SampleName1.setValue(list[index]); } }; Content.getComponent("ShuffleSamplebtn1").setControlCallback(onShuffleSamplebtn1Control);

    Thanks again.

  • Broadcaster & CurveEQ Dropdown

    7
    0 Votes
    7 Posts
    384 Views
    ?

    @iamlamprey Okay there's already a method for it:

    const bc = Engine.createBroadcaster({"component" : "myCoolFloatingTile", "event" : "All Callbacks"}); bc.attachToEqEvents("bc", ["BandAdded", "BandRemoved", "BandSelected"], {"id" : bc}); bc.addListener("", "update something", function(component, value) { Console.print("you just changed an EQ property!"); });
  • Passing a Reference to an Effect?

    Solved
    5
    0 Votes
    5 Posts
    150 Views
    clevername27C

    @d-healey Thank you, Dave.

  • Channel Routing with a Few Lines of Code

    1
    0 Votes
    1 Posts
    244 Views
    No one has replied
  • Best Practices to Parse OSC information based on the address

    1
    0 Votes
    1 Posts
    199 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Can we get DAW information using the API?

    1
    0 Votes
    1 Posts
    99 Views
    No one has replied
  • onNoteOn: Engage multiple MIDI events

    5
    0 Votes
    5 Posts
    301 Views
    trillbillyT

    @d-healey said in onNoteOn: Engage multiple MIDI events:

    HiseSnippet 1232.3oc6YstaaaCElxNLX1YMXsnXX+TnX+vAHHvNqWFPPPct3TXz5DuH2r8u.FoisIrDolDsa7F1qwdcVA1KvdT5av1gRxQxIZINdcqoc1+PP7bg7biemifaGHsgvPY.wnTmw9.w3yoViEp960mwEjl6SLVk1hEpf.yXR6N1mEFBNDCihuPSvnzRjneu646xbYBaHkDgbhjaCuh6wUoTaW+kbW2CXNPGtWFoeb8l1RwdRW4PzdJRqR7Y1CX8fCYZwJPIFK2vgqjAVJlBBQY1U5L1pu7MhX4OgGxOyEzKpQrvMJlLYu9bWm1S70PBtQsS87hwd9Cos3N7KnmFA9hHFloZjMFXT35LoZ2BSxHiIsTrIcepkc.2WkxQaOqPaJvDRWFFpyZJwxRLdKcOIJfPsgGa.bP.t3BEp7zpUW2Der1VcGJrUbovTJNTpfiDUVq7OWtT4eor4kY0sat7zGSfz0EBxksN6FbcJVQLz6LHXcyQL2gvEBht+zwzkmsXpcrWmQPonofqNxGRVefz0QGqzue0L.IIrgu85l6yTLcRIgFJmODn3ZywXeXDVUGmhJQ2GBGnj9Xc8UxeXkizYnKSMc4j9dSBCLdLUNTmnDgb03r2qtE0XUu1ZrY0DuOsMWY2OearPN1HFo92vFStYdOZitcAaUpAtD8feXduFN6G+pwG+JTKt.hfEiN7uLZs42yFAlu.DPfN3U6ZPF+iYEYzelQFOxVgGem.lHzWFN0FaAd7NRgNJjR70gHP.7iGqylYoumjEjKq287CPmLWcrXpgAQkE63IGJTSUFTb57vRy1U2ouQjQ9bvIW5C.zc02SP22iJP7TKPgvwUyC7tvuaPwTcnxbf3rNA7d8vNuaaNAPm437Rg7rJOJg0iV2DgyQv7xohuQHnNlI5AUPV017Y3Cje4K1UMhddaolNte0dR5NpIk6182z6f20rRKzawd1azCTZVGFAwWYMys2NiKo4dhFzuxZqUtToI5DNkNSLfLxtU4RfaHjQEdOgL.ZLBckJp.rKxV2AafQee0.65ZZYTHwpPQUQ0fqlTCZ4xcf.BGKzVlpiGjH6M8d6g0IyftknIYuKo9a+t5yUCSsA64iHUZHjUtIS9bLLZ7q3wMV+h9bCUi0wvko55WhG2wwEZKwFS5FVo.Y+FN8puE+mfrfadrySs+SqGNraW94QyX1k65EpPanoGVeQLd.EwNMcftrgtJyvAHxhKWL.b5HijmLSNQZr67Il+cM+3t+3KSgyVZhMZw87cgFhQfKVxEYiO.qwh7yITmt6bKoP52WJ31YaccLnRRQYr8bcncTJ7CSRo7v5GCt.Kaa3ut9qv1mr.LNAyYr31+4B4lu9JZr4ZpQyL+3cryheZO14wxgJtnWKFVDpgHvdfV3zd1.d5BA1zSiVTPi2Gut5DzCKP3Ds3OweILqoWajvr1Dly6nsatXz17Fsk9Obz1iFAAi3vaR+nzpeJOtasEi6tXb26Fi619C+3tKOOi6dii+sXVzOBlEcyEyhtXVz+2OK5+EmgGyNPdpcLTutN8yhnf9sH5eTpDskdsYsK2ffnQ93mZaO8VcEE2bdU7alWEe77p3SlWEe57p3ylWE+1aVQ8Xt6LTI8huZRHsZ2HpirgQCACqxitQP9KPdFlyA

    Ahhh, ok I see now. Thank you and best!

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Interface: Skipping changed() callback during onInit

    Solved
    13
    0 Votes
    13 Posts
    388 Views
    clevername27C

    @aaronventure Thank you - did not know that!

  • Regex < > Not Working

    29
    0 Votes
    29 Posts
    1k Views
    Dan KorneffD

    @d-healey omg.... [0-9A-F] is limiting the character to A-F. Obviously I want A-Z.

  • MacOS Compile Error

    2
    0 Votes
    2 Posts
    194 Views
    d.healeyD

    @Casmat search the forum, that one's come up several times

40

Online

1.7k

Users

11.7k

Topics

102.1k

Posts