• CMD + Click Event for Sliders

    Solved General Questions
    3
    0 Votes
    3 Posts
    192 Views
    oskarshO

    @d-healey Yes I just noticed that I can just use a Broadcaster and I got it working.

    const var knobShortcutWatcher = Engine.createBroadcaster({ "id": "effectKnobsOnClickStatus", "args": ["component", "event"] }); knobShortcutWatcher.attachToComponentMouseEvents("sliderId", "Clicks Only", "Mouse Listener for Effect Controls"); knobShortcutWatcher.addListener("RefreshFunction", "Bypasses Effect",function(component, event) { if (event.cmdDown) { Console.print('CMD / STRG CLICK'); } });
  • 0 Votes
    7 Posts
    410 Views
    ustkU

    I got it to work nicely in my project

    I’m not at my computer but I can say:

    start url has to be empty if you don’t want weird behaviour (I reckon there’s a slash by default, it should be removed) I don’t remember the next property but name but place de full url in there exported files have to be placed in a subfolder called cache on the server, but don’t include /cache in the url.

    Here it works smoothly