Do you have both a part0 and part1 folder? How many images in each and how is your desc.txt file set up?
Okay, hang on for this one. The logo folder is just the DarkSlide boot logo. I'm assuming that the "DROID" and "SPIN" folders are my 0 and 1. As for the rest, I am all ears!
LOGO folder - DroidCyex320x480_P_00000 - DroidCyex320x480_P_00014
DROID folder -has a DroidCyex320x480_P_00015(png) -
DroidCyex320x480_P_00060(png)
SPIN folder - DroidCyex320x480_P_00061 - DroidCyex320x480_P_00090
DESC file -
# 320 wide, 480 high, 15 frames a second
320 480 15
# p means we're defining a part
# first number is repeat count, 0 means infinite
# second number is delay in frames before performing the next part
# so if you are playing 15 frames a second 15 would be... one second
# string defines the directory to load files from
# files will be loaded in order but names don't matter
# s defines a sound for a part
# sounds will be loaded from /system/media
# oggs with loop points will loop automatically
# only one sound will play at a time
# timing is driven by the part, not the sounds
# if you want no sound, say nothing
# logo
p 1 0 logo
# droid
p 1 0 droid
s droid.ogg
# spin forever
p 0 0 spin
# must have newline after each part