How I can get same values as Au3Info Statusbar tab shows
It shows
1. number of objects
2. filesize of all objects
3. My computer
I need number of files to get rid off inputbox.
And why this script freeze my computer :/
Click the first file on the folder and press n. Then input the number of the files on that folder. Then tadaa... all names are on textfile.
If somebody knows how to make this better and easier, please tell.
Code:
n::
SysGet, VSW, 78
SysGet, VSH, 79
X:= %VSW%/2-90
Y:=%VSH%/2-60
InputBox, OutputVar, Number of the files ?, , , 180, 120, %X%, %Y%
Loop, %OutputVar%
{
SendPlay ^c
Sleep, 20
StringReplace, clipboard, clipboard, %A_WorkingDir%, , All
Sleep, 20
FileAppend, %ClipBoard%`n, %A_WorkingDir%/Kappaleet.txt
Sleep, 20
SendPlay {Down}
Sleep, 20
}
Return