Código: Seleccionar todo
<div class="popover_inner">
<label for="post[three]">Enlace de redirección</label>
<div>
<input class="text_field" placeholder="http://" name="post[three]" maxlength="200" size="40" value="" autocomplete="off" type="text">
</div>
</div>
_IETagNameGetCollection
$oInput.name
etc..etc.
;========================================================== EDIT 1
Digamos que por aquí lo encuentro.
Código: Seleccionar todo
; This may need more drilling down into the DOM...
$colInputs = _IETagNameGetCollection($IE, "input")
$sMsg = ""
For $oInput In $colInputs
$sMsg &= "Input type=" & $oInput.type & " - value=" & $oInput.value & " - placeholder=" & $oInput.placeholder & @CRLF
If String($oInput.placeholder) = "http://" AND String($oInput.value) = "0" Then
_IEDocInsertText($oInput, "hola")
_IEAction($oInput, "click")
EndIf
Next
;========================================================== EDIT 2
Um digamos que lo he encontrado.
Código: Seleccionar todo
_IEFormElementSetValue($oInput, "http://www.google.es/")