Question
Handling The Confirm Save As Window
What's the best method for handling the potentiality of a "Confirm Save As" window pop up when saving multiple files using an automation? Using an IsCreated method doesn't seem to be the best, as it may run before the Confirm window is created, but using a WaitForCreate isn't ideal either, since you don't want to add a static wait time.
Is there a way to say, "if this window pops up, hit yes, and continue with wherever the flow was interrupted"? Maybe like some sort of asynchronus Created Event?
Interrogate the windows explorer as a windows app and use the created event to start the automation. Pass the path as a property, and click() the okay button.