[batch] make text "blink"

sylvain-a -  
 fredg -
Hello,
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

  1. fredg
     
    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
    1
  2. sylvain-a
     
    <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 ...
    0
  3. sylvain-a
     
    :-( As far as I can see, I'm not the only one who doesn't know...
    0
    1. Prince333 Posted messages 3 Status Member
       
      Salut, j'ai le même problème que toi. Peux-tu me dire comment on fait si tu trouves la solution ?
      0
    2. Prince333 Posted messages 3 Status Member
       
      Salut, j'ai le même problème que toi, peux-tu me dire comment on fait si tu trouves la solution ?
      0
    3. Prince333 Posted messages 3 Status Member
       
      Hi G, the same problem as you. If you find it, let me know.
      Thanks.
      0
  4. vladivostok Posted messages 239 Status Member 20
     
    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?
    0
    1. Prince333
       
      No, I know we can do it in batch. I saw a video on YouTube where the guy makes his name blink, so we can do it, but how?
      0
  5. scriptiz Posted messages 1494 Status Member 425
     

    @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 ^^
    0
    1. Prince333
       
      c'est bien mais on l'arrête comment (par exemple :)

      @echo off
      title cleaner
      color 80
      cls
      :menu
      echo.
      echo créé par : sylvain version : 1.0 echo.
      echo menu
      echo.
      echo appuyer sur :

      comment on peut faire que clignote "menu" tout seul ?
      (sans tout le texte)
      0