2016-09-09 8 views
0

ich auf das folgende Skript vor kurzem kamen alle bei der Bilderfassung zu importieren:Apple Alle Importieren in Bildaufnahme nicht funktioniert

tell application "Image Capture" 
    activate 
    tell application "System Events" 
     tell process "Image Capture" 
      click button 3 of group 2 of group 1 of splitter group 1 of window 1 
     end tell 
    end tell 
end tell 

Das funktioniert nicht in der neuesten Version 6.7. Kann jemand helfen?

Antwort

0

Dies funktioniert für mich, aber möglicherweise müssen Sie Ihren Verzögerungswert in diesem Skript anpassen.

tell application "Image Capture" 
    activate 
    delay 5 
    tell application "System Events" 
     click button "Import All" of group 2 of splitter group 1 of window "Image Capture" of application process "Image Capture" 
    end tell 
end tell 
Verwandte Themen