[batch] make text "blink"
sylvain-a
-
fredg -
fredg -
Hello,
I would like to know if it is possible to make a phrase blink in batch...
Thank you in advance
I would like to know if it is possible to make a phrase blink in batch...
Thank you in advance
Configuration: Windows XP Firefox 2.0.0.12
6 answers
-
Set VarMessClgnt=Here is the warning message
For /l %%i In (0,1,3) Do (
Cls &Color 0C &echo.&echo ==^> %VarMessClgnt% & Sleep 1
Cls &Color 0A &echo.&echo ==^> %VarMessClgnt% & Sleep 1
)
or under Windows 7
Set MesAvert=Run the file as Administrator, for this right-click on the file.
For /l %%i In (0,1,3) Do (
Cls &color 03 &echo.&echo ==^> %MesAvert% &timeout /t 2 /nobreak > NUL
Cls &color 0A &echo.&echo ==^> %MesAvert% &timeout /t 2 /nobreak > NUL
)
thank you kokotis -
-
<re />well let me explain better
I would like to have a tiny help in batch to know if we could "blink" a phrase or a word ...
I placed a menu but I would like to make the menu blink ...
my menu:
@echo off
title cleaner
color 80
:menu
echo.
echo create by: sylvain version: 1.0 echo.
echo menu
echo.
echo press:
so that’s it, I will stop here, what I would like to make blink is: menu (line 7)
how can I do that?
Thanks in advance ... -
-
No, the batch does not allow you to make text blink; it seems impossible to me. However, you could always try to do things that mimic it...
A text in a loop that erases the text and rewrites it behind, but that's not really what you should be doing.
A console is not originally made for such things.
What is this "Up" of 1 year, anyway? -
@echo off title cleaner color 80 :menu cls echo. echo created by: sylvain version: 1.0 echo menu echo. echo press: goto menu
However, it doesn’t look very nice ^^