Bonjour,
Je fais un petit up du sujet et je donne aussi plus d'informations, tout d'abord j'ai fait des petits tests pour comprendre la fonction _IEAttach(), il s'avère que je confondais Title et windowTitle, soit le titre de la fênêtre window et le titre de la page IE.
Néanmoins mon problème reste toujours présent, car je ne connais pas le nom de la fenêtre qui va s'ouvrir quand je clique sur le lien, de plus cette fenêtre n'ai pas cachée. Dans l'aide de Autoit, il y a un commentaire pour la fonction _IECreate qui correspond à mon problème mais je n'arrive pas à le mettre en application. Donc je me retourne de nouveau vers vous merci
New security in Windows Vista causes a new browser window to be created when a browser is instructed to navigate to a URL in a different security zone. This occurs as well with the initial creation and navigation initiated with _IECreate. The new window is a new browser instance and the previous browser object variable no longer points to it. There are several workarounds: 1) add #RequireAdmin to your code (this is required even if the account is part of the Administrator's Group and will propmt for credentials if necessary), 2) use _IEAttach to connect to the new browser window 3) add the target website to the Trusted Sites security zone in IE, 4) turn off "Protected Mode" in IE, or 5) disable UAC. Care must be taken to understand the implications of disabling IE security features when accessing untrusted sites.