AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Easy MP3 trasher to use with foobar2000

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  

Were you looking for this? :)
Yep
25%
 25%  [ 1 ]
Nope
75%
 75%  [ 3 ]
Total Votes : 4

Author Message
oxygenius



Joined: 16 Jul 2005
Posts: 1

PostPosted: Sun Jul 17, 2005 1:07 am    Post subject: Easy MP3 trasher to use with foobar2000 Reply with quote

Hope you enjoy it. I tried to use one for Winamp (http://www.autohotkey.com/forum/viewtopic.php?t=161&highlight=mp3), but it didn't work, so I did one myself Smile

One advantage in that one is that it only moves the MP3 to another dir, which makes it easy to recover accidental deletions.

Anyway, load a bunch of MP3 into foobar and enjoy killing the ones you don't want anymore.

CTRL+K kills the currently playing MP3 by stopping it, pressing the KB key that triggers the right click menu, then press the key that gets the file operations, then delete, then press enter. Then it also puts the next song playing.

CTRL+Right goes to the next and CTRL+Left goes to the previous file. It presses V and Shift+V respectively. It gets faster, as you also can use Left and Right to "scroll" inside the song and keys are more usable this way I think.

To make it really fast remove the confirmation box. I didn't have it in the beginning but I quickly added it after I deleted a song that I didn't want to...

By the way the loop to wait for the release of Ctrl, seems to be unnecessary with the confirmation box. But it's necessary otherwise.

Also, beware that accidental misuse in other windows hasn't been prevented.

Ric

P.S.: thank you to all the people that made this tool real, it saved my life in a project I've had a few weeks ago.

Code:
^Right::
   Send, v
return

^Left::
   Send, +v
return

^k::
   Loop
   {
      GetKeyState, ControlState, Control
      if ControlState = U
         break
   }
   MsgBox, 4388, Delete MP3 file, Are you sure?
   IfMsgBox, No
      return
   Send, z
   Sleep, 100
   Send, {APPSKEY}fd{ENTER}
   Sleep, 100
   Send, {SPACE}{ENTER}
return
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group