PlayHD Posted September 1, 2011 Posted September 1, 2011 hy i have a little problem... first think sorry for my english :-/ now i want to make a form. but not a form with a window a form like this not that complicated but like so... You can help me:D Sorry if you do not really understand my problem! Thanks in advance! My UDF : _WinShake, _WinSplitMy Apps : Google Guitar Bot, PuzzleGameDesign Gui : Interesting Tabs Design, RBox Project (abandoned), Animated Gui on Exit
UEZ Posted September 1, 2011 Posted September 1, 2011 (edited) Try this: http://www.mediafire.com/?wg1ilgc1lir7aw5 I was too lazy to create a nicer looking GUI... Br,UEZ Edited September 1, 2011 by UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
PlayHD Posted September 1, 2011 Author Posted September 1, 2011 wow you are the best thank you now i have a another question! if is posible to remove bar from the top (with red) and again thank you:D My UDF : _WinShake, _WinSplitMy Apps : Google Guitar Bot, PuzzleGameDesign Gui : Interesting Tabs Design, RBox Project (abandoned), Animated Gui on Exit
UEZ Posted September 1, 2011 Posted September 1, 2011 Try this: expandcollapse popup#include <Static_ButtonHover.au3> $NORMAL_hBMP = LoadBitmap_FromFile("NORMAL2.bmp") $PRESS_hBMP = LoadBitmap_FromFile("PRESS2.bmp") $OVER_hBMP = LoadBitmap_FromFile("OVER2.bmp") $TEXTCOLOOR = 0xFFFFFF $hGUI = GUICreate("GUI Test", 800, 575, -1, -1, $WS_POPUP) GUISetBkColor(0x000000, $hGUI) $Pic_Bg = GUICtrlCreatePic("Background.bmp", 0, 0, 0, 0) GUICtrlSetState(-1, $GUI_DISABLE) $Label_Logo1 = GUICtrlCreateLabel("Test", 258, 0, 130, 78) GUICtrlSetFont(-1, 44, 800, 0, "Comic Sans MS", 4) GUICtrlSetColor(-1, 0xE6E6FA) GUICtrlSetBkColor(-1, -2) $Label_Logo2 = GUICtrlCreateLabel("GUI", 386, 4, 146, 77) GUICtrlSetFont(-1, 56, 800, 0, "Times New Roman", 4) GUICtrlSetColor(-1, 0xFFEBCD) GUICtrlSetBkColor(-1, -2) $Button_Home = CreateButtonHover ("HOME", 18, 90, 120, 35, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_Guild = CreateButtonHover ("GUILD", 148, 90, 120, 35, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_Item = CreateButtonHover ("ITEM", 278, 90, 120, 35, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_Forum = CreateButtonHover ("FORUM", 408, 90, 120, 35, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_System = CreateButtonHover ("SYSTEM", 538, 90, 120, 35, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_Password = CreateButtonHover ("PASSWORD", 668, 90, 120, 35, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_StartGame = CreateButtonHover ("START GAME", 565, 140, 223, 45, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 14, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_Password = CreateButtonHover ("REGISTER", 565, 190, 223, 45, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x101010) $Button_Min = CreateButtonHover ("_", 740, 10, 20, 25, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Arial") GUICtrlSetColor(-1, 0x501010) $Button_Exit = CreateButtonHover ("X", 765, 10, 20, 25, $NORMAL_hBMP, $PRESS_hBMP, $OVER_hBMP, $TEXTCOLOOR) GUICtrlSetFont(-1, 12, 800, 0, "Times New Roman") GUICtrlSetColor(-1, 0x501010) $Pic_Info = GUICtrlCreatePic("NORMAL2.bmp", 18, 140, 530, 400) GUICtrlSetState(-1, $GUI_DISABLE) $label_text = @LF $label_text &= "This is a test text" & @LF & @LF $label_text &= "Here can be a text you like" & @LF & @LF $label_text &= "Done with AutoIt" $Label_Info = GUICtrlCreateLabel($label_text, 50, 180, 470, 325, BitOR($SS_CENTER, $WS_BORDER)) GUICtrlSetBkColor(-1, -2) GUICtrlSetFont(-1, 24, 400, 0, "Times New Roman", 5) GUICtrlSetColor(-1, 0xF01010) GUISetState(@SW_SHOW) While 1 $MSG = GUIGetMsg() Switch $MSG Case $GUI_EVENT_CLOSE, $Button_Exit Exit Case $Button_StartGame MsgBox(0, "Info", "Start Game was pressed", 10) Case $Button_Min GUISetState(@SW_MINIMIZE, $hGUI) EndSwitch WEnd Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
PlayHD Posted September 1, 2011 Author Posted September 1, 2011 Thank you very much .... see that all members of the board are very nice Once again thank you: D My UDF : _WinShake, _WinSplitMy Apps : Google Guitar Bot, PuzzleGameDesign Gui : Interesting Tabs Design, RBox Project (abandoned), Animated Gui on Exit
trancexx Posted September 1, 2011 Posted September 1, 2011 Thank you very much .... see that all members of the board are very nice Once again thank you: DWell, I'm not nice. Beware of me. ♡♡♡ . eMyvnE
UEZ Posted September 1, 2011 Posted September 1, 2011 Right, I can confirm that - she's a crazy woman. Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
Zedna Posted September 2, 2011 Posted September 2, 2011 Try this: http://www.mediafire.com/?wg1ilgc1lir7aw5 I was too lazy to create a nicer looking GUI... Br,UEZ Very nice example UEZ!!Thanks for sharing. Resources UDF ResourcesEx UDF AutoIt Forum Search
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