|
|
#1 | |
|
Running multiple actions on multiple items selection
Hello! Can I make a script say "A" then "B" (ActionA and ActionB) if the user selects both options in the list? I can't install AppleScript Studio right now, and wanted to know if it is possible to do this with AppleScript Editor...
Thanks! Quote:
__________________
MacBook White 4,1 2010 model
|
||
|
|
0
|
|
|
#2 |
|
What you want to do is repeat with each object in the selection list. So your chosen things from the list is something like {"A", "B"}.
set chosenList to (choose from list Options with prompt "Choose items to be spoken. Hold command (⌘) to select multiple letters" with title "Chocolate" with multiple selections allowed) as text -->result is {"A", "B"} repeat with anItem in chosenList if anitem is "A" then ActionA() end if if anItem is "B" then ActionB() end if if anItem is "C" then ActionC() end if end repeat |
|
|
|
1
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 04:12 AM.






Linear Mode
