Content is moving when seperateing a spread into singles

Hello,
OK...I have a document that started as single pages, and I have manually moved some to create spreads...That works fine....But, when I select the 2 pages that are spreads and choose "allow selected spread to shuffle" it separate's the pages but the content is moving?
The offset of the x and y coordinates actuallyy change?? and the object all shift...... The slug really moves out of wack......
Does anyone know how this could possibly happen?
thanks!!!
babs

There's a good chance that Page Control has something to do with that. Here's some suggestions:
1) If enable Layout Adjustment (under Layout --> Layout Adjustment) is not enabled, try enabling it.
2) Try contacting DTP Tools to see if this is a known issue, and/or if they have a workaround.
3) If you are feeling adventurous, you can try downloading Reflective Objects and seeing if that keeps your objects where they belong. I have no idea how well it interacts with Page Control and I'd be very interested in finding out. If the results are interesting enough, it might even be worth a complementary license of Reflective Objects...

Similar Messages

  • How to save contents of two different rich edit box into single rtf file in windows 8.1 app

    Developer, I have requirement to save registration data into rtf file.. These can only be done by if I put rich edit box to fill the data.. Now if I am going to write the code for saving the data of different rich edit box into one particular file, it
    only saves the data of last rich edit box.. So plzz suggest that how can I save the contents of different rich edit box together into one rtf file.

    Ok Nishant, just did some quick research, since rtf file is unlike txt file, we cannot simply directly write some content to the rtf.
    You can try to find some third party code that can help you insert text into rtf file or you would like to load the content from rtf out to the richeditbox and merge them to one richeditbox and then save back to the file.
    You could like to see how to read/save rtf file sample from:
    RichEditBox class
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I stop Finder windows from moving when I drag files into them?

    I have searched but can't seem to find an answer.
    Thank you.

    HI Dave,
    Go to ~/Library/Preferences and move the com.apple.finder.plist file to the Trash.
    ~ (Tilde) character represents your Home Folder.
    Restart your Mac.
    Hopefully that will help.
    Carolyn

  • Content canvas and  a stacked canvas moving when scroll through the details

    Dear Friends
    I have Mater and Details Block , and I have two canvas content canvas and a stacked canvas, and the a stacked canvas on top of content canvas , and I have set the horizontal and vertical scroll bar for the stacked canvas , my problem is that when I inquire and click on the details block which is on stacked canvas the header content canvas is moved up
    and what I want the header to be stable and not moving when scroll through the details .
    Best regards
    Jamil Alshaibani

    if the canvas is moved during runtime in general the problem is that is does not fit completly in the window. Try to adjust your window-size so that the whole layout fits into it.

  • AppleTV 1st Gen has my entire music library loaded however my iTunes library was lost when my external hard crashed.  My question is can I copy the content from the AppleTV 1st Gen back into my iTunes on my iMac?

    AppleTV 1st Gen -
    I have a rather complex music/movie library system, as well as the ability to listen/watch the content throughout my house thanks to Control4 - extra vegetables and other various 3rd party equipment.  I moved my entire music library onto an external hard drive to free up space on my iMac...then my dog got tangled in the cord and pulled the external drive from my desk to the floor destroying the hard drive...(yes I've already attempted to have the content recovered by specialists- no such luck.
    My question is... Is it possible to copy the content from the AppleTV 1st Gen back into my iTunes on my iMac?  If so step by step directions would be greatly appreciated!
    thanks to all
    Tom

    Thanks very much I have contacted them via this. Just hope they respond quickly- rather annoing! Greatly appreciated though

  • Tab content is empty when tab is dragged

    I have two TabPanes which can move tabs each other. This is the code of the TabPane which receives the dragged tabs from the user:
    tabPane.setOnDragDropped(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                        final Tab tab = DragBuffer.getDraggingTab().get();
                        tab.getTabPane().getTabs().remove(tab);
                        tabPane.getTabs().add(tab);
                        tabPane.getSelectionModel().select(tab);
                        event.setDropCompleted(true);
                        DragBuffer.getDraggingTab().set(null);
                        event.consume();
    I noticed that when I drag the tab into the target TabPane the content of the tab is empty. But when I swith to the next tab of the target tabPane and return back I can see the content. This is couced by this line:
    tab.getTabPane().getTabs().remove(tab);
    Can you tell me how I can change the logic in order to prevent the empty tab body?
    Ref javafx 2 - Tab content is empty when tab is dragged - Stack Overflow

    This looks like a bug; I see the same thing in the context of your other thread. I can't seem to find a workaround. I have some sample code below which demonstrates the same problem without cluttering the code with drag and drop. This should move the selected tab in the bottom tapPane to the top tabPane ("Up" button) or the selected tab in the top tabPane to the bottom tabPane ("Down" button). When a tab is moved it is automatically selected; moving a tab to the top tabPane fails to show its content. (Strangely, moving a tab to the bottom tabPane works fine.) You should probably file a JIRA; reference this thread ("discussion" in the new forum-speak).
    import java.util.Random;
    import javafx.application.Application;
    import javafx.beans.binding.Bindings;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.Tab;
    import javafx.scene.control.TabPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.Pane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TabSelectionTest extends Application {
    @Override
      public void start(Stage primaryStage) {
      final TabPane tabPane1 = new TabPane();
      final Random rng = new Random();
      final int NUM_TABS = 4 ;
      for (int i=1; i<=NUM_TABS; i++) {
        tabPane1.getTabs().add(createTab(rng, i));
      final TabPane tabPane2 = new TabPane();
        for (int i=1; i<=NUM_TABS; i++) {
          tabPane2.getTabs().add(createTab(rng, i+NUM_TABS));
      final Button moveToPane1Button = new Button("Up");
      final Button moveToPane2Button= new Button("Down");
      final HBox buttons = new HBox(10);
      buttons.getChildren().addAll(moveToPane1Button, moveToPane2Button);
      moveToPane1Button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Tab selectedTab = tabPane2.getSelectionModel().getSelectedItem();
            tabPane2.getTabs().remove(selectedTab);
            tabPane1.getTabs().add(selectedTab);
            tabPane1.getSelectionModel().select(selectedTab);
        moveToPane2Button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Tab selectedTab = tabPane1.getSelectionModel().getSelectedItem();
            tabPane1.getTabs().remove(selectedTab);
            tabPane2.getTabs().add(selectedTab);
            tabPane2.getSelectionModel().select(selectedTab);
        moveToPane1Button.disableProperty().bind(Bindings.isEmpty(tabPane2.getTabs()));
        moveToPane2Button.disableProperty().bind(Bindings.isEmpty(tabPane1.getTabs()));
        VBox root = new VBox(10);
      root.getChildren().addAll(tabPane1, buttons, tabPane2);
      primaryStage.setScene(new Scene(root, 600, 500));
      primaryStage.show();
      private Tab createTab(Random rng, int i) {
        Tab tab = new Tab("Tab "+i);
        Pane pane = new Pane();
        pane.setMinSize(600, 400);
        String style = String.format("-fx-background-color: rgb(%d,  %d, %d);", rng.nextInt(256), rng.nextInt(256), rng.nextInt(256));
        pane.setStyle(style);
        pane.getChildren().add(new Label("This is tab "+i));
        tab.setContent(pane);
        return tab ;
      public static void main(String[] args) {
      launch(args);

  • When rotoscoping, how do I delete the background of a video so that when I import it into final cut, the background is transparent and not black or white?

    Hello there,
    I am new to after effects.
    I'm currently working on some footage of a face talking. I have used the rotobrush to single out just the lips moving and have deleted the background. However, when I delete the background it automatically changes the background to a solid black.
    The effect i'm looking for is more something of the effect of a PNG in photoshop - no background so that when it is imported into a movie, the lips with be free standing over other footage so that the oner footage will be shown behind the moving image of the lips..
    I have looked at multiple tutorials and threads and found nothing that helps with my problem - if there is one, I apologise, I have just spent so long looking and thought here was the best place to come.
    If anyone can give me any advice it would be very greatly appreciated - Thankyou!
    BJH

    First, check to make sure you actually HAVE transparency by doing one of three things: change the comp's background to something other than black, click on the button at the bottom of the comp window to view the alpha channel, or click the button on the bottom of the comp window to reveal the familiar Photoshop checkerboard background.
    Next, select a codec that supports alpha channels -- in Quicktime-Land, that would be Animation, PNG or Prores 4444.  For FCP, use ProRes if you can.
    After that add the comp to the AE Render Queue.  In the output module, select RGB+Alpha, Millions (or trillions) Of Colors +, and Straight, i.e. not premultiplied.  If you absolutely MUST have audio (I personally have little use for it), check the appropriate  check box.
    Finally, save the project and hit the render button.  DO NOT save the project again after rendering; instead, go file>Revert.  That way, if you have one of those Homer Simpson "DOH!" moments where you realize you made a mistake, you simply delete the rendered file, make corrections, and you're all set to re-render.

  • I put my ipod touch in DFU mode, but when I plug it into my computer the restore your ipod alert does not come up in itunes. What can/should I do?

    I have been on the Apple Support page for several hours now and cannot find my exact circumstance and other suggestions have yet to help me. I purchased a locked ipod touch and when I plug it into my laptop itunes says "Itunes could not connect to ipod because it is locked with a passcode". The guy I bought it from told me the password but I failed to write it down and remember it and he has since moved so I can't find him. I have tried putting it in DFU mode and I can get it there, but then Itunes does not show the pop-up that everyone has said will come up with the alert about an ipod trying to restore itself so I cannot get it to do so. Any suggestions would be greatly appreciated!
    Thanks,
    AM

    When in DFU mode and connected to the computer iTunes does not say anything but iTunes will see the iPod and you can restore the iPod via iTunes. When in recovery mode and you connect, iTunes will say it found an iPod in recovery mode.

  • After I've heard an audiobook downloaded from the public library, how do I delete it from the Shuffle?  When I plug it into my computer, I get a screen showing how much space is left on the Shuffle but no list of files that I can delete.  WRA

    After I've heard an audiobook downloaded from the public library, how do I delete it from the Shuffle to make room for other audiobooks?  When I plug it into my computer, I get a screen showing how much space is left on the Shuffle but no list of files that I can delete.  These books, incidentally do not appear in the ITunes screen.  WRA

    Select the iPod shuffle in the iTunes sidebar (under DEVICES).  If this is a current 4th (or 3rd) gen iPod shuffle, you should be able to see the contents of the shuffle by type, intented under the shuffle's name (still in the sidebar).  Select Music or Audiobooks (not sure where those items from the library will be listed).  The items will be listed to the right, for each category.  Find the items, select, and delete.
    It's on page 20 of the manual
    http://manuals.info.apple.com/en_US/iPod_shuffle_4thgen_User_Guide.pdf
    NOTE:  If this is an 1st or 2nd gen iPod shuffle, select the iPod shuffle in the iTunes sidebar (under DEVICES).  Over to the right, go to the Contents tab, where the items are listed.  Select and delete them from this list.
    I find it more convenient to make a playlist in iTunes with things I want to put on the shuffle.  I then set up automatic syncing (or use autofill) to have iTunes load the shuffle from that playlist, automatically.

  • Why is RoboHelp not displaying the required data content of .chm when linked as Help in my App ?

    Gorgeous Hello All,
    Has anyone encountered the below-said show- stopper. Another BIG TIME help required, will help me in tremendous fashion.
    Am using Adobe RoboHelp, Version 10 and IE version being 10.
    In my local machine :
    1.)I have completed my technical writing courtesy Design editor
    2.)Generating chm File : View -> Pods –> Single Source Layouts -> Right Click on Microsoft HTML Help -> Tagged Set as Primary Layout
    3.)Generating Primary Layout : File -> Generate -> Primary Layout (Microsoft HTML Help)…
    4.)Viewing Primary Layout : File -> View -> Primary Layout
    Everything works FANTASTICALLY till here with the required output (as Hide, Back, Refresh, Home, Print, Options, Contents, Index, Search, Glossary and with the data contents)
    Show Stopper, At my Application Server :
    5.)I copy the entire robohelp project folder from my local machine to my application Server path
    6.)My Application has been developed in ASP .NET, Version 4.0.
    7.)Help link has been created in this application wherein here the file name of < >.chm has been linked in the code to be read from the  Server’s RoboHelp project folder\!SSL!\ Microsoft_HTML_Help\
    8.)I login into my above-said application -> click on the Help page -> Displays the required structure /buttons as Hide, Back, Refresh, Home, Print, Options, Contents, Index, Search, Glossary
    a.)Clicking on any of the Books or Topics appearing beneath Contents : The System prompts out with error cautionary message called “ Navigation to the webpage was cancelled. What you can try: Retype the address ”
    *** This is a huge SHOW-STOPPER. I spent plenty of hours on this, but unable to deciper with a solution at all) ***
    ( Note : Am able to directly open and read the required data contents by Clicking on any of the Books or Topics appearing beneath Contents from Server’s RoboHelp project folder\!SSL!\ Microsoft_HTML_Help\ < >.chm )
    Why is the RoboHelp not displaying the required data contents of <>.chm when linked as Help in my Application ?
    Cheese – Vipin Nambiar

    If you looked at the error message and searched the forum, you should find the answer as this is a problem that started in 2005. You should not run CHM files from a server and cannot without editing the users registry. See the page below.
    http://www.grainge.org/pages/authoring/chm_mspatch/896358.htm
    All along your questions have been based on webhelp, why suddenly are we going go CHMs.
    See Snippets on my site for the correct form of help to use in different scenarios.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Streaming audio from my IPAD to my Apple TV from Rhapsody application.  when Apple TV go into Screen Saver mode, about 5 minutes after that it stops playing the Audio Stream and goes into Sleep mode.

    I am Streaming audio from my IPAD to my Apple TV from Rhapsody application.  when Apple TV go into Screen Saver mode, about 5 minutes after that it stops playing the Audio Stream and goes into Sleep mode.  I am using the Optical Out from the Apple TV to my receiver, the Apple TV is hard Wired to the Network, the IPAD is Wirelessly attached to the network (it continues to play the Audio Stream).  When the Apple TV is turned back on it resumes playing once I manual select it for output from the IPAD.  All device are on current releases of software.  I have no Video hooked up to the Apple TV.  How do I correct this?

    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • When i turn my iphone 4 on, it comes up with a picture of a cord connecting to an itunes icon. when i plug it into my pc, it says the settings on my iphone need to be restored. but i dont want to restore it as will lose everything on it. what shall i do?

    when i turn my iphone 4 on, it comes up with a picture of a cord connecting to an itunes icon. when i plug it into my pc, it says the settings on my iphone need to be restored. but i dont want to restore it as will lose everything on it. what shall i do?

    You have no chose but to restore your phone. What do you mean "lose everything"? Is your data/iTunes content not on your computer?

  • My phone says it needs to be restored, however when i plug it into my computer it will not turn on

    my phone says it needs to be restored, however when i plug it into my computer it will not turn on

    Purchased iTunes content can be re-downloaded:
    http://support.apple.com/kb/HT2519
    Any photos in your camera roll, not previously imported to your computer, you will lose. You should be regularly importing these photos, as the iPhone's camera roll is not designed as a storage device.
    Had you been regularly syncing/backing up, you wouldn't lose anything. Now you know, don't backup your data, and you will eventually lose it all, guaranteed.

  • Show explanation text when cursor is set into InputField

    Hi all,
    I have a WDA component with a view that uses UI-elements Label and InputField.
    The InputField has a explanation text. This explanation text is shown only if I´m moving the mouse pointer over the label (label is underlined). Is there a possibility to show the explanation when cursor is set into the input field?
    We´re using SAP NetWeaver 7.0 with EHP 1 and SP 08.
    Any help would be appreciated.
    Alex

    Hi,
    Just put the explanation text into tooltip propery of InputField. It will show the text when the cursor is moved over it.
    Thanks,
    Chandra

  • When I am logged into iTunes and try to purchase something the window requesting I sign in to iTunes store keeps an appearing no matter how many times I enter the password (even though I'm already signed in!). Any suggestions greatly appreciated. Thanks.

    When I am logged into iTunes and try to purchase something the window requesting I sign in to iTunes store keeps an appearing no matter how many times I enter the password (even though I'm already signed in!). Any suggestions greatly appreciated. Thanks.

    This may help.
    Fix for “No Content” on iPhone & iPod after iOS 4.2.1 update
    The try the standar fixes:
    - Reset. Nothing will be lost.
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backup via iTues
    - Restore the iPod factoery defaults/new iPod.

Maybe you are looking for

  • How to find a word and copy the phrase containing the word without using the mouse

    I am using a macro to fill in a form and select fields in the form. The fields are titled and i want to use the field title to select the field and thus need to copy the name to compare with the search text and tab to the next requested field.

  • How do i make my printer be wireless

    how do i make my printer be wireless

  • Vendor Master Validity

    Hi All, We have a scenario where in a vendor has a validity period. The vendor is allotted a temporary vendor code for some period. One can do procurement from that vendor only in the stipulated period. How we can give validity period to a vendor mas

  • Zoom Level Setting Does not Stay Constant

    HP Pavilion dv7-6163us Entertainment Notebook PC The zoom level is set at 125 but keeps changing as I go to different screens.  It bounces to 150  and I have to cycle it thru 100 and then 125.  It will not stay at 125 and  I cannot find a solution to

  • Hyperlinks after exporting to web

    I created hyperlinks in my presentation, but when I've exported it for web (HTML) the hyperlinks don't work. What should I do?