How to maintain spreads after the moving pages from one file to the other?

I'm bringing together several chapters of books into one Indesign file, by clicking on the thumbnails in the Pages panel and selecting 'move Pages... "in the context menu.

The problem I have is that I can't keep the flow of the page between the chapters on the destination file, resulting in a spread broken between chapters when exporting to PDF format. Here is a screenshot to illustrate the problem, seen here between 18 and 19 pages:

Screenshot 2014-02-13 13.49.50.png

I tried to turn on and turn off the following options on the source and destination documents but nothing changes:

-To spread selected to Shuffle

-Allow to the Pages of the Document for Shuffle

I also deleted all sections of the destination document (as you can see on the screenshot, page 19 doesn't have the little black arrow that indicates a new section), with no chance either.

I also tried dragging the thumbnails manually but nothing helped. I just can't understand how to keep the spreads between chapters together page.

Can someone help me with this?

Thanks in advance

Mariano

In your turned scewwn, pages 14-18 are configured to not mix (you can tell by the [] aroound the numbers). Set the Shuffle and all should be well.

Tags: InDesign

Similar Questions

  • Other layout created when moving pages from one document to another

    I use CC on Windows 7 - I have 2 documents I want to merge and make 1 [I know people will want to know why I won't do - each document is the result of a fusion of different data - data merge can handle a master page - so I have 2 datamerges - 2 files - and just need to merge 2 files]

    This used to work wonderfully in ID 5.5 - now when I use the pages Panel to move the pages to the other document - it creates a different layout - it is so very hard for me to interlacing alternating pages - I use point power simply move the pages in place - but with right 2 layouts it behaves differently and in a manner I don't understand. Is there a way I can get around this? or avoid the alternative layout just have one. 2 page sizes are identical, so this isn't a problem of varying size - paragraph styles are the same as well. I tried to delete the alternative style but will not delete the pages more.

    Thank you

    There may be an even easier way.

    Right-click in the pages Panel document pages section or open the Panel menu and switch to view Pages in horizontally or vertically.

  • for each page, I'm going to (including this one) something keeps vomit "Secure connection failed" notice, like 50, one after the other - how to make them stop?

    When I open a web page, and sometimes between the two, something launches a 'warning' that the "secure connection failed". I've added nothing to Firefox, but I stopped most of the security plug-ins or extension nothing helps. It wouldn't be too bad if it happened a page once or twice but I'm talking 10,15,20 one after the other.

    Try this solution:

    https://support.Mozilla.com/en-us/KB/troubleshooting%20extensions%20and%20themes

  • How to maintain information in the ReelTime Toshiba that I keep on the toolbar?

    I hope I'm in the right place :-)

    I want to understand for once and for all, how to maintain information in the ReelTime Toshiba that I keep on my toolbar.

    If photos or documents on my dasktop: when I send the documents that they are lost of ReelTime and he said: "the file for this shortcut no longer exists."

    How can I avoid that because what is the point of ReelTime otherwise?
    Thank you.

    Hello

    Toshiba Reeltime is a free application, showing you a Visual timeline of your files recently accessed using graphic thumbnails like the images, so you can access your files more quickly.

    The Reeltime makes it easy to search for files up to recently used documents 5000 in a timeline. The presentation will be in chronological order reversed, so the most recently used files appears first. Filters allow you to limit the search to photos, text documents or other types.

    > If photos or documents on my dasktop: when I send the documents that they are lost of ReelTime and he said: "the file for this shortcut no longer exists."

    This occurs because of the file has changed

  • How to play audio files, one after the other?

    Hi, I try to create an application that tries to read audio files a few one after the other. I've created a loop for playing audio files. But only the first track is played and the second song is playing only about 5 seconds while the rest do not get played at all and the two files that have played, pieces overlap, which is not supposed to be. Can you guys help me? I need urgent assistance that I need to finish it tonight.

    Here are my codes I created for the application:

    package mypackage;
    
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.lang.Class;
    import javax.microedition.rms.RecordStore;
    import java.io.InputStream;
    import java.io.ByteArrayInputStream;
    import net.rim.device.api.media.protocol.ByteArrayInputStreamDataSource;
    import net.rim.device.api.system.*;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.extension.container.*;
    import net.rim.device.api.ui.UiApplication;
    import java.io.IOException;
    
    public class PlayMedia extends UiApplication{
        /**
         * Entry point for application
         * @param args Command line arguments (not used)
         */
        public static void main(String[] args){
    
            PlayMedia theApp = new PlayMedia();
            theApp.enterEventDispatcher();
        }
    
        public PlayMedia()
        {
    
            pushScreen(new PlayMediaScreen());
    
        }
        /**
         * A class extending the MainScreen class, which provides default standard
         * behavior for BlackBerry GUI applications.
         */
        final class PlayMediaScreen extends MainScreen
        {
            /**
             * Creates a new PlayMediaScreen object
             */
            public Player p = null;
            PlayMediaScreen()
            {
                String test3 = "Test(2seconds).mp3";
                String test5 = "Test(2seconds)2.mp3";
                //String test6 = "Test(2seconds)3.mp3";
                String test4 = "Test(2seconds)4.mp3";
                String test1 = "blind_willie.mp3";
                String test2 = "blind_willie.mp3";
                String mp3 = null;
    
                for(int i=0;i<5;i++){
                    if(i == 0){
                        mp3 = test1;
                    }
                    else if(i == 1){
                        mp3 = test2;
                    }
                    else if(i == 2){
                        mp3 = test3;
                    }
                    else if(i == 3){
                        mp3 = test4;
                    }
                    else if(i == 4){
                        mp3 = test5;
                    }
                    //testing
                    System.out.println("Song is "+ mp3 + "???????????????????????????????????????");
    
                    play(mp3);
    
                    System.out.println("Song is "+ mp3 + "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
                }
            }
    
            private void play(String mp3){
    
            InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
    
                try {
                    //p = Manager.createPlayer(source);
                    p = Manager.createPlayer(stream, "audio/mpeg");
                    p.realize();
                    p.prefetch();
    
                    //testing
                    System.out.println("Creating Players!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
                    System.out.println("The mp3 is " + mp3 + "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
    
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                    //testing
                    System.out.println("IO Exeception!!!!!!!!!!!!!!!!1 " + e);
    
                    //testing
                    System.out.println(p);
    
                } catch (MediaException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                //testing
                System.out.println("Media Exeception!!!!!!!!!!!!!!!!1" + e);
    
                //testing
                System.out.println(p);
                }
                /*
                 * Best practice is to invoke realize(), then prefetch(), then start().
                 * Following this sequence reduces delays in starting media playback.
                 *
                 * Invoking start() as shown below will cause start() to invoke  prefetch(0),
                 * which invokes realize() before media playback is started.
                 */
                try {
                    p.start();
                } catch (MediaException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                    //testing
                    System.out.println("Media Exeception for starting!!!!!!!!!!!!!!!!1" + e);
    
                    //testing
                    System.out.println(p);
                }
                /*
                try {
                    p.stop();
                } catch (MediaException e) {
                // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                p.deallocate();
                p.close();
                */
    
            }
        }
    }
    

    Please help me! Thanks in advance!

    What you will do, is add the PlayerListener and / if you have in your loop code would go in the treatment of the END_OF_MEDIA event. Once that noise has stopped you will start the next sound and add the listener of player.

    //Declarations
    PlayerListener pListen;
    String mp3 = "";
    
    ..........
    ..........
    
    pListen = new PlayerListener(){
       public void playerUpdate(Player player, String event, Object eventData) {
          if (event.equals(PlayerListener.END_OF_MEDIA)) {
             if( mp3.equals(test1) ) mp3 = test;
             else if( mp3.equals(test2) ) mp3 = test3;
             else if( mp3.equals(test3) ) mp3 = test4;
             .........
    
             InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
             p = Manager.createPlayer(stream, "audio/mpeg");
             p.realize();
             p.prefetch();
             p.addPlayerListener(pListen);
             p.start();
          }
       }
    }
    
    InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
    p = Manager.createPlayer(stream, "audio/mpeg");
    p.realize();
    p.prefetch();
    p.addPlayerListener(pListen);
    p.start();
    

    So, add the try-catch blocks.

  • How can I move pages from one document to the other without merger of paragraph styles?

    I want to create a singular indesign file of 2 separate documents, which allows me to make an interactive PDF of it.

    However, when you move pages from one to the other, it seems that when each document has a paragraph style with the same name, they merge. The problem is that text is then adjusted if the styles do not match completely.

    Is there a way to merge the documents without any formatting changes?

    Create a Style group in each document and move all styles in this file. Give each document a different name. Do it with all kinds of styles: paragraph, character, objects, tables and Cell Styles. Then you can sort them later in the merged document what you do with these styles.

  • Play videos local one after the other

    Hi - I'm going to put in place 10 videos locally in Dreamweaver to play one after the other.  By local authorities, I say everything is on one computer and you just open the page HTML in Chrome and it works.  When the HTML opens in Chrome, I got the first video auto play and loops too.  But after the end of the #1 video, I have need for 2nd video to start, then third, and so on until the 10th is complete, then it goes back to #1 again.

    Is the code that I have on the local HTML page and it works for a video is:

    < video width = "720" height = "406" AutoPlay controls loop >

    < src = "source 1E.mp4" type = "video/mp4" > "

    < object data = "1E.mp4" width = "720" height = "406" > "

    < / object >

    < / video >

    .. .but I just can't figure out how to get the other 9 videos in there, so they play behind #1 loop and then back to #1 again.

    Does anyone have an idea how to do this?  Thank you.

    Video HTML5 can only play a single video.  It does not fit your goals.  That's why I suggested using your laptop Media Player by default since this will be the software that plays files.  If you do not have Windows Media Player to work, try something else like Media Player Classic (it's free, I use it all the time).

    Media Player Classic - Home Cinema Tutorial #3 - How to manage your playlists

    Nancy O.

  • 2: Sequentially all an elements of array, display one after the other

    Hello!

    This is a new start for another thread (http://forums.adobe.com/message/4897959#4897959).

    (ActionScript 2 ONLY)

    My site is a SWF that loads on the user requests data from a database of MySQL via PHP.

    I have no problem to control the whole communication process.

    On the homepage, as well as new which are already presented in the main part of the right side of the page, I want to display on the left side a few reminders of the essential services and also registered users of mandatory measures must do when visiting the site.

    DB returns: an array with one. separator and the total of the items in the array.

    In Flash, I use the following function to get the picture:

    remindersFct = function () {}

    var myReminders = new LoadVars();

    myReminders.identity = "reminders";

    myReminders.onLoad = {function (ok)}

    If {(ok)

    _root.reminderFld.html = true;

    var myArray:Array = new Array (myReminders.mydata.split("|"));

    myArray.length = myReminders.totalItems;

    }

    else {}

    Stop();

    }

    };

    myReminders.sendAndLoad ("misc.php", myReminders, 'POST');

    };

    remindersFct (); start the process

    I want to know different things...:

    1 - How can I 'explode' this table in its different elements (all are text strings)

    2. so, how can I know the SWF to view them, one after the other, in the field appropriate htmlText

    3. How can I adjust the length of each of these items, based on the length of the text they contain

    Thank you very much in advance for your help!

    Just another thing.  Given that you call the setTimeout for both halves of the conditional, it means that you don't need in the conditional and can move around outside, and you don't need in the first half of the conditional either...

    counter ++;

    Sto var = setTimeout (displaytext, delay);

    If (counter == theText.length) {}

    counter = 0;

    }

  • Some images do not appear after moving images from one folder to another

    Lost photo should find I was moving images from one folder to another.  He said that I had this picture in the folder.  Then he asked if I wanted to replace the existing image.  I said yes.  Now I miss several photos and cannot find anywhere - but some went through.  I need these photos in return.  Any ideas on how to get back them?  Thank you

    I was moving images from one folder to another.  He said that I had this picture in the folder.  Then he asked if I wanted to replace the existing image.  I said yes.  Now I miss several photos and cannot find anywhere - but some went through.  I need these photos in return.  Any ideas on how to get back them?  Thank you

    ======================================
    The dialog box asking if you want to "replace the existing image.
    occurs when the target folder contains a file with the same
    name that you are moving.

    Unfortunately... when a file is overwritten (replaced) with another
    file of the same name... the original is unrecoverable.

    There is a slight possibility... If the photos had been altered in
    Windows Live Photo Gallery... the unreleased original versions which
    could be cancelled in may still be in the following folder:

    C:\Users\\Appdata\Local\Microsoft\Windows Gallery\Original photos.

    Good luck...

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • In the library panel, pictures of miniatures become black one after the other

    Hello

    Last month, in the library panel, pictures of miniatures become black one after the other, and then they all black!

    I don't know how to recover the thumbnails.

    And in the develop module, the photo is very dark, until I click on your car.

    Thanks for helping me Olivier.

    Version of Lightroom: 6.2.1 [1046594]

    License: Permanent

    Operating system: Windows 10

    Version: 10.0

    Application architecture: x 64

    The system architecture: x 64

    Number of logical CPUs: 4

    Processor speed: 2.9 Ghz

    Built-in memory: 6143,1 MB

    Memory real available pour Lightroom: 6143,1 MB

    Real memory used by Lightroom: 900,6 MB (14.6%)

    Virtual memory used by Lightroom: 1032,1 MB

    Size of the memory cache: 399.2 MB

    Maximum number of links used by Camera Raw: 4

    SIMD optimization of Camera Raw: SSE2

    The system DPI setting: 96 DPI

    Composition on the Desktop enabled: Yes

    Views: 1) 1920 x 1080, 2) 1280 x 1024

    Input types: multipoint touch: no, touch integrated: no, built-in pen: no, touch external: no, External plume: no, keyboard: no

    Parents to the graphic processor information:

    AMD Radeon HD 5800 series

    Check the supported OpenGL: past

    Vendor: ATI Technologies Inc.

    Version: 3.3.13399 context 15.201.1151.0 the base profile

    Renderer: AMD Radeon HD 5800 series

    LanguageVersion: 4.40

    The application folder: C:\Program Files\Adobe\Adobe Lightroom

    Access to the library path: D:\Photos\_LightRoom\Lightroom\Lightroom Catalog.lrcat

    Settings file: C:\Users\Olivier\AppData\Roaming\Adobe\Lightroom

    Installed modules:

    (1) Facebook

    (2) Flickr

    (3) external module connected mode Canon shooting

    (4) external module connected mode Leica shooting

    (5) external module of shooting in connected mode Nikon

    Markers Config.lua: no

    Adapter n ° 1: supplier: 1002

    Device: 689e

    Subsystem: e177174b

    Revision: 0

    Video memory: 1012

    Adapter n ° 2: provider: 1414

    Device: 8 c

    Subsystem: 0

    Revision: 0

    Video memory: 0

    AudioDeviceIOBlockSize: 1024

    AudioDeviceName: Speakers (High Definition Audio device)

    AudioDeviceNumberOfChannels: 2

    AudioDeviceSampleRate: 44100

    Build: LR5x102

    Direct2DEnabled: false

    GPUDevice: not available

    OGLEnabled: true

    HiLolivGr1

    Please refer to this thread images regarding the black squares

    Concerning

    Assani

  • Playing several clips video one after the other on the main timeline

    Excuse the probably simple question but I'm just starting with Flash.

    I imported a few trailers directly in flash and saved as video clips.

    I want to be able to insert these clips on the main timeline and play one after the other, by repeating once they all played.

    In the main timeline, I put one layer for each clip and a keyframe where the clip is inserted for each layer.

    When I go to play the flash file, is to show the first frame of each movie file and before the first frame of the next movie file.

    What should I do to make the entire movie file flash game in this specific context before moving on to the next section where is the following file in the sequence, then to play all this film?

    Sorry for what is probably a simple thing to ask.

    Thank you

    Create a new layer actions on the timeline stop() and the main square. commands on this layer in each frame where resides a movieclip.

    In each clip, at the end (last image) you mean the main timeline to play(); While it moves to the next section (where it stops because of the stop() commands you add).

    If at the end of each movieclip you put either:

    AS2: _parent.nextFrame ();

    for AS3: MovieClip (parent) .nextFrame ();

    For the last movieclip in programming, you will replace nextFrame() by gotoAndStop (1);

  • Why is my media player of securities randomly suddenly played on every album & not as shown, one after the other?

    All of a sudden my Windows Media Player (11) started playing the songs on each album random & not one after the other in chronological order, any ideas anyone please?

    Hello

    To better understand the issue, please let me know if you have made recent changes made on the computer before this problem?

    This problem may occur if the Windows Media Player settings are incorrect.

    Method 1:
    Let's first run the fixit and check if it helps.

    Solve the problems of Windows Media Player video and other media or library
    http://support.Microsoft.com/mats/windows_media_player_diagnostic

    Method 2:
    If the problem persists, I suggest you organize your digital media collection
    and check if it helps.

    Organize and search your digital media collection
    http://Windows.Microsoft.com/en-us/Windows-XP/help/Windows-Media-Player/11/library

    Check out the link for more information.

    Create and use your own customized reading lists
    http://Windows.Microsoft.com/en-us/Windows-XP/help/Windows-Media-Player/11/playlists

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

  • I want to connect two monitors, but there is only a single port VGA on my PC. How do I plug in the other?

    Only a single port VGA on my PC

    I want to connect two monitors, but there is only a single port VGA on my PC. How do I plug in the other?

    Friday, June 22, 2012 14:19:44 + 0000, CSAChi wrote:

    I want to connect two monitors, but there is only a single port VGA on my PC. How do I plug in the other?

    You must buy a second video card or replace the one you have
    with a card that takes in charge of two monitors.

    Ken Blake, Microsoft MVP

  • Can the Sandisk Sansa Fuze 4 GB MP3 read podcasts one after the other

    For health reasons, I need to take a long walk after each meal.  For many years during my walks that I listened to podcasts on my wonderful old Sandisk sansa, who plays a podcast after the other without action from me until I have stop.  It's perfect here in the North when I walk in 30 below zero weather. I mean that I don't want to open my parka and out the player to move to the next podcast.  If I had to do, they would find me lying in the snow, Frost, like all the rest of those poor Devils who bought the wrong MP3 player.  Anyway, after years of using the plug-in on my old Sansa fuze is pretty much exhausted and the player must be replaced.  I buy a sansa clip, but had to return when I discovered that he has not played podcasts one after the other, automatically. (And it's also too small for my needs).  Before you buy a new 4 GB sansa fuse, so I need to know if this greatest player will play my podcasts consecutively and one after the other.  Your advice would be much appreciated.

    MrHat wrote:

    I currently use the Sansa e250 2 GB MP3 Fuze player Walkman.

    There is an e250 (2 GB) and a rocket. They are 2 totally different players. The "rocket" (original) replaced the e200 series model.

    But if your podcasts are placed in the Podcast folder (or even record Audio books) and then ranked in the same "Album" folder, they must play consecutively without stopping, regardless of the model of reader.

  • Computer scientists moved us from one server to another. The change of server name has left me with an orphan sync partnership.

    Our it staff moved us from one server to another.  Although I did a sync with all my spotted "available offline" files before the move, the change of server name left me with an orphan sync partnership.  Is anyway to disconnect this partnership?  I have not been able to find a way.  Thank you.

    original title: orphans of sync partnership

    Hello

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for Windows Vista Networking forums. Please ask your question in forum Windows Vista Networking TechNet.

    http://social.technet.Microsoft.com/forums/en-us/itprovistanetworking/threads

Maybe you are looking for