Replies: 2 comments
-
Hi @thelulzy, Your code looks good to me! Does the libs folder include the contents of the javascript sdk? It should not matter, but you may want to adjust your action's UUID to something that describes the action i.e. If you are starting a new plugin, you may want to consider our new Node.js SDK! You can get started with the CLI tool, which streamlines a ton of the process and is much easier to work with (although the documentation is not available yet). Plugins created with the CLI tool run in the Node.js environment, which removes many of the limitations that were in place before when running an HTML file in the Qt Web-engine. The CLI tool also provide a way to restart your plugin when you make changes, so you no longer have to completely close Stream Deck to register your code changes. |
Beta Was this translation helpful? Give feedback.
-
Was running into the same issue, turned out that having a UUID with a capital letter was messing it up. i just set it all to lower case and it started working. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to get started with developing my first streamdeck plugin and I'm finding that the
Stream Deck connected!
message from the template is outputting in the debug console, but theYour key code goes here!
from the myAction.onKeyUp method isn't when pressing and releasing theExample Action
button.*Edit: I've also noticed the
Message from external window.
console output fromexternal.js
works as expected.*Edit 2: I do not get the yellow triangle w/ exclamation mark error icon when pressing/releasing the
Example Action
button.Clearly I've messed something up from the getting started guide, but I'm struggling to figure out what I've done wrong.
app.js
:manifest.json
:File structure
:Beta Was this translation helpful? Give feedback.
All reactions