Call to nonexistent function
line 124 in Acc.ahk
I use ahk_l, com_l
any clue why this does not work?
i try to detect firefox loaded:
Code:
UR=http://www.t-online.de
IE=%A_programfiles%\Mozilla Firefox\firefox.exe
Run,%IE% %UR%,,max
ACC_Init()
FF_StatusBarText()
ACC_Term()
FF_StatusBarText()
{
DetectHiddenWindows, On
If Not hWnd := WinExist("ahk_class MozillaUIWindowClass")
Return
If Not pacc := Acc_AccessibleObjectFromWindow(hWnd)
Return
sRole:=acc_GetRoleText(0x17)
Loop, % acc_ChildCount(pacc)
If paccChild:=acc_Child(pacc,A_Index)
If acc_Role(paccChild)<>sRole
COM_Release(paccChild), paccChild:=0
Else Break
COM_Release(pacc)
If Not pacc := paccChild
Return
If paccChild:=acc_Child(pacc, 1)
{
Loop
If acc_Name(paccChild)<>"Fertig" ; Change the text as appropriate!
Sleep, 100
msgbox hurrrayyy
Else Break
COM_Release(paccChild)
}
COM_Release(pacc)
}