Saved Bookmarks
| 1. |
Solve : Transmitting the characters of input into sound?? |
|
Answer» IS it possible so that maybe if the USER types in 11 it will make 2 low sounds, but 1 makes 1 low sound, 22123 is medium-medium-low-medium-high, but is that possible? It's just picking out the characters ina line of text and getting them to run a specified file. make soundreference: HTTP://ss64.com/nt/echo.html rem echo Control G and APPEND to file C:\batch>echo ^G >> mksound.bat C:\batch>type mksound.bat Code: [Select]:begin: set noise =^G echo %noise% GOTO begin C:\batch> mksound.bat C:\batch>set noise =^G C:\batch>echo ECHO is on. C:\batch>goto begin C:\batch>set noise = C:\batch>echo ECHO is on. C:\batch>goto begin C:\batch>set noise = C:\batch>echo ECHO is on. C:\batch>goto begin C:\batch>set noise = C:\batch>echo ECHO is on. C:\batch>goto begin C:\batch>set noise = C:\batch>echo ECHO is on. C:\batch>goto begin C:\batch>set noise = ^CTerminate batch job (Y/N)? ^C |
|