AHRIMANSEFID Posted July 17, 2015 Posted July 17, 2015 Hi.not click in hyperlink #include <IE.au3> Local $oIE = _GoogleSearch("test") Func _GoogleSearch($sString) $sString = StringReplace($sString, " ", "+") ShellExecute("www.google.com/search?q=" & $sString) _IElinkclickbytext ( $oIE, "test.com"); this makes your script click the link you asked. EndFunc
jguinch Posted July 17, 2015 Posted July 17, 2015 You should use $oIE = _IECreate("www.google.com/search?q=" & $sString) instead of ShellExecute("www.google.com/search?q=" & $sString) Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
Moderators JLogan3o13 Posted July 18, 2015 Moderators Posted July 18, 2015 Why go through all that mess?$sSearch = "Why can't people do a search before posting?" ShellExecute("http://www.google.com/search?q=" & $sSearch) "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now