Quote: "i started off by using the load music command and realized that in in order to load a number of mp3's i needed to use load music command for each mp3"
@Lucas Tiridadth
I had the same problem when I made my material editor...I had to load them all at once. So it is possible with this example code...put this piece of code where you have some images, and the code will open all of them (bmp or jpg) we could even add .tga .3ds .dbo every media we need, all at once .
set dir "media"
find first
repeat
file=file+1
nam$=get file name$()
tip=get file type()
if right$(nam$,4)=".bmp" or right$(nam$,4)=".jpg" then load image nam$,file
if image exist(file)
sprite file,30,30,file
size sprite file, 400,400
sleep 1500 `slice time
endif
find next
until get file type()=-1
do
sync
loop
Cheers.
I'm not a grumpy grandpa