Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'An AppleScript to look up phone numbers in Google' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
An AppleScript to look up phone numbers in Google
Authored by: dica on Jun 01, '03 02:25:16PM
This simplifies considerably the AppleScript and placed in the scriptmenu will work always. (will open the user selected browser)
try
   display dialog " Please enter first name, last name, city and state abbreviattion with a space between them " default answer ¬
    " " buttons {" OK ", " Cancel "} default button 1 giving up after 30
   set full_name to text returned of the result
   open location " http://www.google.com/search?q=rphonebook: " & full_name
end try


[ Reply to This | # ]