Wednesday, June 3, 2009

Make a Matrix batch

UPDATE!!!:
In order to make this a screensaver, you simply:
1)run the file
2)Right-click the Title bar
3)Choose full screen>all future windos with this title
4)rename to Matrix.scr
5)right-click icon
6)Install
7)choose as screen-saver in desktop properties
_____________________________________________________________________________________


Make a Matrix batch
Unfortunatley its just a script, you cant make this a screen-saver :(
First: Open notepad
Second:Type the following:
@echo off
title Matrix
color 2
:start
echo %random% %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random%
%random% %random% //all on one line
cls
goto:start

Third: Click File > save as
Note: Before saving, change file type to 'All Files'
Fifth: Save the file as 'whatever'.bat
('whatever can be replaced with whatever you want, as long as you put .bat at the end)
You're done!!!!!


Syntax:
@echo off - Only executes command, does not display the command itself
color [2a] - determines color of background and text (2:text::a:background)
tilte - determines title of open window
:start - determines a marking place for script (i.e :start, :top, :bottom, ect.)
echo - displays that line (or result of command for that line)
%random% - generates a random number
cls - clears the screen
goto:[start] - goes to a section [marked start]
.bat - file extension for batch files
batch file - a file that consists of C++ coding which is executed in command promt
______________________________________________________________________________________________________
© 2009 All Rights Reserved by the National Company of Computer Modifications [not really] :P

No comments:

Post a Comment