|
|
#1 |
|
AppleScript Editor Question
I need help with this script:
Code:
set a to display dialog "What server would you like to connect to?" default answer "Student Server Disks" with title "Connect to Server" if text returned of a is "Student Server Disks" then try mount volume "afp://Student:student@server.school.school.nz/" end try end if if text returned of a is "Colin" then try mount volume "smb://Colin/Owner/" end try end if if text returned of a is "Jacks Laptop" then try mount volume "smb://Jack-pc/Reynolds/" end try end if if text returned of a is "Kaitlins Laptop" then try mount volume "smb://Kaitlin-pc/Kaitlin/" end try end if PLEASE HELP I NEED HELP!!! ![]() THANKS IN ADVANCE
__________________
15" Retina MacBook Pro, 2.3GHz, 8GB RAM, 256GB SSD
|
|
|
|
0
|
|
|
#2 |
|
No need to shout. You only get the second message if the mount volume statement encountered an error. If you want to display a dialog when the text you type doesn't match try this :
Code:
display dialog "What server would you like to connect to?" default answer "Student Server Disks" with title "Connect to Server"
copy the result as list to {text_returned, button_pressed}
if text_returned is "Student Server Disks" then
try
mount volume "afp://Student:student@server.school.school.nz/"
end try
else if text_returned is "Colin" then
try
mount volume "smb://Colin/Owner/"
end try
else if text_returned is "Jacks Laptop" then
try
mount volume "smb://Jack-pc/Reynolds/"
end try
else if text_returned is "Kaitlins Laptop" then
try
mount volume "smb://Kaitlin-pc/Kaitlin/"
end try
else
display dialog "There was a problem connecting to the server" & space & "“ " & text_returned & " ”" & "." buttons {"OK"} default button 1 with icon stop
end if
Last edited by kryten2; May 7, 2012 at 09:37 AM. |
|
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 02:03 AM.





15" Retina MacBook Pro, 2.3GHz, 8GB RAM, 256GB SSD 

Linear Mode
