Hello, I'm currently working on a number of scripts, the short description of them would be to create and modify objects. Is there a way to prompt the user for text input via the API and additionally a prompt for a selection from a drop-down list? Basically I'm trying to use a text input prompt to allow users who call the script to enter a name for the created object. Something along the lines of createObj("graphic",{name: getString()}); for the dropdown, I'm trying to populate a list of objects of a particular type, and use it to create a parent-child relationship for the created object. for example, to create a card for a deck, something like: var deck = dropdown(findObjs({_type:"deck"})); //in theory call a dropdown list function, populated by an array of decks by findObjs. Should return the selected object to the variable. createObj("card",{deckid=deck.id}); An alternative use case for the dropdown would be to assign the created object a controller from a dropdown list of players. If any of that makes sense. Is this something possible somehow?