SteelD Posted May 7, 2009 Posted May 7, 2009 I'm new to AutoIt and thought I'd give it a try with what seemed to be a fairly simple exercise. It has turned out to be more difficult and maybe this is because I'm new to AutoIt and am using the wrong functions. What I want to do is to create a little app that simply records how long it takes for various jobs to print through a number of applications. I just want the time it takes for the app to spool the job to the Windows spooler. The problem is detecting the start and end of the printing process. Now, I can get the script to start the printing with Send("^p{Enter}") and I can start the timer at that point but I can't figure how to detect that the print message dialog has disappeared off the screen. WinExists doesn't seem to detect it so I can't loop round while it exists and break out when it closes. Any ideas how I should approach this? Thanks David
Moderators Melba23 Posted May 7, 2009 Moderators Posted May 7, 2009 SteelD,First, welcome to the AutoIt forums.Try using the Au3 Info tool (it will be at "C:\Program Files\AutoIt3\Au3Info.exe" if you did a standard install). This will let you find out some basic info about the dialog you are trying to ID. Read the Help file carefully concerning Window titles (you will find them under "Contents - Using AutoIt"), particularly the "Advanced Window Descriptions" section on the second page. Armed with this info you should be able to detect your difficult dialog!Ask again if you have problems, but please include the data you get from the Au3 Info tool - some windows can be difficult to pin down.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
Yashied Posted May 7, 2009 Posted May 7, 2009 I'm new to AutoIt and thought I'd give it a try with what seemed to be a fairly simple exercise. It has turned out to be more difficult and maybe this is because I'm new to AutoIt and am using the wrong functions.What I want to do is to create a little app that simply records how long it takes for various jobs to print through a number of applications. I just want the time it takes for the app to spool the job to the Windows spooler. The problem is detecting the start and end of the printing process. Now, I can get the script to start the printing with Send("^p{Enter}") and I can start the timer at that point but I can't figure how to detect that the print message dialog has disappeared off the screen. WinExists doesn't seem to detect it so I can't loop round while it exists and break out when it closes.Any ideas how I should approach this?ThanksDavidRead this. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
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