INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: How to use keyboard shortcuts when minimized?  (Read 2118 times)

Marty3d

  • Citizen of the Universe
  • *****
  • Posts: 1363
How to use keyboard shortcuts when minimized?
« on: September 26, 2006, 05:04:33 am »

As the title says, any ideas? Since I have too many programs running at the same time, I often have MC minimized to the notification area... :( It would be great to pause/start playback just using the keyboard.

Thanks!
/Martin
Logged


glynor

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 19608
Re: How to use keyboard shortcuts when minimized?
« Reply #1 on: September 26, 2006, 07:25:15 am »

Logged
"Some cultures are defined by their relationship to cheese."

Visit me on the Interweb Thingie: http://glynor.com/

Marty3d

  • Citizen of the Universe
  • *****
  • Posts: 1363
Re: How to use keyboard shortcuts when minimized?
« Reply #2 on: September 26, 2006, 02:08:41 pm »

That's the only way? Seems strange to show the keyboard shortcuts when right-clicking the icon if you can't use them...or?
Logged


glynor

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 19608
Re: How to use keyboard shortcuts when minimized?
« Reply #3 on: September 26, 2006, 03:01:37 pm »

That's the only way? Seems strange to show the keyboard shortcuts when right-clicking the icon if you can't use them...or?

You must have it set to minimize to the system tray.  The standard task bar "tab" (what the heck are those things supposed to be called anyway?) does not list the shortcuts when it is minimized.

There's no really effective way for MC to have system-wide shortcuts, as they could (and likely would) conflict with other application's shortcuts.  For example, in MC Control++ and Control+- modify the Volume, but those same commands increase/decrease font size in Firefox.

You could use a program like UltraMon (which has global hotkey support) to define your own hotkeys and then assign them to little scripts like these:

Play-Pause:

Code: [Select]
<package>
   <job id="vbs">
      <script language="VBScript">
         set WshShell = WScript.CreateObject("WScript.Shell")
         WScript.Sleep 100
         WshShell.Run("C:\WINDOWS\system32\mjextman.exe /MCC 10000,0")
      </script>
   </job>
</package>

FF:

Code: [Select]
<package>
   <job id="vbs">
      <script language="VBScript">
         set WshShell = WScript.CreateObject("WScript.Shell")
         WScript.Sleep 100
         WshShell.Run("C:\WINDOWS\system32\mjextman.exe /MCC 10004,0")
      </script>
   </job>
</package>

RW:

Code: [Select]
<package>
   <job id="vbs">
      <script language="VBScript">
         set WshShell = WScript.CreateObject("WScript.Shell")
         WScript.Sleep 100
         WshShell.Run("C:\WINDOWS\system32\mjextman.exe /MCC 10005,0")
      </script>
   </job>
</package>

etc.

UltraMon does a lot more than offer global hotkey support.  I'm sure there are other apps out there that do just that for free if you look around.
Logged
"Some cultures are defined by their relationship to cheese."

Visit me on the Interweb Thingie: http://glynor.com/
Pages: [1]   Go Up