Blue Eye Logo

Blue Eye Macro

Automation is freedom
It is currently Thu Nov 21, 2024 6:37 pm

All times are UTC




Post a reply
Username:
Subject:
Message body:
Enter your message here, it may contain no more than 60000 characters. 

Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:
Font size:
Font colour
Options:
BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON
Disable BBCode
Disable smilies
Do not automatically parse URLs
Please click and drag the 2 correct statements to the right hand side.
Please click and drag the 2 correct statements to the right hand side.
Please select the options below to the correct list to avoid automated registrations.
Statements
2 correct statements
Fish can swim
Elephants can fly
Chickens can talk
Dogs have 4 legs
   

Topic review - Google Searcher Macro[Source]
Author Message
  Post subject:  Re: Google Searcher Macro[Source]  Reply with quote
What exactly does this do ?
Post Posted: Sat Dec 07, 2013 1:40 am
  Post subject:  Re: Google Searcher Macro[Source]  Reply with quote
nice thx
Post Posted: Wed Jul 04, 2012 6:08 am
  Post subject:  Re: Google Searcher Macro[Source]  Reply with quote
nice.... now i can sit and watch my computer magically typing in google xD
Post Posted: Tue Dec 06, 2011 5:08 am
  Post subject:  Re: Google Searcher Macro[Source]  Reply with quote
nicely done. Very interesting.
Post Posted: Sat Mar 19, 2011 6:56 am
  Post subject:  Re: Google Searcher Macro[Source]  Reply with quote
Nice! It remembres me vb Lol
Post Posted: Mon Aug 16, 2010 11:14 pm
  Post subject:  Re: Google Searcher Macro[Source]  Reply with quote
Very nice demo of how to request user input from a macro.

Here is a slightly updated version, which will always do the search in whatever browser is your default.
Code:
 begin
     Window.Request user input("What do you want to look up on google?", "searchname")
     Variable.Evaluate (Text)("{googlesearch}{searchname}", "searchsentence")
     System.Launch application("{searchsentence}", "true")
     if  Window.Confirmation dialog gets confirmed by user("Do you want to search something else?")
          begin
               Window.Request user input("What else do you want to search?", "searchname")
               Variable.Evaluate (Text)("{googlesearch}{searchname}", "searchsentence")
               System.Launch application("{searchsentence}", "true")
          end
 end


Which also requires a variable called {googlesearch} with the following value http://www.google.com/#hl=en&source=hp&q=

Here is the downloadable macro, (download and drag it in to the list of macros in the main window of Blue Eye)
Attachment:
internet.google search.bem [11.03 KiB]
Downloaded 926 times
Post Posted: Fri Apr 30, 2010 9:44 am
  Post subject:  Google Searcher Macro[Source]  Reply with quote
Video: http://www.youtube.com/watch?v=ilSNAay1LfU

First in the variables list create a variable called {googlesearch}

Set the value to http://www.google.com/#hl=en&source=hp&q=

Then paste this in the code:

Code:
begin
     Window.Request user input("What do you want to look up on google?", "searchname")
     Variable.Evaluate (Text)("{googlesearch}{searchname}", "searchsentence")
     System.Launch application with arguments("iexplore.exe", "{searchsentence}", "yes")
     if  Window.Confirmation dialog gets confirmed by user("Do you want to search something else?")
          begin
               Window.Request user input("What else do you want to search?", "searchname")
               Variable.Evaluate (Text)("{googlesearch}{searchname}", "searchsentence")
               System.Launch application with arguments("iexplore.exe", "{searchsentence}", "true")
          end
 end
Post Posted: Fri Apr 30, 2010 2:55 am

All times are UTC


Jump to:  


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group