program builder Posted November 6, 2006 Posted November 6, 2006 Could someone please help. I'm trying to make input box come up in a different area of monitor. I tryed, $text = InputBox("Lyric Writer 1.0", "take a shot", 122, 645); but it didn't work.
GaryFrost Posted November 6, 2006 Posted November 6, 2006 (edited) Could someone please help. I'm trying to make input box come up in a different area of monitor. I tryed, $text = InputBox("Lyric Writer 1.0", "take a shot", 122, 645); but it didn't work. just add the left and top parameters to it i.e. $text = InputBox("Lyric Writer 1.0", "take a shot","","", 122, 122, 10, 10) Edit: forgot to put in the parameters not being used Edited November 6, 2006 by gafrost SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
program builder Posted November 6, 2006 Author Posted November 6, 2006 just add the left and top parameters to it i.e. $text = InputBox("Lyric Writer 1.0", "take a shot","","", 122, 122, 10, 10) Edit: forgot to put in the parameters not being used That didn't work. It just made the inputbox smaller.
GaryFrost Posted November 6, 2006 Posted November 6, 2006 That didn't work. It just made the inputbox smaller. just change the last 2 numbers to where you want it on the screen $text = InputBox("Lyric Writer 1.0", "take a shot","","", -1,-1,122, 645) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
herewasplato Posted November 6, 2006 Posted November 6, 2006 (edited) That didn't work. It just made the inputbox smaller.works for me copy/paste gafrost's edited version $text = InputBox("Lyric Writer 1.0", "take a shot","","", 122, 122, 10, 10) Edited November 6, 2006 by herewasplato [size="1"][font="Arial"].[u].[/u][/font][/size]
Bert Posted November 6, 2006 Posted November 6, 2006 I just tested it, worked fine for me. It located the inputbox in the upper left corner of my monitor The Vollatran project My blog: http://www.vollysinterestingshit.com/
program builder Posted November 6, 2006 Author Posted November 6, 2006 works for me copy/paste gafrost's edited version $text = InputBox("Lyric Writer 1.0", "take a shot","","", 122, 122, 10, 10) It worked. Thanks for helping me out.
GaryFrost Posted November 6, 2006 Posted November 6, 2006 It worked. Thanks for helping me out.change the 122's to -1 for defaults SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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