computing
  • 0

Can I Use The Mouse In a Batch Menu?

  • 0

Hi, I have created a batch file which uses the following format:

:: ————————————- menu ——————————————

:mainmenu
CLS
ECHO Main Menu
ECHO ———
ECHO [1] Install Office 2010
ECHO.

:ch-main
SET /P mm=Please Select:
ECHO.

IF /I %mm%==1 GOTO inst-off
GOTO ch-main

:inst-off
:: “%tools%\office tools\” are set
START /D “%tools%\office tools\” office2010.exe
GOTO mainmenu

:EOF

:: ———————————————————————————————————–

What i’m after is being able to click the menu option and have the batch file perform the action required as if i’d typed the number in the menu…

Any clues?

Share

1 Answer

  1. I wrote a batch utility that may be of interest:

    http://judago.webs.com/downloads.ht…

    Edit: By which I mean that it can accept mouse and keyboard input.

    I also renamed it (twice) since I posted…

    • 0