Miscellaneous

Edit

Set Clipboard #

Changes the contents of your clipboard to whatever is in the Text box.
You can then use Right Click-Paste or CTRL+V to paste it anywhere else.

Box Name Type Description
Text String The string you wish to save in your clipboard.


Edit

Load Clipboard #

Loads the contents of your clipboard (after using CTRL+C) into a variable.

Box Name Type Description
Variable Name String Variable name to save the clipboard contents into.


Edit

Open URL #

Opens any URL in your default browser. Must contain http or https to properly work.

Box Name Type Description
URL String URL to open


Edit

Execute Program #

Launches any program from your PC.
If SAMMI is running as admin, any program you launch through this command will also run as admin.

Box Name Type Description
File Path String Select or manually input a path to the .exe file you wish to run.


Edit

Command Line #

Execute a command line command just like you do in Command Prompt. Only one line of code.
If SAMMI is running as admin, commands you perform will also run as admin.
If you want to execute more than one line of code or the command is not executed properly, convert it to a batch file and use Execute program command instead.

Box Name Type Description
Command String Command you wish to execute.


Edit

Comment #

Allows you to insert a comment and mark it as warning, information or instruction to follow.
Great for keeping your commands organized as you can nest them inside your comments.

Box Name Type Description
Comment String Whatever comment you want to leave for yourself or other users.


Edit

Alert Message #

Shows a small yellow alert message at the bottom of SAMMI Core.

Box Name Type Description
Message String The message you want to display


Edit

Popup Message #

Shows a window popup message.
Useful for extension creators to be able to easily notify the user of important events.\

Box Name Type Description
Message String The message you want to display. Can be multiline.
Pause Button Execution Checkbox Choose whether you want to temporarily freeze SAMMI (i.e. pause all commands and SAMMI itself) while showing the popup.


Edit

Notification Message #

Shows a tray notification message in a bubble.

Box Name Type Description
Title String Title of your message
Message String The message you want to display


Edit

HTTP Request #

This command lets you send a web request, i.e. call an API and receive its response.
Use it together with Wait For/Until commands, as you can pause button execution until you get a response back.

Box Name Type Description
URL String The web request URL, must start with http or https
Method Dropdown Method to use. Select from dropdown menu or manually input
Header Object Name (optional) Object Name of the object containing any required headers
Body Object JSON (optional) JSON Body JSON string to send
Save Variable As (optional) String Variable name to save the result into


Edit

Overtime #

This command lets you add a cooldown to a button, artificially increasing the duration of the button and preventing it from triggering again.
This is a useful command if you want to make sure your notification alerts do not overlap or if you want to prevent viewers from triggering your buttons over and over again without any cooldown in between.

Box Name Type Description
Duration Int The amount of milliseconds the overtime (cooldown) should last. <br> The countdown starts as soon as the button is triggered.


Edit

Send UDP Packet #

This command allows a one-way unencrypted “push” of buffer data to a specified IPv4 address and port number as a UDP/IP encapsulated packet.
Useful for communicating information or sending commands to server endpoints or hardware devices that accept UDP connections.

Box Name Type Description
IP String Destination IPv4 address.
Port String Destination port number.
Buffer Name Binary The name of the buffer containing the binary payload information for the UDP packet.


Edit

Extension Commands #

Sends data to an extension in your Bridge.
Select your Bridge where the extension is installed and the extension command name.

Box Name Type Description
Various values Any These change depending on the specific extension.


Edit

Deck: Change Status #

Set a specific deck’s status to enabled, disabled, or allow it to toggle between statuses.

Box Name Type Description
Deck Name String Name of the deck.
Status Dropdown Enable, disables or toggles the the deck status.


Edit

Deck: Get Status #

Retrieve a specified deck’s status

Box Name Type Description
Deck Name String Name of the deck.
Save Variable As String Variable to save the status to. SAMMI will return 1 for enabled and 0 for disabled.