Magazine page flip

Hi, Iam not the quickest when it comes to indesign tech problems so hopefully someone can help me.
I have created a magazine in Indesign with animated text, video files and images as I want the magazine to be interactive.
What im struggling with is the best way to get this onto my website for people to read ( its a flip magazine)
This is what I want to do.....
Have an image of the front cover on a page on  the site so that when people click on it they go straight to the magazine and can turn the pages, play video ect, just like the PDF magazine flip software.
Do I have to use something such as YUDU or  ISSUU?
Do I need to save the Indesign file as an SWF to keep the page turning features, animation and video?
Thanks to all that reply

AFAIK you can´t use SWF file exported from indesign with those services you mentioned... but you can of course publish that SWF to your server by yourself. When you export SWF, indesign creates 3 things for you, SWF file which is actual content of your magazine, Resources folder that includes all the videos etc. externally placed materials + one HTML file which is a wrapper for the SWF. You have to upload all those 3 things to your server and then you have your magazine published.
If you want to refine your magazine with navigational user interface + some extra features like zoom for instance, you may want to take a look at http://www.edocker.com
Here´s a sample magazine made from indesign with eDocker2 Desktop Publisher
http://www.edocker.com/_demo/edocker-online-demo/index.html

Similar Messages

  • How to make Page Flip effect?

    Hi there
    I want to convert my pdf file to page flip book. And put the flip books on my webpage. I have been considering these two http://www.axmag.com and http://www.page-flip.com.
    Have you guys purchase or know anything about aXmag and page-flip? or any other good software to recommend?

    I know nothing regarding the two you mention, nor of what I've linked below.  There was another posting some time ago that provided these...
    Page Flip Links
    Free solution/software:
    http://www.axmag.com/submit.html 
    Free basic online page-flip creator,PDF format support,great page flip effect.FYI, you need to pay for pro service.
    http://www.swftools.org/download.html software,more importantly it offers Linux Version (Sourcecode) at the/download.html.nix develpers can give that a shot.
    Local
    http://www.issuu.com platform of magazine and ebook, which can be regarded as page flip solution.This site features in brilliant special effects.
    Online
    Java and Flash project code:
    http://www.sitepoint.com/examples/jquery/animate4.php
    Java code for page-flip,crude,but functional.
    http://pageflip.hu/help.html complete flash tutorial of page flip, basically in Flash.
    A
    http://page-flip.com/products/flash-component-as2/ powerful add-on for Adobe Flash MX-CS4 for creating page flip effect. Provides great extending and integration possibilities. 199 (euros) per half year.
    A

  • "Page Flip" transition for slideshow widget

    Anyone know if there will be a "page flip" transition for slideshow widget in a future release of Adobe Muse?  I'm trying to build a small magazine in Muse and a page flip transition would really help.

    Will something like http://muse.adobe.com/exchange-library/flip-cards work for  your needs?

  • Interactive page flip site..help me

    hi iam italian restaurant chef , i want transorm my sito www.ilfaggioselvatico.it  in an interactive page flip site with hipher link sound video and photo...i see indesign in a pc of my friend thi is incredible software...
    and now i buy indesigned and i want to create this site. can you help me or send me a tutorial
    thanx a lot

    airbornebanana wrote:
    > Hi.
    > I need some help... someone to point me towards a
    tutorial on how to make a
    > flip book i Flash from pdf, indesign (an online magazine
    with a
    > flip-page-feature) and from photos (a photo album)
    > Please point the direction
    >
    pageflip.hu
    download ready made, easy to customize file ...
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How do I change the theme in Presenter to publish a page flip effect?

    I would like to change the theme in Presenter to save as and look like: http://page-flip.com/
    How do I change the theme in Presenter to publish a page flip .swf & .pdf effect?
    Thank you for reply with help!

    You can increase the font size and automatically page view changes. Go to menubar; Reading -> PDF View or Epub Text Size (depending upon the ebook) and increase the size.

  • Direct link to specific page in page flip swf?

    This may have an easy answer, but is there a way to link directly to a specific page in a page-flip swf via direct link from another site/web page/etc.?
    If my page flip swf is on myzines.com/2010-08-01.html ...
    Is there a way to link from any other web page to the page noted above and directly to page 12 of the swf?
    Something like myzines.com/2010-08-01.html#page12 or myzines.com/2010-08-01.html?page=12 perhaps?
    Seems like it should be possible, but I'm not seeing it and haven't seen anything in the forums. Any leads would be appreciated.

    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=317300
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=326332

  • How to get the Page flip effect through prospective transition in javafx

    Hi
    I am trying to implement the page flip effect through prospective transition, but i am facing difficulty in implementing.

    You can try converting done related JavaFX 1.x scripts to JavaFX 2.x code:
    http://www.fangengine.org/extensions/JavaFXCoder/javafx-sdk/samples/PhotoFlip/index.html
    http://learnjavafx.typepad.com/weblog/2008/01/turn-the-page-u.html

  • Page flipping with Volatile Image.  Need help :)

    Hello all,
    Could someone point me to a nice tutorial which specifically addresses setting up page flipping with Volatile Images as the buffer? I haven't had any trouble with the generic BufferStrategy way of doing things, but it looks like the absolute fastest way to go is page flipping. Any info on this subject would be appreciated. I am a student who is making his first attempt at setting up a fullscreen video game...well if you want to call it that! :) I am shooting for Pong as a first project!
    Please feel free to send me the info at [email protected], and thanks much.
    Kmyers

    If you're using Windows, then your picture is already most likely
    being stored as volatile. You should look for an article on the
    web discussing Java rendering internals as of 1.4 do a search for
    "java automatic images" you'll probably find some useful info.
    But if you insist you can just fire up a debugger and
    play with it until you finally figure out what it's doing..
    You just need to do a createVolatileImage as opposed to createImage
    when creating your buffers.. make sure to use
    createBufferStrategy(2) (or if you want to be totally sure print out
    the capabilities of the buffers available and select one that you
    know for sure supports back and front buffers that are "truly"
    volatile..
    it turns out in my experience on win2k that using normal "automatic"
    images via Component.createImage() are faster than volatiles perhaps
    because I tend to do alot of scaling ops which are not as of yet
    accelerated..
    here's some stuff that might help you:
    good luck!
    static public void printBufferCapabilities(BufferCapabilities bc) {
    System.out.println("Printing Buffer Capabilities: ");
    if (bc.isFullScreenRequired())
    System.out.println("Full screen is required");
    else
    System.out.println("Full screen is required");
    if (bc.isMultiBufferAvailable())
    System.out.println("MultiBuffering is available");
    else
    System.out.println("MultiBuffering is not available");
    if (bc.isPageFlipping())
    System.out.println("PageFlipping is available");
    else
    System.out.println("PageFlipping is not available");
    ImageCapabilities ic = bc.getBackBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("BackBuffer is accelerated");
    else
    System.out.println("BackBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("BackBuffer is truly volatile");
    else
    System.out.println("BackBuffer is not truly volatile");
    ic = bc.getFrontBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("FrontBuffer is accelerated");
    else
    System.out.println("FrontBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("FrontBuffer is truly volatile");
    else
    System.out.println("FrontBuffer is not truly volatile");
    static public void printImageCapabilities(ImageCapabilities ic) {
    System.out.println("Printing Image Capabilities: ");
    if (ic.isAccelerated())
    System.out.println("Image is accelerated");
    else
    System.out.println("Image is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("Image is truly volatile");
    else
    System.out.println("Image is not truly volatile");
    static public void printFlipContents(BufferCapabilities.FlipContents flip) {
    if (flip == null) { System.out.println("Dude your flip is flipping NULL!"); return; }
    if (flip.equals(BufferCapabilities.FlipContents.BACKGROUND))
    System.out.println("Flip Contents are BACKGROUND");
    else if (flip.equals(BufferCapabilities.FlipContents.COPIED))
    System.out.println("Flip Contents are COPIED");
    else if (flip.equals(BufferCapabilities.FlipContents.PRIOR))
    System.out.println("Flip Contents are PRIOR");
    else if (flip.equals(BufferCapabilities.FlipContents.UNDEFINED))
    System.out.println("Flip Contents are UNDEFINED");
    else System.out.println("Where the hell did you find this flipping Flip Contents, now flip off!");
    static public void printElapsedTime(String desc, long start, long stop ) {
    long s = stop - start;
    double elapsed = (double) s/1000;
    System.out.println("The elapsed time for "+desc+" :"+elapsed);
    public static void chooseBestDisplayMode(GraphicsDevice device) {
    DisplayMode best = getBestDisplayMode(device);
    if (best != null) {
    device.setDisplayMode(best);

  • Using animation in a page flip

    i would like to add an animation page inside
    a page flip wil you please help ....
    Regards
    Prajin

    Here is the pageflip animation using AS3 http://www.megazine3.de/?c=home&l=en
    and here is the free class http://www.bytearray.org/?p=77
    AS2 sample: http://pageflip.hu/free.php

  • Embedded .swf (page flip) Very Slow

    Hello,
    Within my flash file, I embedded a .swf (page flip) that is taking too long to load. When flipping through, it lags. Is there anything that could be done?
    Reference:
    http://www.lucysonlinestore.co.cc/home.html
    The .swf (page flip) is under "Clothes".
    Any advice appreciated.

    kglad,
    I apologize for the misunderstanding. I don't wish for anyone to go through my files. My intention of posting on here is for anyone with the past experience of slow performing page flips to share their solutions. Since page flip is so popular in flash sites, I thought people would have encoutered such problems. I included my site to show as an example. I do appreciate you taking the time and effort to go through the files and test run them.
    The error you're referring to is caused by declaring and using the loader in frame 3. In frame 1, I'm unloading the loader. If I declare the loader in frame 1, then the unloading won't work properly.
    I did search online for past posts, while many people encountered page flip performance issues, there is not much solutions out there. I thought better solutions are out now. It's at times like this that I wish I knew more about flash and AS3. Started to learn about a week ago doesn't help solving the errors.
    Thank you for looking into this.

  • Page flip?

    I am trying to find an inexpensive way to make my pdf files look good...
    I wanted the documents to have the "page flip" capabilities. 
    someone suggested:
    You could place PDF files in InDesign and export to a page-turnable SWF file. If you don't have InDesign, grab the fully functional 30-day trial to do the conversion from PDF to SWF
    I am using InDesign CS2, and when I export, I do not see a SWF file option? -- the closest I see is SVG?
    is there something that is not activated in my version?
    any suggestions?
    Thanks, Katah

    You mean like this:
    http://dl.dropbox.com/u/133381/wiredFolder/index.html
    Resolution of wire is a bit lousy, but I couldn´t find better for this demo.
    That is made from InDesign CS4 (CS5 will do as well). The trick is to use single pages, not facing pages... and place the wire at the middle of the page. If SWF is exported as single pages, page transition will fold the page at horizontal half point... and it looks like page is folding by using same line where the wire is....

  • Page-Flip component: Varying page sizes?

    Hi all, I have a question for you about the page-flip
    component. Is it possible to make the pages within a single book
    different sizes? In other words, could I have a cover page that's
    500 x 500, and behind it a page that's 550 x 500, and behind that
    one a 600 x 500 page, and so on? The idea would be that you could
    see a bit of some of the pages before actually reaching them.
    According to the manual, there seems to be some kind of page
    height and page width functions, but I'm not sure how to use them.
    Any advice?
    Thanks!

    Not quite sure about Page Flip component,
    See example05, is that something you need?
    http://blog.ggshow.com/index.php/extensions/2007/04/02/gg_book_pf2

  • Can I print calendar pages "flipped"?

    I print my calendars on 3-hole punch paper. iCal pages come out with the 3 holes on the bottom of the page. Because of how my book is arranged, I'd like to print them so that the holes are on the top of the page. I know I can simply flip the unprinted paper in the printer's paper feeder, but then I have to remember to put them back after I'm done, which I often forget to.
    Is there some way I can force iCal or the printer to print these calendar pages "flipped" so I don't have to physically do it in the paper feeder?

    I finally figured out how: select "Reverse Page Orientation" when printing.

  • When I publish from ibooks author will the pages flip like my other books

    When I publish from ibooks author will the pages flip like my other books the preview only slides side to side

    Pages continue to slide rather than flip for the horizontal orientation.  In the vertical orientation, the text scrolls up-and-down like a web page (again as shown in iBooks Author if you change the previewed orientation).  I'm not sure why Apple went with the different GUI for their textbooks, but its the same for the ones authored by the big publishers.  If you want to see what the format is like on the iPad, there's a short free textbook (Wilson's Life on Earth) and sample chapters from others available from the iBookstore.
    On a side note, one interesting thing about using texts in the two different orientations is that the formating changes as well.  Figures that show up as larger embedded images in the horizontal layout are smaller images in the left margin in the vertical layout, at least in Wilson's book.

  • Place panoramic window in Acrobat but it doesn't show if converted to a page flip brochure

    Hi there
    I am using Acrobat to insert a swf file of a 360 degree window so a user can view a room all around.  This can be added to a PDF document no problems but I would like to convert the document to a page turning brochure.  I have tried converting the document with the swf file in the PDF but it is not showing in the page flip brochure.
    Does anybody know if this is possible or reasons why it is not working or can be corrected.
    I look forward to hearing from you

    Hi
    I have been looking for another program/software package but can't find it. :-(

Maybe you are looking for

  • FCP 4.5 HD & QT7 disables External Monitor?

    I just installed QT7 and now I can't get my external monitor to work thru my ADVC-100 convertor. Anyone else have that problem and know a solution? Jon

  • Page not loading correctly

    http://www.greateriahomesearch.com/mailing-list.html Can someone tell me where i went wrong? Validation looks good,not sure where to go from there. Thanks

  • Adding Specific columns of dynamic internal table row into another column

    Hi Gurus, I need to add  few columns of a dynamic internal table row into another column: Article description hy01 hy02 total 101      panza         10     12      22 102      masht         12     12     24 dynamic internal table is created and colum

  • Default Settlement Rule of PM Maintenance Order

    Hi, While creation of settlement rule on Maintenance Order, Option appears of default settlement rule. Whenever i select that option on Settlement Rule definition screen, two rows appears for the same Cost reciever automatically ( One for Full settle

  • Outlook Sync Issue "Intellisy​nc- Store ID not in current config"

    I recently bought the BB Curve for my personal phone/organizer and have installed the software.  I have been trying to sync my BB to my 2007 MS Outlook, but for some reason it won't (my Outlook is not associated with MS Exchange).  It goes through th