I would like to take the value selected by the user and add it to a button action.
For example: if you choose "Apple" and click on the open button it will open the Apple website.
I found out how to do this, below what I did.
property myComboBox : missing value on btnOpen:sender set theValue to (myComboBox's objectValueOfSelectedItem()) as strings if theValue is equal "Apple" then open location "https://www.apple.com" end if end btnOpen:
Copyright © 2021 Jogjafile Inc.
I found out how to do this, below what I did.