The_Noob Posted January 14, 2007 Posted January 14, 2007 Ok i want to try to sreamline a automated process, and im wondering if there is a command that will read the percentage or value of the progress bar. I have trid controlgettext, but that doesnt work. Any suggestions?
BrettF Posted January 14, 2007 Posted January 14, 2007 Ok i want to try to sreamline a automated process, and im wondering if there is a command that will read the percentage or value of the progress bar. I have trid controlgettext, but that doesnt work. Any suggestions?Any Code?? Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
BrettF Posted January 14, 2007 Posted January 14, 2007 Any Code??Try:$var = GUICtrlRead ($progress)$var will = the current percentage. Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
The_Noob Posted January 14, 2007 Author Posted January 14, 2007 Try:$var = GUICtrlRead ($progress)$var will = the current percentage.No its not a GUI that im making... its a different window. I dont even know if its possable with Autoit... i was just wondering...
BrettF Posted January 14, 2007 Posted January 14, 2007 Ok then. Ill see if i can dig up somthing Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Zedna Posted January 14, 2007 Posted January 14, 2007 (edited) Look at Auto3Lib from PaulIAA3LProgress.au3EDIT:This should work but it's missing thereGlobal Const $PBM_GETPOS = $WM_USER + 8 Func _Progress_GetPos($hWnd) Return _API_SendMessage($hWnd, $PBM_GETPOS, 0, 0) EndFunc Edited January 14, 2007 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
The_Noob Posted June 5, 2007 Author Posted June 5, 2007 I should have clearified, its not a GUI im making, but rather another program.
PaulIA Posted June 5, 2007 Posted June 5, 2007 I should have clearified, its not a GUI im making, but rather another program.Doesn't matter. Auto3Lib will read ProgressBar controls in external apps as well. (And I've added the missing function Zedna is referring to a LONG time ago). Auto3Lib: A library of over 1200 functions for AutoIt
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