如何在iPhoto的Applescript中将经度设置为负数?

时间:2014-09-29 01:35:27

标签: applescript iphoto

我在iPhoto中有成千上万的照片(由于来自不良数据源的导入),地理数据不好,所有经度都失去了减号。

每个的情况下,我只想在经度上加一个减号。

我如何为每张照片设置经度= -longitude?

1 个答案:

答案 0 :(得分:1)

此脚本将经度设置为负数。

tell application "iPhoto"
    set tc to count photos
    repeat with i from 1 to tc
        try
            tell photo i to if longitude > 0 then set longitude to -(longitude)
        end try
    end repeat
end tell