Well I started learning AutoIt last night and this was the second full script I wrote. I was fairly excited about this, that is, until I came to the forums and saw how complex everyone else's scripts are :">
I guess I'll post it anyway.
This script will delete any files that are put into your recycle bin instantly. Basically it just empties your recycle bin automatically so that you don't have to.
; ----------------------------------------------------------------------------
; AutoEmpty Recycle Bin Script, Tommy Moiseve 2005
; ----------------------------------------------------------------------------
; Start Script
#NoTrayIcon
Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("{HOME}", "Inf")
$run=MsgBox(36, "Run", "Run AutoEmpty?")
If $run=7 Then
Exit 0
EndIf
If $run=6 Then
$i = 9
While $i < 10
FileRecycleEmpty()
Sleep(1)
$i = $i - 1
WEnd
EndIf
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
sleep(1)
ToolTip('Script is "Paused"',0,0)
MsgBox(4096,"","Thank you for using AutoEmpty v1.0!")
Exit 0
EndFunc
Func Inf()
MsgBox(64, "Version" , "Version 1.0 of AutoEmpty. Written by Tommy Moiseve <tmoiseve@gmail.com>")
EndFunc
; End Script
Comments? Thanks!
- Tommy M.