heya! some of you old schoolers may remember me. i'm back to working on my Juxta Tempus, project. I've been away at Law School the past few years, and dug up my project this week. To my surprise, there was alot of code I had to change. One that has be boggled is an introduction scene that fades in my logo, ques music I had made, fades out, then loads my project. Well..it mostly works now.. it starts, a bit of a pause(where my logo would fade in), the music does que, and it fades..but you never see the logo fade in and out. the rest works as I rememberd it working.
function introduction()
rem load logo
load image "dfs.jpg",3
sprite 1,1,1,3
rem fade in logo
fadein =1
_fadein:
set sprite alpha 1,fadein:sleep 100
if fadein => 0 then fadein =fadein +10
if fadein => 250 then gosub _chant
gosub _fadein
rem chant
_chant:
wait 2000
load sound "mediasoundchant.wav",1
play sound 1
wait 2000
rem _fadeout
fade =250
_fadeout:
set sprite alpha 1,fade:sleep 100
if fade => 0 then fade =fade -10
if fade =< 0 then gosub begin
gosub _fadeout
endfunction
idea's?
Oh hey, and is "Lost in Thought" still about? miss talking code with him. taught me a ton.
x1b