Now, groups can retrieve a list of the contacts in that group. I probably should...
[adiumx.git] / ASUnitTests / CantCreateWindow.applescript
blob2e5439360c742b5ec856e703b8846cface427c3a
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 try
6 make new window
7 error
8 on error number num --trap all errors
9 if num is -2700 then error -- if the error is the default error, caused by the 'error' directive, pass it along the chain
10 --otherwise, the command threw correctly
11 end try
12 end tell
13 end run