View swf files in log format

I have a bunch of swf files and you can view them one at a time. However, I would like to view them in a log format like below: First view: swf file1 (store front cover) Next view: swf file2 (log page 1) left + swf file3 (log page 2) right Next view: swf file4 (log page 3) left + swf file5 (log page 4) right Next view: swf file6 (log page 5) left + swf file7 (log page 6) right etc etc Last view : swf filex (magazine cover)

So it looks like an amagzin transfusion. This is what you can see at issuu.com I would like to get software that will do this. Preferably free!

+1


source to share


2 answers


Check out Megazine, it's an open source flip engine that will do exactly what you need to write in AS3, the source code is available.



http://megazine.mightypirates.de/

+1


source


I'm not familiar with issuu.com, but it looks like you could easily accomplish this with basic HTML. Divide the viewport into two equal areas, side by side, and place a Flash object in each of them. If you have a fairly standard naming convention, you can programmatically define the files that are collected together. (even always on the right, odd on the left)

For a given page spread for this spread

leftpage = (spreadnumber * 2) - 2;

      



and

rightpage = (spreadnumber * 2) - 1;

      

So spread 3 would be pages (3 * 2) -2 = 4 (left) and (3 * 2) -1 = 5 (right).

0


source







All Articles