如何在Applescript中挑选出某些条款?

时间:2014-10-22 02:27:35

标签: applescript

这是我目前的代码:

tell application "System Events"

    set accounts to get the properties of every user

end tell

此代码将返回所有帐户的属性。如何让Applescript检查特定的帐户名称?

因此,假设一个帐户名称是Bob。我如何检查其中一个帐户名是否为Bob?

1 个答案:

答案 0 :(得分:0)

命名对象(包括用户)可以通过名称提及:type "Name"。因此,要检查用户“Bob”是否存在,您可以在System Events中寻址的块中使用表达式exists user "Bob"。或者,为了获得这样一个用户的属性,给定一个用户,你可以:

tell application "System Events" to get the properties of user "Bob"