d4rk Posted May 27, 2008 Posted May 27, 2008 do what ? creat ? delete ? click ? [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
bf2forlife Posted May 27, 2008 Author Posted May 27, 2008 just normal box that lets you select how big it is, then u put text in it. (not by writing, by script)
steyen Posted May 27, 2008 Posted May 27, 2008 you mean dynamically within runtime??? Greetings Steyen Never Give Up, Never Surrender. [u]My Scripts:[/u] [list=1][*]SKGeiger Search 'N Replace Utility[/list]
d4rk Posted May 27, 2008 Posted May 27, 2008 you want to creat ones or it's a exist ones and you just want to modify it with script ? [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
AlmarM Posted May 27, 2008 Posted May 27, 2008 Textbox: MsgBox(0, "Hello World", "Hello World!!") Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.
bf2forlife Posted May 27, 2008 Author Posted May 27, 2008 i just need the script like GUICtrlCreateInput() But u cant type in that box?
d4rk Posted May 27, 2008 Posted May 27, 2008 $a=GUICtrlCreateInput(...... ,$ES_READONLY) [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
bf2forlife Posted May 27, 2008 Author Posted May 27, 2008 (edited) When i try to use this code #include <GUIConstants.au3> GUICreate("bah", 108, 233, 193, 125) GUISetBkColor(0xFFFF00) GUICtrlCreateInput("", 8, 8, 89, 21) sleep(1000) Nothing happends. Whats the problem? Edited May 27, 2008 by bf2forlife
sandin Posted May 27, 2008 Posted May 27, 2008 (edited) your code is finished after sleep(1000) and there's nothing else for your script to do. In order to keep it running, you must add an infinite loop like: While, Do, For, etc... search for those loops in help files, or start a new script in scite, go to TOOLS > KODA, and then TOOLS > GENERATE FORM CODE and click INSERT INTO SCITE. Now you can see example of a window running until you click "X" on it. edit: you must save newly created script first, in order to be able to hit TOOLS > KODA. Edited May 27, 2008 by sandin Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
Sheri Posted May 27, 2008 Posted May 27, 2008 When i try to use this code #include <GUIConstants.au3> GUICreate("bah", 108, 233, 193, 125) GUISetBkColor(0xFFFF00) GUICtrlCreateInput("", 8, 8, 89, 21) sleep(1000) Nothing happends. Whats the problem? Add GUISetState(@SW_SHOW) before the sleep. Otherwise something happened, you just couldn't see it.
steyen Posted May 27, 2008 Posted May 27, 2008 You have to do like Sheri described, because without showing the gui it wont show you any control on it. then it will show for 1 second (sleep 1000) Greetings Steyen Never Give Up, Never Surrender. [u]My Scripts:[/u] [list=1][*]SKGeiger Search 'N Replace Utility[/list]
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