name: Yell Caps Command code: "yellCaps = uscript.Command()\r\nyellCaps.category = \"Bion Commands\"\r\nyellCaps.addParameter(\"words\", \"What would you like the world to know?\", \"string\")\r\nyellCaps.addParameter(\"Caps\", \"Yell it in all CAPS?\", \"listbox\", \"Yes,No\", True)\r\ndef yellCaps_logic(words, caps):\r\n if caps == \"Yes\":\r\n words = words.upper()\r\n alert(words)\r\n \r\nyellCaps.logic = yellCaps_logic\r\nyellCaps.toolTip = \"This command yells at you loudly.\"\r\nyellCaps.name = \"yell caps\"\r\nuscript.addCommand(yellCaps)\r\ntoolbox.refresh()\r\n" author: Seth Turin version: 0.1 DeveloperKey: