06-18-2009, 10:54 PM
you can always try to lopp until an object you expect exists:
Code:
For i = 1 to 10000
If SwfWindow("WindowOne").SwfWindow("Create Customer / Class").exist(0) Then
Exit for
End If
Next