Hi, I got a some problems.
First, FF Page Analyzer don't work for me. It shows me errors :
ERROR: AdlibDisable(): undefined function. AdlibDisable(),
ERROR: _FFFrameGetSelected(): undefined function. Local $tmp = _FFFrameGetSelected(),
ERROR: AdlibEnable(): undefined function. AdlibEnable("_getURL", $iURLTimer)
I've got a newest FF.au3 in my Includes, I don't know why I got these errors
Second problem, I want to use _FFSetValue, but it don't really works for me.
I got this HTML code of input and button :
<input type="text" name="duellName" value="name" id="duel_search">
<input type="submit" name="Submit" value="atak" id="submit">
and in AutoIT i got this code :
_FFSetValue($aText[$i], "duellName", "duel_search")
It returns me error :
_FFLoadWait: .......... loaded in 2443ms
__FFSend: try{FFau3.WCD=window.content.top.document;}catch(e){'_FFCmd_Err';};
__FFRecv: [object XPCNativeWrapper [object HTMLDocument]] — {contentType: "text/html", addEventListener: function() {…}, title: "BattleKnight", location: {…}, forms: {…}, documentURI: "http://s3.battleknight.onet.pl/bk.php?loc=raid&old=3", characterSet: "UTF-8"}
_FFLoadWait: . loaded in 21ms
_FFSetValue ==> Invalid value: (elements|id|name|class|tag) $sMode: duel_search
If i change code :
_FFSetValue($aText[$i], "duellName")
or
_FFSetValue($aText[$i], "duel_search")
I got other error :
_FFLoadWait: ...... loaded in 1324ms
__FFSend: try{FFau3.WCD=window.content.top.document;}catch(e){'_FFCmd_Err';};
__FFRecv: [object XPCNativeWrapper [object HTMLDocument]] — {contentType: "text/html", addEventListener: function() {…}, title: "BattleKnight", forms: {…}, documentURI: "http://s3.battleknight.onet.pl/bk.php?loc=raid&old=3", location: {…}, characterSet: "UTF-8"}
_FFLoadWait: . loaded in 10ms
__FFSend: try{duellName.value='Klelek\r'}catch(e){'_FFCmd_Err';};
__FFRecv: _FFCmd_Err
_FFSetValue ==> No match: $sElement: duellName
Hopefully waiting for answers.
wiz