Hi @all,
The script I have am working on is scanning file with .pdf file types. If it scanned a pdf, it should be opened. So far, this is the code I have tried:
Dim $FolderName = "C:\Users\AJ\Desktop\AUTOIT" ScanFolder($FolderName) Func ScanFolder($SourceFolder) $Search = FileFindFirstFile($SourceFolder & "\*.pdf") Run($Search) EndFunc