Pages of weird problem moving around

Well, I'm completely stumped.

I have a 350 page book, divided into 12 documents. It is a recipe book, individual recipes are all one or two pages each. I needed to reorganize the revenues - move some around a document. others, that I needed to move from one document to another. A simple task, I thought.

Inside the document, I moved to pages using the method drag in the Pages window. Everything was going well. But when I tried to move a single recipe of two pages of a document to another by using the function "move page", things got very strange. The pages that I moved went straight into their new home. But when I tried to remove them from their original location, he scrambled all the pages that I had just reorganized. Some disappeared completely. The pages that I just tried to delete really just moved to a new location in the original random document and did not stay together.

I looked in the editor mode, I discovered that that the editor was concerned, the pages that I had moved by dragging had not REALLY moved. They were still in their original locations. But they HAD moved in all other ways - visually, paging-wise, etc.. I went back to a version recorded and tried to delete the recipe of thugs in the editor. Same effect of interference to other pages. I tried to delete a paragraph at a time and discovered that the recipe that it I had tried to remove had a very small code at the end of each of the pages that has proved to be the source of the problem. Remove this code and chaos ensues. I can't tell what the code is or does or if it's a bug or a feature or what.

I'm sure I must have done something wrong when I put it in place, but what the hell am I supposed to do now? Surely InDesign allows you to move pages.

Any ideas?

Rather than the script frame break, you can really use the SplitStory script, which will break all the frames on the threads.

Tags: InDesign

