Jump to content

Whats the proper name for what im looking for?


Recommended Posts

I'm not sure what to look for but i want to make a script that asks the user to input words and then it adds the entered text to text it has stored.

Example 1

user is asked to enter a name

user enters JOHNNY CASH

the script ouputs http://www.google.com/JOHNNY CASH

Example 2

user is asked to enter a name

user enters MIKE NESS

the script ouputs http://www.google.com/MIKE NESS

I'm guessing it would just ask for an input box save the entered text then do something like

http://www.google.com/$enteredtext

just not sure what thats called in the help file.....

Thanks,

R

Link to comment
Share on other sites

#Include<IE.au3>
$a=Inputbox("","","")
_IECreat("http://google.com" & $a)

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

I think d4rk rushed that one without testing. ;-)

I'm assuming you want it to actually search for the string on google? P.S. I think the word you wanted was "append" as well.

#include <IE.au3>

$a = InputBox("","")
_IECreate("www.google.com\search?q=" & StringReplace($a," ","+"))
:D yes, i see the problem at first, but i give what he need in his post, maybe he just wants to make a string ? :D

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...