Modify ↓
Opened 16 years ago
Closed 15 years ago
#1590 closed Feature Request (Rejected)
restore FileOpen("con", 4) in AutoIt 3.3.6.2
| Reported by: | txj | Owned by: | Jon |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | Severity: | None | |
| Keywords: | FileOpen | Cc: |
Description
in AutoIt 3.2.12.1, statement
FileOpen("con", 4)
open console, then user can input from keyboard, programmer can handle user input.
but from AutoIt 3.3.4.0, 4---the "RAW" reading mode from FileOpen() has been removed, this make no simple method to accept user input from keyboard in AutoIt.
I hope restore
FileOpen("con", 4)
in AutoIt 3.3.6.2.
Attachments (0)
Change History (4)
comment:1 by , 16 years ago
comment:2 by , 16 years ago
| Owner: | set to |
|---|---|
| Status: | new → assigned |
That's for Jon which did that to implement file sharing at open time
comment:4 by , 15 years ago
| Resolution: | → Rejected |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.

in AutoIt 3.2.12.1, statement
$hConsole = FileOpen("con", 4) ; open console $Char = FileRead($hConsole, 1) ; read a char input by user from keyboard ...open console, then user can input from keyboard, programmer can handle user input.
but from AutoIt 3.3.4.0, 4---the "RAW" reading mode from FileOpen() has been removed, this make no simple method to accept user input from keyboard in AutoIt.
I hope restore
in AutoIt 3.3.6.2.