Similar Questions

  • Problem moving from one page to another on the Web site

    When I access this site with Firefox
    I can't go beyond the first page. The problem is the same on our second computer. If we use Google Chrome or Internet Explorer, everything works fine. I tried the unblocking of the popups in the option settings, and it makes no difference. I can't directly compare the internet in other browsers proxy servers re access settings because basically, I do not understand the information on the screens! Help!

    If you use ad blocking extensions, could you try to make an exception for the site?

    If that doesn't help and you want someone to look at your list of modules, you can copy and paste into the second table here ("Extensions"):

    Help > troubleshooting information

    Alternatively, you can try these sites with your add-ons disabled using Firefox Safe Mode. Use

    Help > restart with disabled modules

    In the dialog box, not the check boxes, click on "continue mode without failure." If the sites work as expected, then the most likely cause is one of your modules.

    Is it that help at all?

  • Weird problem with the google search on Safari 9.0.2

    Hi all

    I had a weird problem with Google on Safari recently. After that the search for something from the Google home page and search page is loaded, I can't be able to change or enter anything in the more the google search bar. I have to reload the page every time google to search something else. Google search worked fine on Firefox though.

    I use the latest version of Safari (9.0.2) and I tried clears all history data, and Web site, but nothing has worked so far. My Mac is running on OS X Yosemite so what counts.

    Can someone understand what is the problem?

    Thank you.

    If you have problems to open Web pages, take a look at these techniques proposed by Apple of troubleshooting.

    https://support.Apple.com/en-us/HT204098

    Go to the Safari menu (at the top right of your screen next to the Apple icon), choose 'Quit Safari'

    Press the "Shift" key and while holding this button on your unique keyboard, click the icon of Safari on your Dock.

    Open Safari - Preferences - Privacy - data to remove any Web site.

    Open the menu to go with the Option (Alt) key - library - key locate Safari folder and place it on your desktop. Restart your Mac, open Safari and delete the file from your desktop.

    In addition, a restart may help.

  • x 360 u100ng envy 15: weird problems with adapter Atheros QCA Qualcomm 9565 being unstable when it's on battery

    Hello

    I have a weird problem.

    When the notebook is on battery, the (Qualcomm Atheros QCA 9565) wireless card is unstable and very little reliable, dropping signals continuously, more importantly, loading speed (be em, Web sites, or a set of the router to the top of page!) is considerably slowed down...

    Remarkably, I can detect this by loading the page of my router configuration, when the laptop is on current alternative, I can refresh the page of the extremely fast router, but when the laptop is on battery, blocking of page of the router, so all the other websites, I try to load, the router page has nothing to do with an internet connection It reflects the quality of connection directly between the wireless card and the router and the router is in excellent condition, as evidenced by all the other devices on it.

    I also notice that when the laptop is on battery, the screen fades and informed on a regular basis, I do not think that my laptop is equipped with auto brightness adjustment features...

    So far, it seems that the problem is the battery... If the wireless adapter can run reliably with a reliable source of energy (i.e. the AC power), the wireless card is fine, right? It seems to me the battery is faulty and cannot provide enough power for the wireless card and other devices, from the ravages of this pain in the ass... computer I'm right?

    Thank you very much for your contribution in advance!

    Cong

    For the wireless adapter, check your settings under Advanced settings, Power Options. The map is set up for maximum performance on battery & power?

  • Pages stuck together, after moving to another document

    I wrote an applescript script that copies the pages from multiple documents in a single document. All pages of all ducuments are set on shuffle and all spread also.

    For some bizzare reason when pages are copied to the new document, they all stick to a spread, and I have to manually dismantle them.

    I searched around and can't see if I'm doing something wrong or if there is a bug in InDesign, I need to report. I tried this script in CS5 and CS6.

    Appreciate any input.

    Here is the code:

    tell application "Adobe InDesign CS5"
        set AppleScript's text item delimiters to ""
        set mydocs to name of every document
        set MasterDoc to items of (choose from list mydocs with prompt "Select which document is the master document.")
        set MasterDoc to MasterDoc as string
        
        set master_hight to page height of document preferences of document MasterDoc
        set master_width to page width of document preferences of document MasterDoc
        
        set thesedocs to mydocs
        set mydocs to {}
        repeat with i in thesedocs
            set i to i as string
            if i ≠ MasterDoc then
                set end of mydocs to i
            end if
        end repeat
        
        set Docstomerge to items of (choose from list mydocs with prompt "Select which documents you want to merge into the Master Document." with multiple selections allowed)
        
        set Docstomerge to my |sortlist|(Docstomerge)
        set mydoccount to 1
        repeat with this_doc in Docstomerge
            set myName to name of document this_doc
            set AppleScript's text item delimiters to "."
            set myName to text items 1 through -2 of myName as string
            set AppleScript's text item delimiters to ""
            set myName to myName as string
            
            set myPages to pages of document this_doc
            
            
            
            set aPages to duplicate every page of document this_doc to after last page of document MasterDoc
            set myBookMarkPage to item 1 of aPages
            
            tell document MasterDoc
                
                set myPageDest to make new hyperlink page destination with properties {destination page:myBookMarkPage, name:(("doc" & mydoccount) as string)}
                make new bookmark with properties {destination:myPageDest, name:myName}
            end tell
                
            close document this_doc saving no
            
            set mydoccount to mydoccount + 1
        end repeat
        display dialog "The merge was successful!"
    end tell
    
    on |sortlist|(the_list)
        set old_delims to AppleScript's text item delimiters
        set AppleScript's text item delimiters to {ASCII character 10} -- always a linefeed
        set list_string to (the_list as string)
        set new_string to do shell script "echo " & quoted form of list_string & " | sort -f"
        set new_list to (paragraphs of new_string)
        set AppleScript's text item delimiters to old_delims
        return new_list
    end |sortlist|
    

    Hey Lev,

    I just ex-athletes how I got around it

    I added an extra page before duplicating the page size weird and then I removed the page with myPage.Remove)

    more easy (course) as resizing

    I think it should fix

    Trevor

  • Firefox 34.0.5 cannot print correctly. I checked all the pages on firefox problems and still can not solve the problem.

    I use 34.0.5 with Windows 7 and that you cannot print correctly. In print preview, it appears in a label size. I double checked all my settings in firefox and my preferences from the printer, I checked all the pages on firefox problems and still can not solve the problem.

    I was able to finally solve the problem, but I had to do a complete reset of firefox. Thank you for your time.

  • When I click on the right botton I see a small copy of the browser page. This problem on the new version of mozilla. This problem is not presented on 15 version of mozilla.

    When I click on the right botton I see a small copy of the browser page. This problem on the new version of mozilla. This problem is not presented on 15 version of mozilla.

    I think that you run two versions;

    The details of your system to watch;

    Shockwave Flash 14.0 r0 * Shockwave Flash 13.0 r0

  • On my ipad3 I rectangles blue moving around the screen. Momentarily switches to an article before moving on. Very irritating

    I have an iPad 3. Model MC707B/A. Version 9.3.2 (13F69).

    Blue rectangles are continually moving around the screen from one section to the other. Also a blue stripe sometimes crosses the screen. Has started yesterday for no apparent reason.

    I have tried rebooting with no luck. Helpline Apple could suggest only reset to factory settings. Does anyone have a less radical solution?

    This is one of the accessibility features. It's the switch command. You will need to go into settings > general > accessibility > switch control and turn it off. It is possible, that's what the setting is triple clicking the home button. Try triple clicking again and see if that if he stops, otherwise, use the road that I explained earlier.

  • Bottom Line: I HATE Firefox 4. It gives me all sorts of weird problems not to mention the frequent freezing MAC OS x 10.6.7. I want to go back to the last #3. It has been impeccable. I tried to leave it in the comments, but he would not submit! BUT

    Bottom Line: I HATE Firefox 4. It gives me all sorts of weird problems not to mention the frequent freezing MAC OS x 10.6.7. I want to go back to the last #3. It has been impeccable. And I tried to present this as your comments but when I hit the button submit, again, it would take. Grrrrrrrrr

    http://support.Mozilla.com/en-us/KB/installing+a+previous+version+of+Firefox

    http://www.Mozilla.com/en-us/Firefox/all-older.html

  • Family safety has blocked me and said the requested page does not exist, moved or is temp down.

    Original title: parental control

    Family safety has blocked me and said the requested page does not exist, moved or is temp down. Help me!!

    Hello April,

    Thank you for the information. For us to better visualize your main concern, please provide a screenshot of the message/code that you receive when you click on the family within your computer settings. To take a screenshot, you can follow the steps in the link/s below:

    I got a private message where you can securely download the screenshots. After downloading, please respond to this public thread for us to be warned.

    Visit us for your answer.

    Thank you.

  • Weird problem with incorrect color printing

    Hello

    IM facing a weird problem in software hp deskjet 1050.my printer printer all-in-one j410 has 5 modes i.e. normal quality printing, fast draft, simple better paper, Photo paper mode quality best quality & specialty paper better quality.

    When I put take-away color printed a photo in "quality mode best photo paper or specialty paper best quality mode ' on any type of paper, the output is pinkish or bluish.

    Please note im using black and non-rempli, true hp original cartridge 802 tricolor.

    to make things clear, im attaching a scanned photo of my printed paper that have the same images with original print quality modes.

    as you can see in the scanned picture, that we have the fast draft quality to the best quality of photo paper, the blueishness rose.

    Pls help me :-(

    -----------------------------------------

    My Info

    OS: windows 8 pro

    Printers: Hp deskjet 1050 j410

    Hello

    This article should cover the problem you are experiencing. Give the steps described a shot and tell us if it helps.

    http://support.HP.com/us-en/document/c04190374

    Good luck!

  • weird problem 'ControlledAccessException' to 9800

    Hello

    I try to update my application to 6.0, but I have a weird problem of Pentecost of certain events.

    For example, I have a button what do some in the SQLITE database from the application, in the Simulator works fine, but when to test the same event in the 9800 device I get the strange "ControlledAccessException' its what I have test the same process in strand 2 4.6.1 and 5.0 devices and do not get this error...

    This is the code for the listener the button...

    FieldChangeListener setParHoyos = new FieldChangeListener() {
            public void fieldChanged(Field field, int context) {
    
                try
                {
                    dbHandler _dbHandler = new dbHandler();
                    String msg;
                    msg = _dbHandler.setParHoyos(idcampo , Integer.parseInt((choiceFieldh1.toString())),Integer.parseInt((choiceFieldh2.toString())),Integer.parseInt((choiceFieldh3.toString())),Integer.parseInt((choiceFieldh4.toString())),
                            Integer.parseInt((choiceFieldh5.toString())),Integer.parseInt((choiceFieldh6.toString())),Integer.parseInt((choiceFieldh7.toString())),Integer.parseInt((choiceFieldh8.toString())),Integer.parseInt((choiceFieldh9.toString())),
                            Integer.parseInt((choiceFieldh10.toString())),Integer.parseInt((choiceFieldh11.toString())),Integer.parseInt((choiceFieldh12.toString())),Integer.parseInt((choiceFieldh13.toString())),Integer.parseInt((choiceFieldh14.toString())),
                            Integer.parseInt((choiceFieldh15.toString())),Integer.parseInt((choiceFieldh16.toString())),Integer.parseInt((choiceFieldh17.toString())),Integer.parseInt((choiceFieldh18.toString())));
                    Dialog.alert(msg);
                }
                catch ( Exception e )
                {
                    System.out.println( e.toString());
    
                }
            }
        };
    

    Ty! all help me

    OK solved the problem are asociated to the GET the value

    H1 = Integer.parseInt ((String) choiceFieldh1.getChoice (choiceFieldh1.getSelectedIndex ()));

  • CS5, text on a path in a circle, gets moved around by reducing the whole image in size.

    I, CS5. I created a seal with the graphics and text on a path. Started with an image that was created with an Illustrator old version of CS. text has been updated and the finished product looks good. However, when I try to make a copy and reduce it in size, the text on a circular path gets moved around. Other components of the image decreases as it should. Any ideas?

    Make a copy of the seal in a symbol and allows to reduce the size.

  • Weird problem - all items in menu grey, all toolbar buttons is unresponsive, but has not crashed.

    Hello

    I have a weird problem with my installation of Illustrator CC 2015 - when I run the application, none of the menu items are active and neither are the buttons on the toolbar. I can't open any files, or exit the application, I have to force quit. The application itself is not crashing in the traditional sense of the term, it shows as sensitive in the activity monitor and there is no beach balling, but I can't do anything with it. Another thing to note is that I don't get to see the splash screen or any screen of welcome after launch.

    When I install a second user on the computer (same login cc) account and run it from there, it works fine, the boot screen and everything.

    This is taking everything into account, I have so far:

    1 uninstalled every possible piece of Adobe software.

    2A ran the cleaning tool and trashed all preference files.

    3 fix the permissions and cleaned all caches.

    4 uninstalled Font Explorer and restored the default system fonts.

    5 reinstalled creative cloud and Illustrator.

    But without success.

    Any ideas with this?

    Thanks in advance!

    Hello

    I solved the problem - the application is lost in a corrupt workspace. I trashed com.apple.dock.plist in ~/Library/Preferences and now everything works.

    Thank you

  • Weird problem with enums

    Hi all

    I have a weird problem with the implementation of controls and access their values. It seems that EI is pulling the wrong values for me.


    As follows:

    I have

    enum { }

    SKELETON_INPUT = 0,

    SKELETON_GAIN,

    SKELETON_COLOR,

    SKELETON_DELAY,

    SKELETON_POSITION_X,

    SKELETON_POSITION_Y,

    SKELETON_NUM_PARAMS

    };

    and

    enum { }

    GAIN_DISK_ID = 1,

    COLOR_DISK_ID,

    DELAY_DISK_ID,

    POSITION_X_DISK_ID,

    POSITION_Y_DISK_ID,

    };

    And I create my fine controls like sliders and they appear

    However, in my method of rendering, the values that AE comes out is wrong.

    Suites. ANSICallbacksSuite1 ()->sprintf(out_data->return_msg, "X = %1.2f Y =%1.2f ',)

    params [SKELETON_POSITION_X]->u. fs_d. value,

    params [SKELETON_POSITION_Y]->u. fs_d. value );


    Instead of getting the values of Position X and Y in the effect control, I'm SKELETON_GAIN for X and NAN values for Y.


    Is that all that I forgot to put? AE not to complaint of the any mismatch of parameter.

    DOH

    This is one of those who come to you once you have posted.

    So the order of creation is too important.

    Initially, I wanted to put my POSITION_X controls and Y in the first place and thought he would keep the enum attributed honest.

    But apparently I need my order of creation is the same as the enum values.

Maybe you are looking for

  • scanning multiple pages to the single PDF using HP ENVY 4500

    The guide says scan of the computer (as opposed to scanning from printer).  I do that and still can't scan multiple pages into a single PDF file.  Is it still possible?

  • cRIO-9104 .vi running on subnets

    I have a .vi I'm out of my computer with Labview version 8.2 and a cRIO-9104 running an another .vi plugged into an ethernet switch.  My problem is this: when I'm connected to the same switch and am assigned the same IP as my cRIO system, I am able t

  • Vista blue screen after update

    So I had update during a routine traffic stop of my compy (who was btw custom assembled by a friend and has worked perfectly for a year). I got the install updates and the button stop, then left for a few hours, thinking that it would update after a

  • Replace Windows 8 with Windows 7

    Original title: Windows 8 I bought a computer last week which of course has Windows 8.  I had nothing that trouble and would like to to replace it with Windows 7, however, I don't think not that I would have to pay to replace.  Can you send me Window

  • desktop will Monday or Mar - portable happen how to transfer PhotoshopCC2015.5 to laptop

    My office is in the process of disappearance - so I am a laptop delivered on Mon or Tue - can I put two Photoshop & Lightroom on USB or what I need to uninstall and reinstall....