Discussion:
loading SWFs like given by a list/content table
(too old to reply)
Jochen Califice
2007-09-25 21:54:06 UTC
Permalink
Hi!

Well, I'm new to AS and not native English spoeaking, too. I will try my
best to explain what I need...

I've got several SWF files. They all have the same size and use the same
value of frame per second. I want to build up an content table. The SWF
files shall play conform to the order given in the content table. That means
the content table (is it a SWF/FLA file, too?) says the following order:

- flash5.swf
- flash 3.swf
- flash 4.swf
- flash1.swf
- flash2.swf

Now flash5.swf shall start, play until the end. When finished flash3.swf
shall be loaded until and. After finishing flash4.swf will be loaded and
play and so on.

Would someone be that nice to help me with that? I really don't know how to
realize that.

Thx a lot for your help!

Malo
akphotog
2007-09-26 01:01:05 UTC
Permalink
This might work for you....

http://www.jeroenwijering.com/extras/wizard.html
Post by Jochen Califice
Hi!
Well, I'm new to AS and not native English spoeaking, too. I will try my
best to explain what I need...
I've got several SWF files. They all have the same size and use the same
value of frame per second. I want to build up an content table. The SWF
files shall play conform to the order given in the content table. That
means the content table (is it a SWF/FLA file, too?) says the following
- flash5.swf
- flash 3.swf
- flash 4.swf
- flash1.swf
- flash2.swf
Now flash5.swf shall start, play until the end. When finished flash3.swf
shall be loaded until and. After finishing flash4.swf will be loaded and
play and so on.
Would someone be that nice to help me with that? I really don't know how
to realize that.
Thx a lot for your help!
Malo
akphotog
2007-09-26 01:01:32 UTC
Permalink
Oops...on the wizard, try playlist, using mixed media files...

http://www.jeroenwijering.com/extras/wizard.html
Post by Jochen Califice
Hi!
Well, I'm new to AS and not native English spoeaking, too. I will try my
best to explain what I need...
I've got several SWF files. They all have the same size and use the same
value of frame per second. I want to build up an content table. The SWF
files shall play conform to the order given in the content table. That
means the content table (is it a SWF/FLA file, too?) says the following
- flash5.swf
- flash 3.swf
- flash 4.swf
- flash1.swf
- flash2.swf
Now flash5.swf shall start, play until the end. When finished flash3.swf
shall be loaded until and. After finishing flash4.swf will be loaded and
play and so on.
Would someone be that nice to help me with that? I really don't know how
to realize that.
Thx a lot for your help!
Malo
Jochen Califice
2007-09-26 04:18:09 UTC
Permalink
Hi akphotog!

Thx for your answer. That's almost what I need. But I didn't find any AS
code for that.
Is it able to build up an arry like

swffile[1]="flash5.swf";
swffile[2]="flash3.swf";
...

and then using something like:

$i=1;
while ($1<=5)
{
loadMovie($swffile[$i]);
}

Usually I'm a PHP developer and don't know much about AS :(

Greets

Jochen
Post by akphotog
Oops...on the wizard, try playlist, using mixed media files...
http://www.jeroenwijering.com/extras/wizard.html
Post by Jochen Califice
Hi!
Well, I'm new to AS and not native English spoeaking, too. I will try my
best to explain what I need...
I've got several SWF files. They all have the same size and use the same
value of frame per second. I want to build up an content table. The SWF
files shall play conform to the order given in the content table. That
means the content table (is it a SWF/FLA file, too?) says the following
- flash5.swf
- flash 3.swf
- flash 4.swf
- flash1.swf
- flash2.swf
Now flash5.swf shall start, play until the end. When finished flash3.swf
shall be loaded until and. After finishing flash4.swf will be loaded and
play and so on.
Would someone be that nice to help me with that? I really don't know how
to realize that.
Thx a lot for your help!
Malo
Jochen Califice
2007-09-26 04:20:12 UTC
Permalink
What I forgot:

The SWF file will be shown without any HTML. Just by double-clicking on the
file and using the flash player. It will be displayed at an 40" plasma
screen.

...Jochen
Post by Jochen Califice
Hi akphotog!
Thx for your answer. That's almost what I need. But I didn't find any AS
code for that.
Is it able to build up an arry like
swffile[1]="flash5.swf";
swffile[2]="flash3.swf";
...
$i=1;
while ($1<=5)
{
loadMovie($swffile[$i]);
}
Usually I'm a PHP developer and don't know much about AS :(
Greets
Jochen
Post by akphotog
Oops...on the wizard, try playlist, using mixed media files...
http://www.jeroenwijering.com/extras/wizard.html
Post by Jochen Califice
Hi!
Well, I'm new to AS and not native English spoeaking, too. I will try my
best to explain what I need...
I've got several SWF files. They all have the same size and use the same
value of frame per second. I want to build up an content table. The SWF
files shall play conform to the order given in the content table. That
means the content table (is it a SWF/FLA file, too?) says the following
- flash5.swf
- flash 3.swf
- flash 4.swf
- flash1.swf
- flash2.swf
Now flash5.swf shall start, play until the end. When finished flash3.swf
shall be loaded until and. After finishing flash4.swf will be loaded and
play and so on.
Would someone be that nice to help me with that? I really don't know how
to realize that.
Thx a lot for your help!
Malo
Loading...