Ok, I see that you added the frame support, but there is no documentation and I cannot seem to get it to work.
I decided to use it on one of my old myspace bots, and I tried to change it from using my old method of having the window sized exactly and hidden, and using the control commands.
I can get into the app perfectly, easier then the hours it first took me, but when I get to the app window, and it pulls up the app's frame, I cant get into it. I am simply searching for a term inside it the frame "REFRESH" in this case, and trying every single frame ID possible.
Something like this:
MsgBox(0,_FFFrameSelected($Socket),_FFAction($Socket,"search","REFRESH"))
_FFFrameEnter($Socket, 1)
_FFClickLink($Socket, "REFRESH", "text")
_FFClick($Socket, "Missions", "text")
MsgBox(0,_FFFrameSelected($Socket),_FFAction($Socket,"search","REFRESH"))
_FFFrameEnter($Socket,2)
_FFClickLink($Socket, "REFRESH", "text")
_FFClick($Socket, "Missions", "text")
MsgBox(0,_FFFrameSelected($Socket),_FFAction($Socket,"search","REFRESH"))
_FFFrameEnter($Socket,3)
_FFClickLink($Socket, "REFRESH", "text")
_FFClick($Socket, "Missions", "text")
MsgBox(0,_FFFrameSelected($Socket),_FFAction($Socket,"search","REFRESH"))
_FFFrameEnter($Socket,4)
_FFClickLink($Socket, "REFRESH", "text")
_FFClick($Socket, "Missions", "text")
MsgBox(0,_FFFrameSelected($Socket),_FFAction($Socket,"search","REFRESH"))
_FFFrameEnter($Socket,5)
_FFClickLink($Socket, "REFRESH", "text")
_FFClick($Socket, "Missions", "text")
MsgBox(0,_FFFrameSelected($Socket),_FFAction($Socket,"search","REFRESH"))
But the clicks do not happen and the search always returns false.
Any ideas?