topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday March 29, 2024, 8:31 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: DONE: Icon Menu Launcher  (Read 17990 times)

psionics

  • Participant
  • Joined in 2007
  • *
  • Posts: 119
    • View Profile
    • freestyle (nunchaku) forum.net
    • Donate to Member
DONE: Icon Menu Launcher
« on: June 22, 2009, 01:05 AM »
Clicking the desktop icon (.exe) to open menu from it's place. just a simple application for cluttered desktop.

[atach=1]

by making the .ahk available, users can change the desired icon to use and the application list. it doesn't have to be a tray application or a service whose always on. Its a stand-alone apps. This is my request.  :-[



« Last Edit: September 02, 2009, 12:38 PM by mouser »

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: IDEA: Icon Menu Launcher
« Reply #1 on: June 22, 2009, 01:15 AM »
Consider this AutoHotkey code:

Menu, Launch_Menu, Add, Assassin's Creed, Launch_Menu_Handler
Menu, Launch_Menu, Add, Grid Racing     , Launch_Menu_Handler
Menu, Launch_Menu, Add, Deadspace       , Launch_Menu_Handler
Menu, Launch_Menu, Add, Silent Hill     , Launch_Menu_Handler

Menu, Launch_Menu, Show

Launch_Menu_Handler:
{
    If ( A_ThisMenuItem = "Assassin's Creed" )
    {
        Run, c:\path\to\assassin's creed\game.exe
    }
    Else If ( A_ThisMenuItem = "Grid Racing" )
    {
        Run, c:\path\to\grid racing\game.exe
    }
    Else If ( A_ThisMenuItem = "Deadspace" )
    {
        Run, c:\path\to\deadspace\game.exe
    }
    Else If ( A_ThisMenuItem = "Silent Hill" )
    {
        Run, c:\path\to\slient hill\game.exe
    }
    ExitApp
}
Return

Obviously, change the paths to suit your games/system.

r0bertdenir0

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 50
    • View Profile
    • Donate to Member
Re: IDEA: Icon Menu Launcher
« Reply #2 on: June 22, 2009, 04:13 AM »
Microsoft used to have a Powertoy for Win98 called Folder Contents that displayed the contents of a folder in the right-click context menu but I looked around & it doesn't seem to work on XP :(

psionics

  • Participant
  • Joined in 2007
  • *
  • Posts: 119
    • View Profile
    • freestyle (nunchaku) forum.net
    • Donate to Member
Re: IDEA: Icon Menu Launcher
« Reply #3 on: June 22, 2009, 11:46 AM »
 :up: Sweet!!! Just as I requested!!!! Thanks you so much!!!!! This is my first request that is solved!!  :)

rgdot

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 2,192
    • View Profile
    • Donate to Member
Re: IDEA: Icon Menu Launcher
« Reply #4 on: August 29, 2009, 04:18 PM »
Wanted to say that I started using skwire's AHK script a couple of months ago and the simplicity and ease is just too good and really like the idea of ExitApp

Thanx :)

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: IDEA: Icon Menu Launcher
« Reply #5 on: August 30, 2009, 09:43 AM »
You're welcome.  I'm glad you've found it useful.   :D

delwoode

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 146
    • View Profile
    • Donate to Member
Re: DONE: Icon Menu Launcher
« Reply #6 on: April 06, 2011, 08:40 AM »
Uber cool you sultry wench  :o
hmm, dont ask me what i'm on today

Edvard

  • Coding Snacks Author
  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 3,017
    • View Profile
    • Donate to Member
Re: DONE: Icon Menu Launcher
« Reply #7 on: July 18, 2011, 08:36 AM »
Shortpopup does something similar, just point it at a folder of subfolders/shortcuts/etc and it'll display a nice menu.
I notice it can be a bit laggy though...
http://www.digitalli...hortPopUp/index.html

Nutty

  • Participant
  • Joined in 2005
  • *
  • Posts: 10
    • View Profile
    • Donate to Member
Re: DONE: Icon Menu Launcher
« Reply #8 on: July 20, 2011, 12:24 PM »
Another app similar to ShortPopUp is 7stacks (like ShortPop, also potentially laggy depending on the settings used).  The "Menu" stack type would be the one appropriate for the OP; because 7stacks is designed to be pinned to a taskbar icon, the other stack types appear at the bottom of the screen, but they use the Windows 7 Aero interface.

ajfudge

  • Participant
  • Joined in 2012
  • *
  • Posts: 14
    • View Profile
    • Donate to Member
Re: DONE: Icon Menu Launcher
« Reply #9 on: February 18, 2012, 01:26 PM »
QTTabBar is a Windows Explorer enhancer, but more than just adding tabs for a better folders management, it also integrates a lot of useful features like what was described in the first post (upon mouse-hover it not only previews the contents of a folder but also acts as a "mini-explorer" because it also travels deeper within subfolders. instant shortcut). There is little lag to no lag when I use this, except only when I have too many tabs open (is 20 too many?  :D) and I guess its quickness also depends on what the contents of folders (i find that video folders are rather slow). the only limitation is that  it doen't show files, only folders. and the hovering effect is only applicable to icons/folders where QTTabBar is present (meaning, no desktop support). but it's possible if you open the desktop folder in explorer (then again, why would you open your desktop folder in explorer? :huh:)

qtttabbar.sourceforge.net