RAMMRODD Posted April 30, 2008 Posted April 30, 2008 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 1user is asked to enter a nameuser enters JOHNNY CASHthe script ouputs http://www.google.com/JOHNNY CASHExample 2user is asked to enter a nameuser enters MIKE NESSthe script ouputs http://www.google.com/MIKE NESSI'm guessing it would just ask for an input box save the entered text then do something likehttp://www.google.com/$enteredtextjust not sure what thats called in the help file.....Thanks,R
d4rk Posted April 30, 2008 Posted April 30, 2008 #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
covaks Posted April 30, 2008 Posted April 30, 2008 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," ","+"))
d4rk Posted April 30, 2008 Posted April 30, 2008 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," ","+")) yes, i see the problem at first, but i give what he need in his post, maybe he just wants to make a string ? [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
RAMMRODD Posted April 30, 2008 Author Posted April 30, 2008 I think d4rk got it right, I want to be able to add input to text not just google, so the basic should be enough im at work and cant check right now but thanks
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