Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / CantSetServiceName.applescript
blob90c4b8f4b91046067c18d4a8c9a6fcfef541df8c
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set n to (get name of service "AIM")
6 set s to (get service "AIM")
7 try
8 set name of service "AIM" to "dummy"
9 --should never get here!
10 set name of s to n --restore
11 --actually this won't restore because service names are what's
12 --used in objectSpecifier to refer to these objects...
13 error
14 on error number num
15 if num is -2700 then error
16 end try
17 end tell
18 end run