Dec 192017
Grasp tutorial for making a simple animation demo. | |||
---|---|---|---|
File Name | File Size | Zip Size | Zip Type |
B1.CLP | 1816 | 818 | deflated |
B10.CLP | 1783 | 776 | deflated |
B11.CLP | 1646 | 731 | deflated |
B12.CLP | 1754 | 785 | deflated |
B13.CLP | 1725 | 744 | deflated |
B14.CLP | 1738 | 769 | deflated |
B15.CLP | 1818 | 838 | deflated |
B16.CLP | 1868 | 815 | deflated |
B2.CLP | 1782 | 805 | deflated |
B3.CLP | 1797 | 825 | deflated |
B4.CLP | 1727 | 799 | deflated |
B5.CLP | 1722 | 807 | deflated |
B6.CLP | 1704 | 767 | deflated |
B7.CLP | 1770 | 790 | deflated |
B8.CLP | 1821 | 796 | deflated |
B9.CLP | 1768 | 771 | deflated |
BEAR.DOC | 4608 | 1749 | deflated |
FRAME.PIC | 4768 | 158 | deflated |
OLDTIME.SET | 6151 | 1284 | deflated |
PRINTDOC.BAT | 512 | 142 | deflated |
TPCREAD.ME | 199 | 165 | deflated |
Download File GRASPTUT.ZIP Here
Contents of the BEAR.DOC file
A GRASP TUTORIAL
brought to you by The Winning Combination BBS
Las Vegas,Nv. (702) 870-8626
Terry Schwarz
Requirements: IBM or Compatible with color graphics and 1 floppy
By the time you put this Grasp Demo together you should have
a good understanding of the basics of Grasp. Just follow the
steps one by one carefully and construct it into a working demo.
This tutorial contains the pictures, clippings, font, and
instructions necessary to produce a Grasp Demo. It does not
contain the actual Grasp Program. You may download Grasp and
the Manual from The Winning Combination.
The first thing you need to do is check and make sure you have
all the files needed. Here is the list:
1. GRASP.EXE ( 1,2,and 3 are found
2. GLIB.COM on grasp program disk)
3. GRASPRT.EXE
4. FRAME.PIC
5. OLDTIME.SET
6. B1.CLP thru B16.CLP
Let's begin by copying all of the above files to a blank
formated disk. Label this disk GRASP WORK DISK
Now insert your Grasp work disk into drive a:
From the A: prompt type GRASP you should see the main menu in
a few moments. Use your curser key to move down to LOAD A FILE
and press Return. It should be waiting for you to type a name
or accept the default file name (tmpfile). We are going to call
it BEAR so type BEAR and press return. Now press enter once more
and you will be in the Grasp editor.
We can now start writing our DEMO..just type everything below
;COMMENTS ARE ENTERED AFTER A SEMI-COLON
VIDEO A ; CGA 4 COLOR MODE
PLOAD FRAME,1 ; LOAD PICTURE INTO BUFFER ONE
CLOAD B1,1 ; LOADING CLIPPINGS INTO BUFFERS 1 - 16
CLOAD B2,2
CLOAD B3,3
CLOAD B4,4
CLOAD B5,5
CLOAD B6,6
CLOAD B7,7
CLOAD B8,8
CLOAD B9,9
CLOAD B10,10
CLOAD B11,11
CLOAD B12,12
CLOAD B13,13
CLOAD B14,14
CLOAD B15,15
CLOAD B16,16
GO: ; A LABEL IS ALWAYS FOLLOWED BY A COLON
COLOR 3 ; PUTS DRAW COLOR TO WHITE
CLEARSCR ; CLEARS SCREEN TO CURRENT DRAW COLOR
PFADE 5,1 ; FADE PICTURE BUFFER 1 TO SCREEN
MARK 3 ; AFTER ENCOUNTERING A LOOP WILL RETURN 3 TIMES
PUTUP 100,50,16,100 ; AT LOCATION 100,50 BUFFER 16 FOR COUNT OF 100
FLY 100,50,100,50,5,15,1,-,16 ; FLIPS ALL 16 BUFFERS TO SCREEN
LOOP ; LOOPS TO MARK
FLOAD OLDTIME ; LOADS FONT INTO BUFFER
COLOR 2 ; PUTS DRAW COLOR TO RED
TEXT 50,20,"YOUR NAME GOES HERE",1000 ; WRITES TEXT TO SCREEN
WAITKEY 600,GO ; WAIT FOR COUNT OF 600 THEN GO TO LABEL GO:
Now press your F10 key and watch, this will save it and run
your DEMO. When you have seen enough press your ESC key and
you will be returned to the editor. Pressing ESC from the
editor will take you to the main menu. Use your cursor key to
move to QUIT GRASP and press return.
Using the Grasp Library program
type GLIB -u mybear.gl *.pic (press enter)
type GLIB -u mybear.gl *.clp (press enter)
type GLIB -u mybear.gl *.set (press enter)
type GLIB -u mybear.gl *.txt (press enter)
Your demo can now be ran using grasprt (GRASPRT MYBEAR)
If you feel that this tutorial was of help to you then call
The Winning Combination and donate a thank you or pass it on
to someone whom might also find it helpful.
The artist of the Bear is unknown to me but, is one of my
favorites.
Grasp is a product of: Microtex Industries, Inc.
GLIB -u mybear.gl *.set (press enter)
type GLIB -u mybear.gl *.txt (press enter)
Your demo can now be ran using grasprt (GRASPRT MYBEAR)
If you feel that this tutorial was of help to you then call
The Winning Combination and donate a thank you or pass it on
to someone whom might also find it helpful.
The artist of the Bear is unknown to me but, is one of my
favorites.
December 19, 2017
Add comments