Jump to content

Maximilian0017

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by Maximilian0017

  1. Works like a charm!!! Thanks
  2. Thanks for your time. Tried it but no joy, does not find the screen, even if i strip it down to: $ScreenTitle="Eigenschappen voor" $var = WinList("[TITLE: & $ScreenTitle]") it does not find anything. Other idea's?
  3. This one works: $var = WinList("[TITLE:Eigenschappen voor ; CLASS:#32770]") This one doesn't $ScreenTitle="Eigenschappen voor" $var = WinList("[TITLE:$ScreenTitle ; CLASS:#32770]") Is there a way to get this to work? Thanks
  4. Another question, is there some kind of event i can monitor for any kind of window being opened?, would like to remove Sleep(10) and have something that will take the least possible cpu time. ;AutoItSetOption("TrayIconHide",1) ; Hide tray icon AutoItSetOption("WinTitleMatchMode",2) While 1 Sleep(10) $var = WinList("[TITLE:Properties;CLASS:#32770]") For $i = 1 to $var[0][0] If $var[$i][0] <> "" AND IsVisible($var[$i][1]) Then DoSomething($var[$i][1]) EndIf Next WEnd Func IsVisible($handle) If BitAnd( WinGetState($handle), 2 ) Then Return 1 Else Return 0 EndIf EndFunc Func DoSomething($handle) MsgBox(0, "Details", "Title=" & $var[$i][0] & @LF & "Handle=" & $var[$i][1]) EndFunc
  5. Hi, After seeing the ANYGUI_Example_Notepad.au3 i was wondering if it would be possible to build a script that actively looks for file property windows and removes the Shortcut tab. The search function didn't really help either and it seems that ANYGUI doesn't have anything to remove a tab. (p.s. random properties window from the net) Any idea's?
  6. Accidentally posted under ActiveX/COM , will repost under GUI (Dont see any edit buttons or anything so Admins please remove)
  7. Hi, After seeing the ANYGUI_Example_Notepad.au3 i was wondering if it would be possible to build a script that actively looks for file property windows and removes the Shortcut tab. The search function didn't really help either and it seems that ANYGUI doesn't have anything to remove a tab. (p.s. random properties window from the net) Any idea's?
×
×
  • Create New...