Jump to content

When typed into box it changes it in the Program


Busser
 Share

Recommended Posts

Hi im kinda new to this still learning. i need a little help if you guys don't mind. here is my code

$window = GUICreate("Timed Game Close Down", 400, 100)
GUICtrlCreateLabel("Game Window Title Name:", 10, 10)
$title = GUICtrlCreateInput("", 222, 10, 175, 18)
GUICtrlCreateLabel("Time Before Window Closes in Milliseconds:", 10, 40)
$time = GUICtrlCreateInput("", 222, 40, 175, 18)
$ok = GUICtrlCreateButton("OK!", 150, 70, 35)
$cancel = GUICtrlCreateButton("Cancel", 200, 70, 50)
GUISetState(@SW_SHOW)

;------------------------------------------------------------------------------------

HotKeySet("{Home}", "TogglePause")
HotKeySet("{End}", "Terminate")

Global $WinTitle ='test.txt'

;---------------------------------------------------------------------------------------

WinActivate ( "test.txt" )

If WinExists($WinTitle) Then
                Sleep(10000)
                
    Else
        MsgBox(0, "No test.txt Window", "Can't find test.txt Window!"&@CRLF&"Launch the game before."&@CRLF&""&@CRLF&"Will Close Now.", "", "")
        Exit
    EndIf

WinActivate ( "test.txt" )
ToolTip("Game Window Will CLose In 30 Seconds Press End to Stop", 0, 0)
Sleep (3000)
WinKill ( "test.txt" )
MsgBox(64, "Aion", "Game Window Closed")
;-------------------------------------------------------------------------------------


Func TogglePause()
    $Paused = NOT $Paused
    While $Paused
        Sleep(100)
        ToolTip('Game Close Count Down Paused! (Home = Enable - End = Exit)',0,0)
    WEnd
    ToolTip("")
EndFunc

Func Terminate()
    Exit 0
EndFunc

What i want to do is

1) When something is typed in the Gui window in the "Game Window Title Name:" it will auto change everything that has "test.txt"

2) Everything that is put into "Time Before Window Closes in Milliseconds:" it will auto change only the " Sleep(10000)" but not the other sleep function

3) and if you there anything esle you guys see wrong plz Quote Johnny 5 love input hahahahahha

thank you very much for your time

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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