What I am starting to understand, you all have already understood and executed! You see I am taking my baby steps in learning AHK.
I should be most grateful if any senior member would kindly help unveil the mystery for me.
Upon running the below code1:
Code:
WinTitle := "Welcome"
WinActivate, %WinTitle%
sleep, 333
ControlFocus, SysListView323, %WinTitle%
sleep, 333
ControlGet, RowNum, List, Count, SysListView323, %WinTitle% ;Total number of rows in MarketWatch
MsgBox, Number of Rows: %RowNum%
Thinking that AHK might not work on this NEST platform, I wrote code2:
Code:
WinTitle := "Welcome"
WinActivate, %WinTitle%
sleep, 333
ControlGetText, TxtVal, Edit3, %WinTitle%
MsgBox, %TxtVal%
Apart from the code2, nothing seems to work - not even ControlClick or Click, Rel.
Where am I wrong in code1?
P.S. A
question for Josh1 - How to effectively cook AHK scripts for NEST Trader?
In another post, you mentioned that you learned it in 7 days. Please help!