Skip to content

Hello World

Here’s a simple “Hello World” example script for USB Nova. It’s designed to open Notepad on a Windows computer and type “Hello World”.

A great starting point for beginners to get familiar with USB Nova scripting. You can modify and expand upon this script to create more complex behaviors.

  • GUI r opens the Run dialog on Windows (Win + R).
  • STRING notepad types notepad into the run field.
  • ENTER presses Enter to launch the application.
  • STRING Hello World types the text into the opened editor.
  • DEFAULTDELAY sets a baseline delay between typed characters.
  • DELAY inserts explicit pauses where needed. Feel free to adjust the timing based on your target system’s responsiveness.
  • You can use REM or # for comments (both are common in simple script dialects, use whichever your firmware accepts).
# This is a simple Hello World Example Script
DEFAULTDELAY 200
DELAY 200
GUI r
STRING notepad
ENTER
DELAY 2000
STRING Hello World