Jump to content

Recommended Posts

Posted (edited)

sample read webpage text :

#include <IE.au3>

$oIE = _IECreate()
_IENavigate($oIE, "http://www.google.com")

$body = _IEBodyReadTXT($oIE)

Run("Notepad.exe")
WinWaitActive("")
ClipPut($body)
ControlSetText("","","Edit1",ClipGet())

Func _IEBodyReadTXT($o_object)
    If IsObj($o_object.document) Then
        SetError(0)
        Return $o_object.document.body.innerText
;;;;;;_window.document.body.innerText
    Else
        SetError(1)
        Return 0
    EndIf
EndFunc
Edited by Lapo
Posted (edited)

HotKeySet("^g","lookup")
HotKeySet("{ESC}","ImDoneHere")
While 1
Sleep(10000)
WEnd
Func LookUp()
$lookup = clipget()
Run(@comspec & " /c start http://www.myweb.com/" & $lookup & ".php", "", @SW_HIDE)
EndFunc

Func ImDoneHere()
    Exit
EndFunc

I think that'd be the easiest way to do it. You don't have to rely on IE, it'll start it in the default browser. .Just copy a word like "this" and press ctrl+g to go to http://www.myweb.com/this.php.

--Hope this helps

~cdkid

Edited by cdkid
AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Posted

HotKeySet("^g","lookup")
HotKeySet("{ESC}","ImDoneHere")
While 1
Sleep(10000)
WEnd
Func LookUp()
$lookup = clipget()
Run(@comspec & " /c start http://www.myweb.com/" & $lookup & ".php", "", @SW_HIDE)
EndFunc

Func ImDoneHere()
    Exit
EndFunc

I think that'd be the easiest way to do it. You don't have to rely on IE, it'll start it in the default browser. .Just copy a word like "this" and press ctrl+g to go to http://www.myweb.com/this.php.

--Hope this helps

~cdkid

Thanks mate I'm looking for something like that. Great. i'm gonna working with it.

thanks

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...