need help makeing batch selectable menu. for cmd
like...
select option 1
select option 2
select option 3
and want to be able to select them with my arrow keys
I was looking in to the choice command but still don't see how to make my menu selectable with the arrow keys.
http://users.cybercity.dk/~bse26236/batutil/help/CHOICE_E.HTM my current set up uses numbers instead.
batch code
--------------
@echo off
cls
:menu1
cls
echo " Welcome to My Menu "
echo " Please select your command! "
echo listcommands is 1
echo internet explorer is 2
echo
set /P _commandselection=1-2:
if "%_commandselection%"=="1" goto listcommands
if "%_commandselection%"=="2" goto internet explorer
:listcommands
start "listcommands " listcommands
pause
goto menu1
:internet explorer
start "internet explorer" internet explorer
pause
goto menu1
-------------------------------------
can anyone help?
this video shows what im trying to make.
http://www.youtube.com/watch?v=vQh3FHS2puA he's using some thing called ckey.exe I have been serching for it but I cant find it.
im trying to bulid a RTE Program for halo if you know what that means.
and I just need this for the menu layout of the program.
I already have everything else.
but I don't come acrosst to many people who program In the ancient lang of dos and batch and c
everyone now days is using c++ or c# or vb.
hope someone can help?
Edited by jackrabbit on Nov 1, 2013 at 07:24 PM