manit Posted September 25, 2011 Posted September 25, 2011 hi , I came across this interesting utility 'autoit v3 window information' using that finder tool i can see window handle in 'window tab' & cursor position in 'mouse tab' I also saw this script HotKeySet("z","jPos") While 1 Sleep(100) WEnd Func jPos() $jPos = MouseGetPos() MsgBox(0, "Details", $jPos[0] & "," & $jPos[1]) EndFunc which shows mouse position on pressing 'z' I also read documentation on msgbox,winlist,wingethandle,guicreate. I want to add active window handle info to that messagebox.
JohnOne Posted September 25, 2011 Posted September 25, 2011 example. MsgBox(0,0,WinGetHandle("[ACTIVE]")) AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
manit Posted September 25, 2011 Author Posted September 25, 2011 <h3 class="row2"> <span class="author vcard"></span>thanks JohnOne.</h3> <p>So when I add 'MsgBox(0,0,WinGetHandle("[ACTIVE]"))' in jPos function then I get two message boxes one showing mouse coordinate while other gives window handle.</p> <p>How can I get both in same messagebox ?</p>
JohnOne Posted September 25, 2011 Posted September 25, 2011 (edited) You can just add it MsgBox(0, "Details", $jPos[0] & "," & $jPos[1] & "," & WinGetHandle("[ACTIVE]")) Edited September 25, 2011 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
manit Posted September 25, 2011 Author Posted September 25, 2011 I see that putting & between variables does not add any text in message box content . but & "," will insert character ,
manit Posted September 25, 2011 Author Posted September 25, 2011 i want to hide the window using handle i just obtained. indicates something I don't understand.
manit Posted September 25, 2011 Author Posted September 25, 2011 i usually do 'cmdow <handle> /hid'cmdow utility an be obtained from www.commandline.co.uk/cmdow/
JohnOne Posted September 25, 2011 Posted September 25, 2011 That's a lovely story. Glad you got your problem fixed. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
manit Posted September 25, 2011 Author Posted September 25, 2011 can you suggest way to hide window from handle i obtained ?
JohnOne Posted September 25, 2011 Posted September 25, 2011 Sure. WinSetState() ^^^click^^^ AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
manit Posted September 26, 2011 Author Posted September 26, 2011 i read http://www.autoitscript.com/autoit3/docs/functions/WinSetState.htm is this correct $var=WinGetHandle("[ACTIVE]") WinSetState ( $var , "text", @SW_HIDE )
manit Posted September 26, 2011 Author Posted September 26, 2011 also what are rules to describe "text" parameter in msgbox function ?
manit Posted September 26, 2011 Author Posted September 26, 2011 i have this idea of creating a script which will show handles of all windows on taskbar & we can hide any by just pressing button in messagebox. Also once we hide a window then it no longer appears on taskbar yet messagebox should show its handle so we can unhide it i.e toggle.
manit Posted September 26, 2011 Author Posted September 26, 2011 i think windows on taskbar have level 1.
manit Posted September 26, 2011 Author Posted September 26, 2011 if anyone is interested then here is code to hide active window & show mouse position,handle on pressing 'z' HotKeySet("z","jPos") While 1 Sleep(100) WEnd Func jPos() $jPos = MouseGetPos() $var=WinGetHandle("[ACTIVE]") WinSetState ( $var , "text", @SW_HIDE ) MsgBox(0, "Details", $jPos[0] & "," & $jPos[1] & "," & "," & $var) EndFunc
JohnOne Posted September 26, 2011 Posted September 26, 2011 also what are rules to describe "text" parameter in msgbox function ? If you have the window handle (which you do) then you can leave the text param empty (""). AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
manit Posted September 27, 2011 Author Posted September 27, 2011 as mentioned earlier I have this idea of showing a messagebox that contains rows of handles of all windows on taskbar & a toggle button associated with each handle that hides or unhides corresponding window. There should be a refresh button which adds new handle if a window has been opened lately & remove those handles which do not exist. i need functions to dynamically add/delete button to messagebox , associate action with those buttons
manit Posted October 3, 2011 Author Posted October 3, 2011 any ideas on adding/deleting button with actions dynamically to messagebox ?
Moderators Melba23 Posted October 3, 2011 Moderators Posted October 3, 2011 manit,any ideasMany ideas, but until you at least make an attempt to do it yourself you will not get a lot of help from anyone here. To give you little encouragement, I would suggest using a ListView with the $LVS_EX_CHECKBOXES extended style rather than using buttons - you can keep the GUI the same size that way. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
manit Posted October 5, 2011 Author Posted October 5, 2011 Melba23 , I saw the doc of creating listview . Also I could add check button for each row. Now I have to translate the log of cmdow in a format 'windowhandle||level|PID|window status|application|title' for each line.My aim is to create GUI for cmdow.This will be exciting .Also what function can I use to create table taking line by line input from file ?And how can I set an action to be executed if a check box is toggled ?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now