penggilas2 Posted February 9, 2010 Posted February 9, 2010 after a long time absence to visit this forum, I found Koda to make Gui Autoit.. And very interest in Help menu (About).. How to make Animation text like that..??
bogQ Posted February 9, 2010 Posted February 9, 2010 You mean something like this? #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $gui = GUICreate("My GUI",500,300,-1,-1,$WS_POPUP) ; will create a dialog box that when displayed is centered $label=GUICtrlCreateLabel("TESTING"&@CRLF _ &"TESTING"&@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &"TESTING"&@CRLF _ &"TESTING"&@CRLF, _ 0, 300,500,300) ; next line GUISetState(@SW_SHOW) ; will display an empty dialog box While 1 For $x = 1 To 500 GUICtrlSetPos($label, 0, 300-$x) Sleep(20) Next WEnd The other option shud probably b gdi+ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
penggilas2 Posted February 9, 2010 Author Posted February 9, 2010 You mean something like this? #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $gui = GUICreate("My GUI",500,300,-1,-1,$WS_POPUP) ; will create a dialog box that when displayed is centered $label=GUICtrlCreateLabel("TESTING"&@CRLF _ &"TESTING"&@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &@CRLF _ &"TESTING"&@CRLF _ &"TESTING"&@CRLF, _ 0, 300,500,300) ; next line GUISetState(@SW_SHOW) ; will display an empty dialog box While 1 For $x = 1 To 500 GUICtrlSetPos($label, 0, 300-$x) Sleep(20) Next WEnd The other option shud probably b gdi+ U a right.. How to make frezz when cursor attach to gui..??
bogQ Posted February 9, 2010 Posted February 9, 2010 Claculate the position mouse and GUI and if its > from 0 and < from Width and Height of window then Then $x -= 1, i dont think that GUIGetCursorInfo() [4] will work correctly in this case TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
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