AHK_L) SysListView321 컨트롤 내용 추출하기
A=로컬 디스크 (D:) ahk_class ExploreWClass
WinActivate, %A%
WinWaitActive, %A%
;ControlGet, List, List, Selected, SysListView321, 로컬 디스크 (D:) ahk_class ExploreWClass
sleep, 1000
ControlGet, OutputVar, List, , SysListView321, A
msgbox %outputvar%
ControlGet, count, List,count , SysListView321, A
msgbox lines=%count%
loop, %count%
{
Control, Choose, %a_index%, SysListView321, A
tooltip, line=%a_index%
sleep, 1000
}