Applescript:将日期函数结果传递给变量,而不使用处理程序?

时间:2014-12-04 18:04:43

标签: applescript

这是一个简洁的小线,创建一个紧凑的日期格式。问题是我不知道如何将它传递给我的脚本中使用的变量。我想避免使用处理程序。有什么想法吗?

tell (current date) to tell (year * 10000 + (its month) * 100 + day) as string to text 3 thru 8

1 个答案:

答案 0 :(得分:1)

没关系,刚拿到它:

tell (current date) to tell (year * 10000 + (its month) * 100 + day) as string to set myDate to text 3 thru 8

这是我见过的最紧凑的日期格式。杀手!