IE Radio Select funktioniert nicht

  • Hallo Leute,

    ich habe ein Problem mit der _IEFormElementRadioSelect() Funktion.
    Ich will auf meinen Router zugreifen und dort automatisiert die 2. Leitung meines - nicht lachen -
    ISDN's öffnen. Dafür muss ich ein Radio Selektieren. Aber das will nicht so ganz.
    Was kann ich tun/mache ich falsch?

    Hier alles was ich habe:

    HTML-Quellcode: (Kann ich nicht ändern)

    PHP
    <form method="post" action="../cgi-bin/isdn.cgi">
      <input type=radio name=ISDN value=0 checked><font face="Verdana, Arial, Helvetica" size=2 color=#993300>Enable</font>
      <input type=radio name=ISDN value=1 ><font face="Verdana, Arial, Helvetica" size=2 color=#993300>Disable</font></td>
    </form>

    Mein Code:

    [autoit]

    #include <IE.au3>
    $oIE = _IECreate ("http://192.168.0.1/doc/isdn.sht", 0, 1, 1)
    _IEFormElementRadioSelect ($oIE, "1", "ISDN", 1, "byValue") ;2. Radio soll ausgewählt werden
    Sleep(3000)
    _IEQuit($oIE)

    [/autoit]

    Fehlermeldung:

    PHP
    --> IE.au3 V2.4-0 Error from function _IEFormElementRadioSelect, $_IEStatus_InvalidObjectType


    MfG
    qixx