Jump to content

Recommended Posts

Posted

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..?? :D

Posted

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 connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
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.

 
Posted

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..??

Posted

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 connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)



460px-Thief-4-temp-banner.jpg
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.

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...