Clown Staples
June 16th, 2003, 08:56 AM
From a PM:
I'm glad you're interested. Actually it was much simpler than you would think. Its mostly the way google is set up that makes it so easy. I just happened to notice that the url for a google search is always the same except for the search variables at the end.
http://www.google.com/search?q=anything+you+want+here
So all I did was to add a textfield to get the variable to put on the end of the URL. (And a button to press)
on(press){
getURL("http://www.google.com/search?q=" + inputText);
}
Google also provides free logos for use on your site.
http://www.google.com/stickers.html
for anyone who wants to link there.
I'm sure the same thing would be possible using just javascript.
Hope this helps,
Clown
P.S. I am going to put this into a thread too in case any one else is interested.
I'm glad you're interested. Actually it was much simpler than you would think. Its mostly the way google is set up that makes it so easy. I just happened to notice that the url for a google search is always the same except for the search variables at the end.
http://www.google.com/search?q=anything+you+want+here
So all I did was to add a textfield to get the variable to put on the end of the URL. (And a button to press)
on(press){
getURL("http://www.google.com/search?q=" + inputText);
}
Google also provides free logos for use on your site.
http://www.google.com/stickers.html
for anyone who wants to link there.
I'm sure the same thing would be possible using just javascript.
Hope this helps,
Clown
P.S. I am going to put this into a thread too in case any one else is interested.