Thread: Avatar help
View Single Post
Old 02-28-2006, 08:37 AM   #13 (permalink)
BrownRob
500 GP Racer
 
BrownRob's Avatar
 
Join Date: Jun 2004
Location: Thornton, CO
Age: 38
Posts: 813
Casino Cash: $250
Sportbike: 97 Honda F3
BrownRob is on a distinguished road
Default

Have you tried using a program like this?

http://www.cequal2000.com/coolie/coolie_editor.htm

You can also try the manual way:
One way to create a movie is to manually combine multiple BMP format bitmaps into a single DIB file. Use a program which supports the BMP file type (Paintbrush, for example) to create several bitmaps, one for each frame of your movie. Then, use the COPY command to concatenate the BMP files into a DIB.

The following statement combines every BMP file in the current directory, in the directory order, into a single DIB file called ANIMATE.DIB:

COPY /B *.BMP ANIMATE.DIB

The next few statements copy four bitmaps, BITMAP1.BMP, BITMAP2.BMP, BITMAP3.BMP, and BITMAP4.BMP, in that order, to a DIB file called MOVIE.DIB:

COPY /B BITMAP1.BMP MOVIE.DIB
COPY /B MOVIE.DIB+BITMAP2.BMP MOVIE.DIB
COPY /B MOVIE.DIB+BITMAP3.BMP MOVIE.DIB
COPY /B MOVIE.DIB+BITMAP4.BMP MOVIE.DIB
__________________
"Sometimes you're the dog, sometimes you're the hydrant"
BrownRob is offline   Reply With Quote