ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Finished Programs

DONE: Icon Menu Launcher

(1/2) > >>

psionics:
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.  :-[



skwire:
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:
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:
 :up: Sweet!!! Just as I requested!!!! Thanks you so much!!!!! This is my first request that is solved!!  :)

rgdot:
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 :)

Navigation

[0] Message Index

[#] Next page

Go to full version