Export to SWF format, keeping the same page formats

Hello

I have a document InDesign, CS5, with different pages. They are all double spreads of A4 except for two pages. One is A4 portrait on its own and landscape.

When I export to swf format, these pages turn into double page spreads, which means that I end up having what looks like a blank page next to my single page.

Is it possible to keep different page sizes when exporting to SWF format?

Thanks in advance,

ZoeByDesign

Not West not. InDesign exports your SWF using the size of the largest spreading in your document. Small gaps or pages will be exported to that as well size, filled with extra white space...

I suggest you change the size of these unique pages on the size of the other "spreads" (portrait A4 > A3 landscape) and fill the empty space you want in InDesign rather than let the SWF exporter to use white color. If you want it to look like it s single page, fill empty space with the same color, you as the background for your html-wrapper file.

Check this sample (cover page is actually a gap, but the left side is full of gray that was used as the background):

http://www.edocker.com/_demo/edocker-online-demo/index.html

Tags: InDesign

Similar Questions

  • Images with text on the same page in epub seem to be changing color to the export profile

    I create a fixed provision epub heavy photo and I noticed that after exporting, pictures with text on the same page are exported with a totally different and much more saturated look to them.  As if they were exported under a different color profile.

    All pages that include no text but just includes a graphic/photo, the image appears normal in the preview.  I tried several things like manually set two different images to specific color profiles.  I changed the conversion to ensure that everything is export in jpg format.  Cannot quite understand how to solve this problem.

    Has anyone experience this problem?

    He solved.  The problem was caused by blocks of text that had their transparency set to 0%.  Removing those, the problem has been resolved.

  • How to use DPS as Folio overlays when you export to SWF format?

    I create an interactive magazine in InDesign, it is decided that the magazine is exported to SWF format and downloaded on the website of our company for viewing by the public. I want things like blocks of text scrolling and slideshows. I knew InDesign had an update to include DPS features such as overlays in Folio, so I applied a superposition of slideshow and a floating frame, but none of them is not working after that I exported to SWF format. I always want to have slideshows and scrolling frames how can I have them again when you export to SWF format?

    Features DPS are only for DPS. SWF is about as dead as dead can be at this point.

    If you want to use some of these types of features on the web, I suggest to look in in5 by ajar Productions. http://ajarproductions.com/pages/products/IN5/?ref=footer

  • I made my largest site and how can keep the same size for all other sites?

    I did the 2 larger site and how to keep the same size for all pages when I re - open the web browser?

    You can use an extension to set a page zoom and the size of the default font on the web pages.

  • Is it possible to keep the same e-mail account but change the Windows Live ID

    Change hotmail (Windows Live ID)

    Hello

    I just wanted to know - is it possible to keep the same e-mail account, but change the Windows Live ID. I know that the password can be changed but how do I change the ID and keep the same account. Thank you

    Hello REMY Senguptta,.

    The best place to ask your question of Windows Live is inside Windows Live help forums. Experts specialize in all things, Windows Live, and would be delighted to help you with your questions. Please choose a product below to be redirected to the appropriate community:

    Windows Live Mail

    Windows Live Hotmail

    Windows Live Messenger

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums to www.windowslivehelp.com.

  • Several links to drop down to the same page.

    I'm trying to make a link to the same page of several drop-down lists. I'm allow MUSE to create drop-down menus on all Pages. However, I don't want to keep more than one copy of duplicate pages. Does anyone know how to create a second or third menu drop down for these pages to dupe button?

    Hi Pamela,.

    You can create a menu manual to point the finger the same page several drop downs.

    Kind regards

    Akshay

  • Bug. Can not put two edge animations animate on the same page

    Alrighty. Just thanked Adobe for fixation sensitive question scaling. Now, it seems to be a new. When I put two animations dashboard run on the same page, they both disappear completely from the view! Both in mode live view (or which saw fluid grid) and trying to get a glimpse into any browser. The responsive design works fine but if I put two animations on the same page that the two just disappear! GONE!

    Perhaps there is a code that I can use to prevent this. I did a number of tests during the last hour. My smile (from the reactive solution) is now again a frown. I can't keep working like that. Please let me know if there is something I am doing wrong. I have two animations on a page without worries prior to this version, but the delicate design did not work properly. The responsive design work NOW, but I can't have MORE than ONE ANIMATION on the same page. Thanks for your time. Best regards, Julian.

    The use, I did the modification required:

    
    
    
      
    
    
    
    
      
  • How to load several HTML5 canvas on the same page (the right way)

    Hello

    I struggled to load several animations of canvas on the same page. At the beginning, I thought that export movies with different namespaces and reload the libraries in a sequential workflow might work, but it doesn't. It still load just the last loaded movie. More info here: coding challenge: what am I doing wrong?

    Here's a sample of what I'm doing:

    1: publish two flash animations with namespaces customized to "lib" defined in the "publication settings": "libFirst" and "libSecond".

    2nd: Edit the canvas tags in the HTML page. One called "firstCanvas" and another one called "secondCanvas".

    3rd: change the javascript like this:

            <script>
                // change the default namespace for the CreateJS libraries:
                var createjsFirst = createjsFirst||{};
                var createjs = createjsFirst;
            </script>
            <script src="//code.createjs.com/easeljs-0.7.1.min.js"></script>
            <script src="//code.createjs.com/tweenjs-0.5.1.min.js"></script>
            <script src="//code.createjs.com/movieclip-0.7.1.min.js"></script>
            <script src="{{assets}}/js/first.js"></script>
            <script>
                function initFirstAnimation() {
                    var canvas, stage, exportRoot;
    
                    canvas = document.getElementById("firstCanvas");
                    exportRoot = new libFirst.first();
    
                    stage = new createjsFirst.Stage(canvas);
                    stage.addChild(exportRoot);
                    stage.update();
    
                    createjsFirst.Ticker.setFPS(libFirst.properties.fps);
                    createjsFirst.Ticker.addEventListener("tick", stage);
                }
            </script>
            <script>
                // change the default namespace for the CreateJS libraries:
                var createjsSecond = createjsSecond||{};
                var createjs = createjsSecond;
            </script>
            <script src="//code.createjs.com/easeljs-0.7.1.min.js"></script>
            <script src="//code.createjs.com/tweenjs-0.5.1.min.js"></script>
            <script src="//code.createjs.com/movieclip-0.7.1.min.js"></script>
            <script src="{{assets}}/js/second.js"></script>
            <script>
                function initSecondAnimation() {
                    var canvas, stage, exportRoot;
    
                    canvas = document.getElementById("secondCanvas");
                    exportRoot = new libSecond.second();
    
                    stage = new createjsSecond.Stage(canvas);
                    stage.addChild(exportRoot);
                    stage.update();
    
                    createjsSecond.Ticker.setFPS(libSecond.properties.fps);
                    createjsSecond.Ticker.addEventListener("tick", stage);
                }
            </script>
    
    <body onload="initFirstAnimation(); initSecondAnimation();">
    
    
    
    

    Could someone please answer with best practices on how to do it? If possible, without the need to reload all libraries...

    If I only need to show a flash animation at the same time, it would be more efficient to cut/paste the canvas using jQuery tag in the DOM and reload a different lib on this subject?

    Thank you very much!

    #flash #reborn

    I was able to remedy. In the end, it was easier than I thought. Just publish using namespace different 'lib' for each film, load all the scripts at the end of theand add the following in the onload or ready events:

    $(document).ready(function () {
    
            var canvas, stage, exportRoot;
    
            // First movie
            canvas = document.getElementById("firstCanvas");
            exportRoot = new libFirst.first();
    
            stage = new createjs.Stage(canvas);
            stage.addChild(exportRoot);
            stage.update();
    
            createjs.Ticker.setFPS(libFirst.properties.fps);
            createjs.Ticker.addEventListener("tick", stage);
    
            // Second movie
            canvas = document.getElementById("secondCanvas");
            exportRoot = new libSecond.second();
    
            stage = new createjs.Stage(canvas);
            stage.addChild(exportRoot);
            stage.update();
    
            createjs.Ticker.setFPS(libSecond.properties.fps);
            createjs.Ticker.addEventListener("tick", stage);
    
            // Third movie
            canvas = dument.getElementById("thirdCanvas");
            exportRoot = new libThird.third();
    
            stage = new createjs.Stage(canvas);
            stage.addChild(exportRoot);
            stage.update();
    
            createjs.Ticker.setFPS(libThird.properties.fps);
            createjs.Ticker.addEventListener("tick", stage);
    });
    
  • Force summary Sub totals on the same page as the repeating group

    Hello people,
    I have a group of left report where I show Patients and visits they have taken for each Department.
    I then did a Sub Total of the number of visits, the Patient took. I want to assure you that the subtotal shows
    upward on the same page as the data in the repeating group. I tried to use an anchor, but the report doesn't.
    It gives an error: REP 1213 - reference field column to a frequency lower than his group when I have the extendable chassis anchor foot sub total
    and 1814 REP report cannot be formatted. Object "Horizontal" can never fit into 'M_1' when I try to anchor the opposite effect.

    My goal is to show totals of Sub (Total) on the same page as the Patient and do not go to the next page. I have attached the dotted line and Total (label and field) in one frame.

    Release of the report:
    Patient ID     Patient Name              Department              Visit
    ======================================================================
    1001           Mary Poppins              Department 001              3
                                             Department 002              4
                                             Department 003              1
                                             -----------------------------
                                             Total                       8
                                             -----------------------------
    
    1002           Peter Pan                 Department 001              2
                                             Department 002              1
                                             Department 003              2
                                             -----------------------------
                                             Total                       5
                                             -----------------------------
    Thanks in advance!

    Pls set the property (page protect the patient details and framework that contains two sub total) to yes.

  • Open another SWF file in the same window of the browser?

    I designed a website, the first HTML page. How to code a button to load another SWF file in the same web browser window?

    The example site uses Flash.  If you want it works exactly the same as you do not want to use the Flash.

    If you want similar functionality, then you can simply use the navigateToURL() function to open the new page with the swf site integrated into it.

    Explaining the AS3 button Code
    --------------------------

    Assume that you create a button symbol.  Since this is a button, it is already a car animation object that will react to mouse interactions, but only visually at this stage.  The first thing you need to do to make it useful down must assign a unique instance name.  If you drag a copy of it on the stage of the library, and while it is still selected, enter you this unique instance for her name in the Panel properties... say you name "btn1.

    In AS3, to make a button with the code, you must add a listener of events and event handler for it function.  You may need to add a little (for different events, like reversal, deployment, by clicking on it, but for now let's just say you want to be able to click them to get a web page.)  In the scenario that contains this button, a layer of separate actions that you create in a similar framework where this button exists, numbered, you must add the event listener:

    Btn1.addEventListener (MouseEvent.CLICK, btn1Click);

    The name of the unique function for the treatment, the click of this button is specified at the end of the assignment of event listener, so now you just have to write this function:

    function btn1Click(evt:MouseEvent):void {}

    var url: String = "http://www.awebsite.com/awebpage.html";

    var req:URLRequest = new URLRequest (url, "_self");   "_self" indicates that it takes to open in the same window

    navigateToURL (req);

    }

  • Culture in two different places in the same page

    What on Earth, I want to crop in two different places in the same page. For example, I want to keep something in the upper part and something in the lower part, but skip the other parts. What happens on Earth, I can do that, gentlemen?

    There is a rectangle of cropping by page.  What the parties 'ignored' would look like? Flat white?

  • Adobe Media Encoder save/export as swf formats?

    Adobe Media Encoder save/export as swf formats?

    If yes how?

    Thank you

    N °

    Why would you do that?

    You can view and export to F4V or FLV formats if your intention is to play the videos in Flash Player.

    formats that SOUL can export:

    http://helpx.Adobe.com/Media-Encoder/using/file-formats-supported-export.html

  • How can I combine 2 page .pdf CAP/photo on the same page?

    I have the front and the back of my driver's license in 2 pages of a .pdf file.

    How can I have them both on the same page, so that they are indeed on 1 page only, and the copy can be printed on 1 page that too.

    Print to the Adobe PDF 2 pages per sheet format.

  • Link on the sidebar that will display the results in the middle of the same page column

    It's me again...

    The idea is to keep viewers on the same page.  I want to have the links in the left sidebar when you click will bring information and photos in the stratification of the middle column which is originally in the middle column.  It's kind of like swap image (which I work with a large number), but it would not be a case of glide mouse.

    Thanks for your help,

    Sandy

    Fixed position elements are exactly that.  Fixed compared to the upper left of the browser.  Since fixed elements are removed from the normal document flow, they do not behave like floats by-side.

    Nancy O.

  • export to swf format

    I read how the premier exports to all the formats swf but I could not find the swf in format selections when I export, have I missed something? Can someone show me how to export to swf format?

    Thank you

    Mike

    Export as flv or f4v.  Look for other options flash encoder.

    PR will not export a "swf".

Maybe you are looking for