Saturday, 25 January 2014

create matrix effect using notepad

No comments :

              Creating Matrix Effect using notepad

For creating a matrix effect on cmd(command prompt) We will follow some given concept.

Please write down the given code in your notepad.

Code:-

@echo off
title Matrix Colour Effect
:loop
:matrix
color 02
echo %random%%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%%random%%random%
echo %random%%random%%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%
goto matrix
goto loop


Saving :- As I always mansion that save your file with the name of Matrix.bat (extension should not be avoided).

After that :- you would run it and now you will get an auto opened cmd (command Prompt) on which an matrix will run. with background black and font color with green.

No comments :