1

私は次のアップルスクリプトを持っていますが、何らかの理由で指定された時間だけ遅れることはありません。私が理解している方法では、各ディスプレイ間で10秒遅れるはずですが、ダイアログの後にダイアログが遅れることなく表示されます

これのいくつかの異なるバリエーションを試しましたが、すべて同じ結果になります

set models to {"tom", "dick", "harry", "mark", "ringo", "john"}
set users to {"359597388", "338954297", "339380024", "1254012084", "265934082", "105804369"}
repeat
    repeat with model in models
        repeat with user in users
            delay (6000)
            display dialog "Sending user:" & user & "With model:" & model & "."

        end repeat

    end repeat
end repeat
4

1 に答える 1

0

試す:

set models to {"tom", "dick", "harry", "mark", "ringo", "john"}
set users to {"359597388", "338954297", "339380024", "1254012084", "265934082", "105804369"}
repeat
    repeat with model in models
        repeat with user in users
            delay 10
            display dialog "Sending user:" & user & " With model: " & model & "."
        end repeat

    end repeat
end repeat
于 2012-11-29T19:58:21.937 に答える