swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] make failed on debian


From: Matthias Kramm
Subject: Re: [Swftools-common] make failed on debian
Date: Sat, 8 May 2004 18:40:59 +0200
User-agent: Mutt/1.5.4i

On Sat, May 08, 2004 at 06:09:51PM +0200, Matthias Kramm wrote:
> # slides_plus_sound.sc
> .flash name="slides_plus_sound.swf" fps=1 # 1 frame per second
>     .swf slides "slides.swf"
>     .stop slides
>     .sound sound1 "sound_for_slide1.swf"
>     .sound sound2 "sound_for_slide2.swf"
>     .sound sound3 "sound_for_slide3.swf"
>        ...
> 
>     .frame 0
>       .play sound1
> 
>     .frame 15 # slide 1 lasts 15 seconds
>       .nextframe slides
>       .play sound2
> 
>     .frame 25 # slide 2 lasts 10 seconds
>       .nextframe slides
>       .play sound3
>       ...
> 
> .end

Oops. Make that

# slides_plus_sound.sc
.flash name="slides_plus_sound.swf" fps=1 # 1 frame per second
    .swf slides "slides.swf"
    .put slides
    .stop slides
    .sound sound1 "sound_for_slide1.wav"
    .sound sound2 "sound_for_slide2.wav"
    .sound sound3 "sound_for_slide3.wav"
       ...

    .frame 0
        .play sound1

    .frame n+=15 # slide 1 lasts 15 seconds
        .nextframe slides
        .play sound2

    .frame n+=10 # slide 2 lasts 10 seconds
        .nextframe slides
        .play sound3
      ...

.end


Greetings

Matthias






reply via email to

[Prev in Thread] Current Thread [Next in Thread]