0p3r4710n Posted April 24, 2005 Posted April 24, 2005 (edited) 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. expandcollapse popup; ---------------------------------------------------------------------------- ; 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. Edited April 24, 2005 by 0p3r4710n
Insolence Posted April 24, 2005 Posted April 24, 2005 Great first script Very cleanly written, nice job. A bit ill-tabbed, but it looks pretty good overall. Might want to fix this section's indents:[Func Terminate() sleep(1) ToolTip('Script is "Paused"',0,0) MsgBox(4096,"","Thank you for using AutoEmpty v1.0!") Exit 0EndFunc/code] "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
0p3r4710n Posted April 24, 2005 Author Posted April 24, 2005 (edited) Great first script Very cleanly written, nice job. A bit ill-tabbed, but it looks pretty good overall. Might want to fix this section's indents:[Func Terminate() sleep(1) ToolTip('Script is "Paused"',0,0) MsgBox(4096,"","Thank you for using AutoEmpty v1.0!") Exit 0EndFunc/code][post="75317"]<{POST_SNAPBACK}>[/post]yeah I was going back and editing a lot so I lost some of the correct indentations. Thanks for the feedback though =)I also need some ideas for some more noob-friendly scripts. I wrote an autoclicker for no particular reason but to test what I had learned. I think Im going to try something that involves moving the mouse and such (already made a handy little thing that tells the coords of your mouse... autoit is turning out to be a really fun language =p). Edited April 24, 2005 by 0p3r4710n
CyberSlug Posted April 24, 2005 Posted April 24, 2005 I don't mean to knock your script, but it's simple to configure Windows to always bypass the recycle bin Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
0p3r4710n Posted April 24, 2005 Author Posted April 24, 2005 (edited) ='( Friend told me that shortly after I posted this... But I don't care, it's my first script and it doesn't really matter if it's useful or not I guess =/ Edited April 24, 2005 by 0p3r4710n
Insolence Posted April 24, 2005 Posted April 24, 2005 As for easy newb-friendly AutoIt scripts, try to automize your favorite game Very fun. "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
fmen Posted April 24, 2005 Posted April 24, 2005 As a newbie, I can really appreciate a script like this. Thanks. I wish ther were a section in this terrific board specifically for beginners. I know that it would realy help me.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now