Re: Gathering DiagnosticReports from Console...
Re: Gathering DiagnosticReports from Console...
- Subject: Re: Gathering DiagnosticReports from Console...
- From: Chris Paveglio <email@hidden>
- Date: Thu, 18 Jul 2013 13:08:51 +0000
- Thread-topic: Gathering DiagnosticReports from Console...
Title: Re: Gathering DiagnosticReports from Console...
I’ve had to implement a couple of variants to dismiss crash dialogs (some for system dialogs, some for Adobe Apps’ crash reporter). Some things like the Adobe InDesign CS5 crash report has to be user dismissed
and it will only display after the app has been used X times or crashed X times, there’s no way to account for it except to set it once you see it.
I don’t have any Console log suggestions.
tell application "System Events"
try
tell process "UserNotificationCenter"
--is a small dialog window only informing of a crash
set frontmost to true
perform action "AXPress" of button "Ignore" of window 1
end tell
end try
--if PS dies instantly and ACR activates we do this, maybe; ACR takes a long time to activate
try
tell process "Adobe Crash Reporter"
set frontmost to true
keystroke (ASCII character 27) --keystroke Escape
end tell
end try
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden