Duplicate spread causes some text to shift within its frame

Hi,
Indesign CS5 problem:
When I duplicate the first page of my working document some text shifts vertically within its frame on the duplicate page.
The same thing happens if I copy the text box and paste in place, the shift also occurs.
This is a small grab of the file with the 1st page on the left and the duplicate page (or paste in place) on the right.
Its driving me nuts, any help much appreciated.
Cheers
Dave

Aha, you have got somewhere then!  Something is causing that type to shift, why it isn't in your original doesn't matter, the idml one is "cleaner" and now the behaviour makes sense in that both frames are bahaving the same.  There must be something somewhere, I assume you've checked the baseline shift in the control panel?
If you are sure it's nothing like that it's time to replace your preferences, see the link here.

Similar Messages

  • Text wrap for a paragraph: How to define the width of a Text box /  active text area? I simply need a longish text to wrap within the frame!

    Hello, I've been searching for a good while in the forums now, but have found no solution or real mention of the problem – I hope some of you can help.
    I want to very simply layout a text between scenes, a slightly longer text that wraps within the frame margins. Here's an example of how I want it to look:
    Now, I couldn't for the life of me get the Custom Text to behave like that, as there are no parameters to set for the width of the text area. The Text Size, yes, along with the Tracking, Baseline and all that, but the width of the text box, no. The above was created by customizing one of the other Text Generator presets that happened to be left aligned.
    However, this preset has a fade in/fade out transition, which I do not want. There's no way to remove this transition as it seems integrated into the Text Generator (meaning they are not really presets, but separate kinds of Text objects? Very silly.)
    So I am asking you: Is there any way to get the Custom Text generator to behave like that? Just a text paragraph as above. Below you'll see all I can manage with the diffferent Custom Text parameters. Any kind of repositioning and resizing of the text just changes the position and size of the frame – but the actual text items are just cropped off where they extend out of that frame. Apparently the bounding box for the text is just some default length, and I can't find any way to adjust the width. See below my different attempts.
    The same text pasted into a Custom Text generator clearly extends outside the frame:
    Here Transform just moves – or resizes – the video frame that the Text Box exists inside:
    The Crop gives similar results, and of course Distort doesn't get me closer to what I need, either. There should be simply a Text Box Width parameter to set somewhere, but if it exists they have hidden it very well. How do you do it?
    Thanks for any help, this is a silly problem, but one of now many trivial problems that amount to me growing quite dissatisfied with FCPX. Hopefully I've just overlooked something.
    All the best,
    Thomas

    Thomas...same kind of crap here.
    I used Custom Text - entered a sentence, hit return, entered another.
    Set to 72 pt.
    The default alignment is centred - I want left aligned text...the text start point stays at the centre of frame and the sentence runs off the edge of the bounding box.
    There is no settings in the Text or Title inspector dialog to correct that!
    Using Transform will not sort it!

  • [JS] CS4 How to position a graphic within a Frame

    I have a JS script that I am converting from CS3 to CS4 and I am finding that the behaviour for positioning a graphic within a frame has changed.  I have code that sets the geometric bounds of a graphic to a negitave value within the frame, within CS3 this works great.  However using the same code on CS4 to set the geometric bounds does not produce the same result.  The graphic is always placed at 0,0 and it ignores the negitive top and left values supplied.
    Does anyone know what has changed with the geometric bounds of a graphic within a recrangle frame?  How would I set the position of the graphic within the frame since setting the geometric bounds does not seem to work any longer.
    Thanks,
    Sheldon

    I have yet to determine why the behavior is different from CS3 to CS4 and how to correct the positioning within CS4.  To help explain the problem further I have included a sample script which demonstrates the problem.  I have run the script on both CS3 and CS4 and included screen shots of the results when the resulting INDD file is opened.  Could someone help explain why the position of the image is wrong in CS4 and what I can do to correct the problem?
    Here is the sample script ...
    for(i=app.documents.count()-1;i>=0;i--){app.documents.item(i).close();}
    app.textPreferences.useOpticalSize = false;
    app.textPreferences.typographersQuotes = false;
    app.textImportPreferences.useTypographersQuotes = false;
    app.taggedTextImportPreferences.useTypographersQuotes = false;
    app.pasteboardPreferences.minimumSpaceAboveAndBelow = "300p";
    app.textFramePreferences.firstBaselineOffset = FirstBaseline.ascentOffset;
    app.colorSettings.cmsSettingsPath = File("C:\\etc\\Friesens_Yearbook_Custom_Color_Settings.csf");
    app.marginPreferences.top = '24pt';
    app.marginPreferences.bottom = '48pt';
    app.marginPreferences.left = '36pt';
    app.marginPreferences.right = '36pt';
    var doc = app.documents.add();
    doc.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
    doc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
    doc.documentPreferences.pageHeight = 792;
    doc.documentPreferences.pageWidth = 612;
    doc.documentPreferences.pageOrientation = PageOrientation.portrait;
    doc.documentPreferences.pagesPerDocument = 2;
    doc.documentPreferences.facingPages = true;
    doc.sections.firstItem().continueNumbering = false;
    doc.sections.firstItem().pageNumberStart = 2;
    var pg = doc.pages.item(0);
    var frm = pg.rectangles.add();
    frm.geometricBounds = ['200.5pt','200.2pt','447.8551pt','415.5206pt'];
    try{frm.place (File('c:\\test.jpg'), false);}catch(err){};
    if(frm.graphics.count() > 0) {frm.graphics.firstItem().geometricBounds = [frm.geometricBounds[0]-147, frm.geometricBounds[1]-49, 407.04+frm.geometricBounds[0]-147, 271.68+frm.geometricBounds[1]-49];};
    var objStyle = doc.objectStyles.add();
    objStyle.enableStroke= false;
    objStyle.transparencySettings.blendingSettings.opacity = 100;
    frm.applyObjectStyle(objStyle, true, true);
    frm.rotationAngle = 59;
    doc.label = '824203.indd';
    doc.packageForPrint('c:\\test\\824203\\', true, true, true, true, true, false, '', false, false);
    for(i=app.documents.count()-1;i>=0;i--){app.documents.item(i).close();}
    The line that I highlighted is the one that adjusts the images position within its frame.  It uses a formula to determine the exact position relative to the containing frames position.  This is why you will see the calculations to determine the geometric bounds.
    Here is the result of the script using InDesign Server CS3, notice the position of the image based on the 'Direct Selection Tool' highlight area (this is the desired result):
    And, here is the result after running the script against InDesign Server CS4:
    As you can see the Image is placed at the lot left corrner of the frame which is wrong.  Any insight into the diffrences in the behavior would be appreciated.
    Thanks

  • DPS: pinch and zoom function not working on all pages within folio (v30 tools using the pdf setting). What would cause some pages to pinch and zoom fluidly, while other pages appear a bit sticky? Could it be a button on the wrong layer?

    What would cause some pages in the same folio to pinch and zoom fluidly, while other pages appear a bit sticky? Could it be a button on the wrong layer that's not allowing the pinch and zoom to work?
    I do have a "go to state" button that enlarges graphic to full page on the page. Could this be cancelling the pinch and zoom functionality? Would a box with text wrap ON affect the ability to pich and zoom? What else may be causing this?

    What would cause some pages in the same folio to pinch and zoom fluidly, while other pages appear a bit sticky? Could it be a button on the wrong layer that's not allowing the pinch and zoom to work?
    I do have a "go to state" button that enlarges graphic to full page on the page. Could this be cancelling the pinch and zoom functionality? Would a box with text wrap ON affect the ability to pich and zoom? What else may be causing this?

  • I did a COPY of some text from a web page, and then did a PASTE into notepad.exe (Windows). The text from each line was duplicated -- on the line! Instead of "Fred", it became "Fred Fred".

    I just recently installed Firefox for the first time. It seems nice and quick. The version is reported as: "10.0.1".
    I wanted to save some text from a web page, so navigated to that page, selected the text, and pressed the Control-C combination to COPY the selected text to the buffer. For example, the text I selected looked something like this:
    Harry
    Ron
    Hermione
    Hagrid
    Albus
    NOTE: Each line of text has a small icon to the left of the text.
    It is not reasonable to COPY and PASTE each line individually, as there can be hundreds of lines of data. I recall, however, that
    doing a COPY and PASTE on this data into Microsoft's Excel will produce cells which have the icons included in the cell, but unfortunately one cannot can't get rid of them! At least I've never found a way to remove them, but that's another issue. :)
    Once I'd done the COPY operation I switched to a Notepad window and did a PASTE operation. To my surprise, the text from each line was duplicated. It looked like this:
    Harry Harry
    Ron Ron
    Hermione Hermione
    Hagrid Hagrid
    Albus Albus
    Thinking that there might be something unusual about the web page I looked at the source, but it appeared "normal" -- that is, as expected.
    Note: I have done this operation several times before, and have never seen this occur before.
    Note: In the actual data some of the lines have quoted text in them. Curiously there is weird behavior on these lines. In some cases the entire line is shown only once. (These occur at the top of the line, and the quoted text is at the beginning of the name.)
    When quoted text appears "later" in the name, in some cases the quoted text is duplicated, and in other cases the quoted text is missing altogether! I have also noticed an error with the quoted text, and so will be reporting that to the web site which generates the HTML.
    Note that each line of "text" is "anchor text", so if I click on a name the browser navigates to a page for that name.
    I believe that the problem is that the COPY operating in Firefox is not simply copying the visible text, but also the ALT=
    Below is a sample of what the source HTML looks like:
    <a class="lnk" target="_blank" href="http://details.aspx?id=Harry">
    <img width="16" height="16" alt="Harry" class="tb_icon" src="http://.../Harry.gif"/>
    <span>Harry</span></a>
    <br/>
    (Because of the true length of the lines in the source HTML, I have stripped out the actual URL of the site.)
    To make sure I wasn't imaging this difference I repeated the process within Internet Explorer. In that browser I did not get duplicated data.

    Try:
    *Extended Copy Menu (fix version): https://addons.mozilla.org/firefox/addon/extended-copy-menu-fix-vers/

  • Why does some text convert to outlines when opening a PDF in AI?

    I often have to open PDFs saved from InDesign CS5 in Illustrator CS5 (Mac). These PDFS are saved from InDesign using Press or PDFX1-a settings.
    When I open them in AI, I get the warning that "to preserve appearance, some text has been outlined".
    Of course, I do not want this to happen.
    The text that gets outlined is nothing special. It is seemingly at random within a paragraph or within a cell of a table. In the screen shot below, live text has the blue underline; outlined text does not.
    I can see no rationale for it. There is no transparency involved. Just black text on no background. There is no special "appearance" that needs to be preserved. Fonts are all Adobe OTF (Myriad Pro shown below).
    Can anyone explain why this happens?

    PDFs are not supposed to be edited as a rule.
    Lots of odd things can happen to text (but also other objects) when you open a PDF - that is not a pdf with the editable Illustrator file saved within it - and try to edit it.
    Illustrator is not a general purpose editor of pdf files.
    PDF files are supposed to be an end-format, not a format that you edit.
    What happens to text in a pdf when opened in Illustrator is perfectly normal. There isn't really much you can do about it except recreate the text in Illustrator from scratch, with the desired font, and re-export to the pdf-version you need.

  • PDF missing some text from FM 9 using Acrobat 9.2

    When I generate a PDF frome FM 9, it's missing some of the text (non-bold)
    and one of the chapters is missing the chapter number in the TOC.
    It worked fine with Acrobat 6.0, but now I'm using Acrobat 9.2 and some
    text is missing. Any suggestions?  Thanks!

    You do not mention your OS, but there is a hot fix for some problems with postscript drivers that cause missing data in pdfs.
    http://support.microsoft.com/?id=952909

  • [AS] Applescript - Duplicate paragraph from one text frame to end of second text frame?

    Working in InDesign CS5
    Still banging my head against the wall over this last bit of code I need to figure out to finish a much larger script. What I'm looking to do is take a paragraph ('contents' from looping in larger script) from one text frame and duplicate it to the END of a second text frame (represented by 'Ad_Box'). The only thing I've gotten to semi-work is this:
    set insertion point -1 of Ad_Box to contents
    The problems with the above script are:
    1. Minor problem (can be worked around in InDesign CS5) - The script does not keep the formatting from the original paragraph that I want duplicated. The paragraph style of all "inserted" paragraphs is set to default
    2. The big problem - When the second text frame is too small for a particular word in original paragraph, the paragraph is moved to the wrong position in the text frame when the script completes, which is moving 4 paragraphs in total (this one baffles me). In other words, if I'm running script to be p1, p2, p3, p4 and p2 had a word too long to fit in text frame, on completion it will look like p1, p3, p4, p2.
    This is why I'm hoping to use the DUPLICATE command in some capacity, but I'm stumped. I set up a dialogue prompt to help me debug, and whenever I use the DUPLICATE command my script skips right over the dialogue, so I know it's not reading properly. This is what I've tried with no luck. Any help would be greatly appreciated.
      duplicate contents to insertion point -1 of Ad_Box

    Mary, you were absolutely correct!! This fixes the problem of placing the contents into the wrong spot, AND it runs the script much faster too! Thank you.
    However it is still not carrying over my "applied paragraph style" that is on "contents". Does 'insertion point' not work this way?
    What looks like is happening is that in the InDesign app, whatever my default selected paragraph style is is what the insertion point type is placing as.
    I might try to set my applied paragraph style after the "last insertion point" call and see if that works. I'll update this reporting results

  • Some text on websites doesn't display properly

    Some text doesn't appear correct in Firefox (but does in IE). The text appears to get jumbled or scrambled but if I cut and paste the text from Firefox to a text file, the text is normal so it must be something in the display setting. The link below is a screenshot of Firefox.
    [http://www.pkhlineworks.ca/screen.jpg]
    Any ideas what is causing this?

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.<br />
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.<br />
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.<br />
    <br />
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.<br />
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.<br />

  • XFi-2- Latest firmware (1.20.08) has caused some issues on 32GB model...

    HXFi-2- Latest firmware (.20.08) has caused some issues on 32GB model... When I started my PC last night, it notified me that new firmware was avaliable so it downloaded it and installed it on my Xfi-2 32GB
    According to the release notes, it was to add support for the 64 GB model as well as some general improvements.
    I can't determine what the latest improvements were (anyone have any clues ) and the UI seems the same.....the only things that have changed are that my applications no longer work (when I go into the applications shortcut, it says there is no valid content: I haven't touched these folders etc and they are still populated with the three standard apps as far as I can tell)
    The other thing (which may not be related to the firmware upgrade) is that my photos shortcut now pulls up some of my music folders that contain album art. Is this a feature or a bug (I don't want it to happen, I just want it to show photos within the 'photos' folder on the device).... I think it may have been caused by me simply dragging and dropping music folders onto the device using windows explorer rather than going through Centrale (slow!)
    Cheers

    Hi Timmo.
    What release notes are you reading? I have seen no reference to improvements other than adding support for the new 64 GB model on this firmware version. From the description of the problems you have, it seems that your player has some sort of file system corruption on the internal flash. I would suggest reinstalling the firmware on your device after formatting it (formatting the device only should be enough, I think).
    The size of the new firmware release, double than the size on the previous one, means that it probably has new features and applications that will be enabled on the future; however I doubt it means it has new features right now and hope it does not means we have two firmwares (on for the 64 GB model and other for the previous ones) as the SRM/AlphaBIOS pair on the Digital Alpha systems (an ugly hack on these superb computers, in my humble opinion) -- by the way, the new firmware does not require more space on the internal flash (I have 5077 MB available on mine with all firmware releases).
    The behavior you describe about album art being shown on the photos shortcut happens with older firmware releases too; I prefer album art embedded on the audio files instead of being available as another file. I agree with you, only pictures under the photos directory should be shown as images.
    Cheers.

  • Having issues with text etc. shifting in preview. Any ideas as to what is going on here?

    When I place type or other items on a page, they shift in Muse preview and when previewing in a browser. Size and placement of the text are incorrect. Why are these items not lining up as they did in the Design panel in Muse? I even tried creating a blank page with only some text center to make sure it wasn't something else in my page. One would think this would be a basic feature of Muse. Having items show up where you actually placed them. What am I missing here? My layout looks fine until I preview. I'm new to Muse, so maybe I'm missing something in my setup. Thanks in advance!
    Looks fine here. This particular page has a full screen video background via a widget. But even on a blank page I have the same issue.
    Then in Previewing it all shifts and the text seems scaled down.

    This is for imessage and not text message,  this can occur when people are sharing the same apple id.
    On each devices go to settings - message - send&receive - either uncheck or remove the apple id.

  • My text boxes shift when exporting to PDF

    I'm having an odd problem. I'm using a file that I've created and whenever I export my INDD file to PDF, some of my text boxes shift and rotate.
    As you can see in the example below, my "language" box gets rotated 90º and pushed slightly left and off the page.
    I've never encountered this problem before. Also, if I reorder the layers, other text boxes will end up moving. I've even tried inserting blank frames into the document with no success.
    I'm not getting any errors from the program either.
    Please advise!

    OK, overridding would have been the first suggestion, so we'll move on. Are you patched to 7.0.4? If not, try that first, and if there's still a problem, try exporting to .idml. See Remove minor corruption by exporting

  • Indesign - Text being shifted when retyping

    We have 2 Macs that operate Indesign in the same office.
    When simply replacing text (i.e. typing a new name on an existing business card), the text is shifted down by about the height of the word. This occurs on one computer, but not the other.
    I assume that there will be some box that is ticked (or unticked), but so far have had no luck finding the solution.
    Any ideas?
    Regards
    Ben

    Ben,
    For best results, please post this in the InDesign forum. This forum is primarily for questions regarding the entire suite or cross-application issues.

  • Paste some text in the windows clipboard

    Hello,
    i want to paste some text within a customer-specific scenario into the windows clipboard (CNTRL+C automatically done in background); has anyone some ideas how to solve this issue? I am inside a BSP, so i cannot use the old frontend services anymore...
    Kind regards
    Christian

    Use - FM - CLPB_EXPORT - but it is obsolete.

  • TextField  javascript: select some Text with selStart/selEnd

    Hi,
    I try to preselect some text content within a TextField via javaScript.
    I found some documentation, which states that in the change-Event I could set the selStart and selEnd Attributes by a script.: When a change or full event occurs, if characters were selected in the field, selStart and selEnd
    are set to bracket the selected characters.
    I tried this, but it did not work for me.
    Any Ideas on how to preselect some text in a TextField by script?
    Many thanks in advance

    I solved this same issue by using a switch script.
    Please see my earlier thread regarding this and Paul's example will provide you with the proper scripting for a switch script.
    http://forums.adobe.com/thread/479021
    script on the drop down list as follows
    switch (this.rawValue) {
         case "dropchoice1"
              fieldname1.rawValue = "text choice here";
              fieldname2.rawValue = "text choice here";
              break;
         case "dropchoice2"
              fieldname1.rawValue = "text choice here";
              fieldname2.rawValue = "text choice here";
              break;
    Good luck.

Maybe you are looking for

  • The PCD folder with all par files in the portal is empty

    Hi all gurus. I have a customer that failed with a transport of iviews between two portals, the par file was not included even if attribute "include dependent objects" was checked. I have met this problem before and the only(?) solution is to downloa

  • BAPI Upload Excel to SAP R/3

    Hello, i don't if this is the best place to put this topic, but here he goes. I have a excel workbook and i have 3 buttons, one to connect remotely to Sap, one to download a table from a RFC function e another to upload data to another table in a rfc

  • IMac won't sleep

    this has been a problem for a long time. It'll sleep if you tell it to sleep right now, but not if you set it to sleep after a specific period o inactivity. I' had used IceClean in the past to set it to do a safe sleep to make it easier to move aroun

  • Problem Creating MVIEW in Prod Env.

    I'm trying to create MVIEW in schema A which is located in APJ region and the source schema B which contains MVIEW logs located in AMF region. When I'm runing create MVIEW, its not retrrning back even after 3 to 4 hours and we are about to miss deplo

  • My ipad is the 1st generation and is unable to turn on. what should i do?

    heellpp