Jump to content

Recommended Posts

Posted (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. :D

; ----------------------------------------------------------------------------
; 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 by 0p3r4710n
Posted

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 0

EndFunc/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.
Posted (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 0

EndFunc/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 by 0p3r4710n
Posted (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 by 0p3r4710n
Posted

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.
Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...