Question: Is there a way to dynamically update the elements listed in a Dropdown object?
Title pretty much explains it. I am trying to get it so the user can input a string that then needs to be added to the elements in a dropdown object. Is there a way to do this dynamically?
That is an interesting question, but I'm very short of time today so this answer is brief and might be described as an educated guess. You might like to experiment.
The dropdown instance has a bound variable .elements which holds the text values. When the user clicks on the dropdown, a listbox is instantiated here using those elements (see docs for listbox). So it might be possible to modify dropdown.elements at times when the dropdown is not open. See listbox docs for the two possible formats of .elements.