2

I often listen to music while I code.
Switching songs while in the middle of something damages your productivity because you have to move to another window.
How would you implement such a plug in and in what language would I be more comfortable with if I want to interact with the winamp sdk?
I'm a C++ programmer but I can get by with C# as well.

the_drow
  • 18,571
  • 25
  • 126
  • 193
  • This is almost a SuperUser question :P. What's wrong with hotkeys? You can get it going in 2 minutes. – Kobi Apr 15 '10 at 21:43
  • it is easier for sure configure some global shortcut for your favorite player (I did it for foobar2000), but the question is nice – Drake Apr 16 '10 at 08:30
  • How can I define a hotkey within Visual Stodio to control winamp? – the_drow Apr 18 '10 at 09:31
  • 1
    Winamp (and most players) supports *global* hotkeys - these will work in VS and any other program. – Kobi Apr 19 '10 at 04:06

2 Answers2

1

Winamp already has a global hotkey plugin (And several 3rd party hotkey plugins)

As far as the Winamp SDK goes, C/C++ is fine since the plugins are native dlls.

Anders
  • 97,548
  • 12
  • 110
  • 164
1

You can look at the Winamp SDK and should be really easy to make it in either C++ or C#. I had a similar problem and had made a addin for the same, it's not a full featured add in but takes care of the basics functionality.

And yes I knew of the global shortcuts before I developed it, sometimes you just are doing everything with the keyboard and don't want to switch to the mouse and sometimes you are using the mouse and don't want to go to the keyboard. It is just a very tiny thing for half a second increase in productivity!

You can make your own or give my addin a try if it fulfills your needs - http://www.tejasshirodkar.com/blog/2009/04/vswinamp-winamp-addon-for-visual-studio/