Jump to content

getch()


Recommended Posts

You mean console reading ?

Check this example :

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Change2CUI=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

$maxchr = 123
$input = ""

ConsoleWrite(@CRLF&"Enter your Name:"&@CRLF)

$file = FileOpen("con", 4)
$line = BinaryToString(FileRead($file, $maxchr))
FileClose($file)

ConsoleWrite("Your name is: " & $line & @CRLF)

Sleep(2000)
Exit



Func _ConsoleRead($StripCRLF=1) ;If called with no parameters, it returns the user input stripped from CRLF, which should be the expected behaviour.
    Local $maxchr = 123
    Local $file = FileOpen("con", 4)
    Switch $StripCRLF
        Case 1
            Return StringReplace(BinaryToString(FileRead($file, $maxchr)),@CRLF,"")
        Case 0
            Return BinaryToString(FileRead($file, $maxchr))
    EndSwitch
    FileClose($file)
EndFunc   ;==>_ConsoleRead
Edited by Inverted
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...