isma08 Posted September 23, 2015 Posted September 23, 2015 HI, I cant get the text of a button, I'm testing with the "9" button windows calculator but the result is "" $codigo = ControlGetText(WinGetTitle("[CLASS:CalcFrame]"), "", "[CLASS:Button; INSTANCE:14]")MsgBox(0,"CODIGO",$codigo)
Moderators JLogan3o13 Posted September 23, 2015 Moderators Posted September 23, 2015 Hi, isma08, welcome to the forum. This works just fine for me, why the nested WinGetTitle when you have the Class already?$text = ControlGetText("[CLASS:CalcFrame]", "", "Button14") MsgBox(0, "", $text) "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
isma08 Posted September 24, 2015 Author Posted September 24, 2015 Hi, Thx. I have many contributions I can make to the forum, and I will soon, but I still get the button text any other ideas?
JohnOne Posted September 24, 2015 Posted September 24, 2015 Post full text output of the window info tool summary tab when hovered over your target button. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
isma08 Posted September 24, 2015 Author Posted September 24, 2015 (edited) that's the problem, the info-tool does not show me the text, but not if there is any way in programming. expandcollapse popup>>>> Window <<<< Title: Calculadora Class: CalcFrame Position: 1772, 234 Size: 228, 322 Style: 0x14CA0000 ExStyle: 0x00000100 Handle: 0x00060700 >>>> Control <<<< Class: Button Instance: 14 ClassnameNN: Button14 Name: Advanced (Class): [CLASS:Button; INSTANCE:14] ID: 139 Text: Position: 89, 129 Size: 34, 27 ControlClick Coords: 18, 14 Style: 0x50000000 ExStyle: 0x00000004 Handle: 0x000207CE >>>> Mouse <<<< Position: 1887, 427 Cursor ID: 0 Color: 0x6A395B >>>> StatusBar <<<< >>>> ToolsBar <<<< >>>> Visible Text <<<< 0 >>>> Hidden Text <<<< Edited September 24, 2015 by isma08
JohnOne Posted September 24, 2015 Posted September 24, 2015 Notice window info tool cannot even get the text.The code is fine $text = ControlClick("[CLASS:CalcFrame]", "", "[CLASS:Button; INSTANCE:14]")It's just not giving up its text, I've no idea why, except it's not a win32 standard control.Just the way it is sometimes. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
ViciousXUSMC Posted September 24, 2015 Posted September 24, 2015 Calculator is given as an example and it has GetValue as a function, not sure it will return the value you need, but its worth a look.
MaxG Posted September 25, 2015 Posted September 25, 2015 (edited) The code below only works because the control id's for the calculator buttons end in the number corresponding to the button... so it appears for me at least.#include <WinAPI.au3> $hWndButton = ControlGetHandle("[CLASS:CalcFrame]", "", "Button14") $strButtonCtrlID = _WinAPI_GetDlgCtrlID($hWndButton) MsgBox(0,"", StringRight($strButtonCtrlID, 1))Most of the time ControlGetText will work as you expect, however, in this specific case the text property is blank so there is no text to get.Hope this helps you out somehow. Edited September 25, 2015 by MaxG Fixed spelling and removed some speculation.
TLM Posted September 26, 2015 Posted September 26, 2015 (edited) My System is windows xpso i try with xp calcit worked$a = ControlGetText("[CLASS:SciCalc]", "","Button14") MsgBox(0, "", $a) Edited September 26, 2015 by TLM
Danyfirex Posted September 26, 2015 Posted September 26, 2015 Calc.exe ( and some other) since windows vista Draw the text. if you do not want to use IUIAutomation. You simple can create an array to check if Button instance=5 I'm over (number 1) etc... Saludos Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut
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