WinBatch® Technical Support Forum

All Things WinBatch => WinBatch => Topic started by: juergenk on September 24, 2013, 04:33:01 AM

Title: Window Name IE9 WIN7 not available
Post by: juergenk on September 24, 2013, 04:33:01 AM
Hello,

i use Winbatch Files with use Window Name. At Windows 7 Internet Explorer 9 is this Windowname not displayed. All Winbatch Files can not Run. What can i do ?

greetings
juergen
Title: Re: Window Name IE9 WIN7 not available
Post by: Deana on September 24, 2013, 07:59:28 AM
This partial windows name works on Windows 7 with IE 10: "~Internet Explorer". Keep in mind that each individual tab has its own window title containing the key words 'Internet Explorer'.

For Example:
Code (winbatch) Select
WinActivate( "~Internet Explorer" )

For a complete list of all windows title use WinItemize:
Code (winbatch) Select
ret = WinItemize()
AskItemList("", ret, @tab, @sorted, @single )


If you continue to have an issue, please post the code that you are having a problem with.