Find/Change within page range

Either I'm a bit thick for not being able to work out how to do this or I'm the only one that thinks that this is would be a very useful thing to be able to do.
I want to find/change text in multiple instances all at once, but only on a page range, not the whole document. If I can't do that being able to limit it to one page would work. I realise I can move the pages in question to a new document, do it there and then move it back but that seems a rather 1990's solution!

If there are no threaded text frames anywhere in the document, here's a trick I've used when I've been in your shoes in the past:
Open document. Use TextStitch to stitch all frames in doc.
Go to the first page in your range. Find the first frame (the top-leftmost frame) and start selecting text. Go to the last page in your range. I use control + shift + down-arrow to select whole paragraphs. Hold 'em down until...
... you have selected all of the text you need for your find/change query. Perform your query with "Selection" scope.
Perform any post-find/change cleanup necessary.
When your query is done, use TextStitch to unstitch all frames in your doc. (Which will break all threads, including ones that were made by hand before step 1, hence my caveat "If there are no threaded text frames anywhere in the document.")

Similar Messages

  • Why can't I change the page range?

    If I try to print a single page (say page 3) from an AppleWorks 6 document, the Print… dialogue box will not accept anything except the default "Page 1 to Page 1".
    The solution is to Quit and Relaunch AppleWorks 6. Now the Print… dialogue box accepts your desired page range. This behaviour is not a one off, it's repeatable.
    Can anyone suggest a workaround?

    Perhaps not the right forum - but nevertheless Appleworks does seem to have got increasingly buggy with each new system update. As Apple are no longer developing Appleworks, instead concentrating on iWork, there's unlikely to be a solution forthcoming.
    I find it helps if I quit and re-open Appleworks after working in it for an hour or so - I think it's just caches filling up but can't be definitive on that.
    Either way, do ensure you save your work regularly so the glitches don't catch you out. In my opinion it will be a while before iWork can truly take over Appleworks' mantle, so I'll be continuing to use it, bugs and all.
    iMac 20" G5 1.83GHz   Mac OS X (10.4.8)   iMac G3 500/20/512 10.3.9

  • Why can't I change the page range in Appleworks 6?

    In Tiger, the Print… dialogue box allows me to print all pages, all odd pages and all even pages - but not an individual page (except for page 1).
    However individual pages from the same document to the same printer (but via my Panther laptop) are handled without any trouble.
    Can anybody offer a suggestion?

    Hello
    As I wrote in my late post, this feature works flawlessly for me.
    I assumes that something is corrupted.
    It may be in AW's preferences or in the file itself.
    For AW's preferences, look at Peggy's good old tip:
    <http://discussions.apple.com/thread.jspa?threadID=121704>
    If it's in the file, try to save it as an AppleWorks 5 document.
    Open this new document with AW6.
    This protocol forces a complete rebuild of the file's internals and remove the embedded print record.
    So I hope that you will be back to a standard behaviour.
    Yvan KOENIG (from FRANCE samedi 24 mars 2007 12:36:56)

  • Is there a way to find/change the font of numericals only, within a document in indesign?

    Is there a way to find/change the font of numericals only, within a document in indesign?

    It might not be what you need for this document, but if you were creating it from scratch, a GREP style would probably be the way to go. That way,  new figures added to the text will  automatically be styled the way you like.
    Start with a base Paragraph Style (i.e. 'Body') that all subsequent styles ('Heading' etc) are based on. Select a figure, and apply the font and any other attributes required. Select it and make a new Character Style. In your Paragraph Style, go to GREP Styles, and set it to apply the Character Style to the 'Any Digit' Wildcard.

  • Find/Change problems within a nested style?

    I have a problem with Find/Change (in both CS4 and CS5) not recognizing text within its “find” parameters when text that fits those parameters is part of a nested style. I want to find any instance of italic in the text, regardless of what paragraph or character style it is, but F/C only intermittently finds italics, both within and without that text existing in a nested style. Has anyone come across this issue?
    There is NOTHING different about the text that is recognized by F/C–or not recognized–that shows up in any of the panels or palettes. There are no font conflicts. I’ve replaced prefs and saved data files. If I go into the character palette and change the italic portion of the nested style to “italic” character style (it shows up in character palette as [none], even though it has a nested style), then F/C finds it for sure; but if I don’t do that, then F/C will sometimes find it, and sometimes not, and sometimes in one instance and not in another! There is no hidden formatting that shows up in story editor. I remade another nested para style with the same formatting but with varying results! Help… I’ve tried everything.

    I have a problem with Find/Change (in both CS4 and CS5) not recognizing text within its “find” parameters when text that fits those parameters is part of a nested style. I want to find any instance of italic in the text, regardless of what paragraph or character style it is, but F/C only intermittently finds italics, both within and without that text existing in a nested style. Has anyone come across this issue?
    There is NOTHING different about the text that is recognized by F/C–or not recognized–that shows up in any of the panels or palettes. There are no font conflicts. I’ve replaced prefs and saved data files. If I go into the character palette and change the italic portion of the nested style to “italic” character style (it shows up in character palette as [none], even though it has a nested style), then F/C finds it for sure; but if I don’t do that, then F/C will sometimes find it, and sometimes not, and sometimes in one instance and not in another! There is no hidden formatting that shows up in story editor. I remade another nested para style with the same formatting but with varying results! Help… I’ve tried everything.

  • Sql to find narrow ranges within broad ranges in the same table?

    hi,
    i'm building a query to find narrow ranges of zip codes within broader
    ranges in a table (for tax purposes). for example:
    LOW_ZIP HI_ZIP
    23400 23499
    need to find
    23401 23402
    23403 23440
    23441 23... you get the picture. :)
    so, each row has a low value and a hi value, then i need to run a
    subquery to take those values and find narrower ranges. any ideas?
    so far here's what i have - neeless to say it doesn't work. :P
    select sales_tax_id,
    from_postal_code,
    to_postal_code
    from ar_sales_tax a,
    (select from_postal_code as fpc,
    to_postal_code as tpc
    from ar_sales_tax
    where rowid = rowid) b
    where from_postal_code between b.fpc and b.tpc
    and to_postal_code between b.fpc and b.tpc
    and end_date is null

    here's the table layout...
    SQL> desc ar_sales_tax
    Name Null? Type
    LAST_UPDATE_DATE NOT NULL DATE
    LAST_UPDATED_BY NOT NULL NUMBER(15)
    CREATED_BY NOT NULL NUMBER(15)
    CREATION_DATE NOT NULL DATE
    LOCATION_ID NOT NULL NUMBER(15)
    RATE_CONTEXT NOT NULL VARCHAR2(30)
    ENABLED_FLAG NOT NULL VARCHAR2(1)
    START_DATE NOT NULL DATE
    END_DATE NOT NULL DATE
    FROM_POSTAL_CODE NOT NULL VARCHAR2(30)
    TO_POSTAL_CODE NOT NULL VARCHAR2(30)
    TAX_RATE NOT NULL NUMBER
    TAX_ACCOUNT NUMBER(15)
    LOCATION1_RATE NUMBER
    LOCATION2_RATE NUMBER
    LOCATION3_RATE NUMBER
    LOCATION4_RATE NUMBER
    LOCATION5_RATE NUMBER
    LOCATION6_RATE NUMBER
    LOCATION7_RATE NUMBER
    LOCATION8_RATE NUMBER
    LOCATION9_RATE NUMBER
    LOCATION10_RATE NUMBER
    ATTRIBUTE_CATEGORY VARCHAR2(30)
    ATTRIBUTE1 VARCHAR2(150)
    ATTRIBUTE2 VARCHAR2(150)
    ATTRIBUTE3 VARCHAR2(150)
    ATTRIBUTE4 VARCHAR2(150)
    ATTRIBUTE5 VARCHAR2(150)
    ATTRIBUTE6 VARCHAR2(150)
    ATTRIBUTE7 VARCHAR2(150)
    ATTRIBUTE8 VARCHAR2(150)
    ATTRIBUTE9 VARCHAR2(150)
    ATTRIBUTE10 VARCHAR2(150)
    ATTRIBUTE11 VARCHAR2(150)
    ATTRIBUTE12 VARCHAR2(150)
    ATTRIBUTE13 VARCHAR2(150)
    ATTRIBUTE14 VARCHAR2(150)
    ATTRIBUTE15 VARCHAR2(150)
    PROGRAM_APPLICATION_ID NUMBER(15)
    PROGRAM_ID NUMBER(15)
    PROGRAM_UPDATE_DATE DATE
    REQUEST_ID NUMBER(15)
    DATE_FIRST_USED DATE
    LAST_UPDATE_LOGIN NUMBER(15)
    SALES_TAX_ID NOT NULL NUMBER(15)
    SQL> spool off

  • Change page range to page #

    How do you change page range to page number in a book in its panel showing the chapters. I see Page Range Chapter 1 - 1-12, Chapter 2 - 1-5, chapter 3 - 1-50, etc instead of Chapter 1 - 1-12, Chapter 2 - 13-17, Chapter 3 - 18-67, etc?
    Every book I open and work on is this way????

    Peter - It is set for automatic pagination in the page numbering options and page order=continous from previos document and set to automatic in page numbering options
    Dominic - No it is set to Absolute numbering
    Sorry I didn't respond sooner i checked Subscribe to this discussion by email and didn't recieve anything.

  • Query to find numeric range gaps within another range

    Hi All,
    Is it possible to find the solution with a SQL query for the following scenario.
    I have done it in PL/SQL but want to do it in SQL. I have tried with analytic functions but not able to find the expected results.
    Suppose i have a Table A with below data
    Range_Start     Range_End
    4                          16
    20                        100
    101                      200
    250                      300
    And Table B with below data
    SubRange_Start     SubRange_End
    7                               9
    10                             13
    20                             60
    70                             80
    110                           190
    270                           300
    i want to find the missing gaps in Table B within the ranges specified in Table A, like below
    Output
    start     end
    4          6
    14          16
    61          69
    81         100
    101          109
    191          200
    250          269

    Hi Dear,
    Can I do reverse I mean I can get output as your question from your output as below:
    I have this table
    FID      STARTD ATE END DATE
    1 01-MAY-10 03-MAY-10
    1 09-MAY-10 11-MAY-10
    1 03-JUN-10 04-JUN-10
    2 03-JUN-10 04-JUN-10
    2 04-AUG-10 04-AUG-10
    2 06-AUG-10 06-AUG-10
    I want like this.
    FID FDATE
    1 01-MAY-10
    1 02-MAY-10
    1 03-MAY-10
    1 09-MAY-10
    1 10-MAY-10
    1 11-MAY-10
    1 03-JUN-10
    1 04-JUN-10
    2 03-JUN-10
    2 04-JUN-10
    2 04-AUG-10
    2 06-AUG-10
    And:
    How can i get date wise entry from Joining date to relieving date like..
    FID      START DATE END DATE
    1 01-MAY-10 03-MAY-12
    1 09-MAY-10 11-MAY-11
    2 04-AUG-10 04-AUG-11
    I want like this.
    FID FDATE
    1 01-MAY-10
    1 03-MAY-10
    1 04-MAY-10
    1 05-MAY-10
    1 16-MAY-10
    1 17-MAY-10
    1 08-May-10
    1 09-May-10
    1 03-May-12
    Can you please help me.
    Thanks,
    Edited by: 978452 on Dec 24, 2012 12:02 AM

  • How do I change the default page range in the Print Dialog

    Post Author: MikeDymond
    CA Forum: .NET
    Even when a report has more than one page the print dialog produced by the .net version of CrystalReportViewer sets the default page range to 1 of 1.Is it possible to change that to default to All? Cheers Mike

    Post Author: dlyford
    CA Forum: .NET
    Yes you can do this. I've done it but cannot remember exactly what page I had to modify. I think it was in the aspnet_client\system_web\2_0_50727\crystalreportviewers115\js\export.js file. In one of the functions you need to swap the ALL and PAGES variables.  Hope this helps.

  • I have a A4 document (569 pages) and within that A4 there are few A3's. Is there a way to isolate the A3's or find out what page numbers are A3's instead of scrolling through all the 569 pages???

    I have a A4 document (569 pages) and within that A4 there are few A3's. Is there a way to isolate the A3's or find out what page numbers are A3's instead of scrolling through all the 569 pages???

    thank you for the info... however I'm done buying pdf readers.... I've got three now, that should suffice.
    I don't think there's a problem such as you mentioned because the pages are all similar : text and drawings. Some of the pages with drawings work, other similar pages don't.
    I converted with Calibre to epub format and this seems to work !!!
    So good so far...
    Now I need to find a conversion to pdf to allow me to use goodreader or iannotate.
    Basically... the text is ok, because a conversion allows reading. So a shortcoming by Apple in my opinion. Again, all pdf's should be readable on such an expensive tool !!!

  • Need to find/change anything within parenthesis

    Hello,
    I love find/change and it's time-saving features! I have a daily chunk of type that I need to reformat. It comes with characters like <B> that I can easily use my saved find/change to delete, but I can't seem to find a way to delete or change "anything within an open and closed parenthesis." Is it there and I'm not seeing it or will I need a script for this?

    If i could get more information as how what your looking to delete/change that would be helpful. however if you want to change only what is IN the paranthesis use THIS in GREP:
    (?<=\().+(?=\))
    if you want to change the parenthesis too its THIS in GREP:
    \(.+?\)
    be sure to use the GREP tab, its an easy thing to forget. Good luck!

  • How do I find the summary page on ITunes. Have new Windows 8 and have to change to manually manage music

    I have downloaded audiobooks from the library using Overdrive for years. I have a new computer with Windows 8 and now it's been difficult. I have a book ready to transfer to ITunes to download to my Ipod but in order to transfer it a message came up saying go to the summary page in ITunes and check Manually Mange Music.  I can't find the summary page anywhere on itUNES

    The Summary screen is what you see in the main part of the iTunes window, when you select the iPod in iTunes.
    To select the iPod in iTunes when the iTunes sidebar is NOT visible, there is a "device button" near the upper right corner of the iTunes window.  If your iPod is the only connected device, it should say "iPod."  Click it to select your iPod in iTunes.
    If the iTunes sidebar IS visible (along left side of window), the iPod appears in the sidebar, under DEVICES.  Click it there to select it.
    When the iPod is selected, there is a row of buttons that starts with Summary.  Summary should be the initially displayed screen.  That setting (a checkbox) is actually Manually manage music and videos for an iPod touch.

  • CS4, Page range changed. How do I get it back to my normal?

    Hi. For some reason, when I try to export out of InDesign into a pdf, now all of a sudden, instead of choosing my page range as Sec1:2-Sec1:5 or 2-Sec1:5, all of a sudden it is coming in as choose your page range as +2-+5. How do I get it back to my normal and get rid of this +X-+X?  Thank you.

    Check the Section Prefix on Numbering $ Section Options, put back the Default prefix Sec1 or the prefix you like. See attached image.

  • Adobe X Printing page ranges in pdf's with multiple sections

    I'm trying to print a page range in a document that is divided into sections that start over with page 1 or page i, and using an absolute page range doesn't work.  For example, the document has an initial cover page up to the Contents page numbered i - vi, then the Contents section is numbered i - iv, then the Figures section is numbered 1 - 2, then the Chapter 1 section is numbered 1 - 6, Chapter 2 is 1 - 14, etc.
    In Adobe X, the default toolbar with the print, mail icons, then the up and down arrows, is followed by a box with the "page number" in it followed by a page range in (); for ex., the box has '1' in it and the range shows (15 of 94).  If I was viewing the title page, the box would have 'i' in it followed by (1 of 94), etc.
    When I try to print, the dialog menu shows the "Print Range" of "All", "Current Page", and "Pages".  If I select "Pages" and enter the absolute number from the range in () like (15 of 94), and I want to print absolute page 15-35, and I enter that in the "Pages" box as 15-35, what I get is a section further in the document that I don't want at all, and not the desired page range.  In fact, since the sections all restart the page numbering, I can't even find the starting page because the print function is totally confused about what page I mean.
    In previous Acrobat versions, I had no trouble using the absolute page range since that is obviously required to get the desired range; i.e., Acrobat can't know what section I want, so for ex. putting page 1-10 can mean any section with 10 pages.  I don't know how to use a page range for sections, like 2.1 - 2.4 or 2-1 to 2-4 because the Page range box doesn't recognize that.  And again, the absolute page ranges don't work either.
    The only way to print this document is to select the "All" button.  If the doc is 1000 pages long, I don't want to waste all that paper!!  Please help!

    You can use the thumbnails pane and print pages selected within the pane.
    Have you tried other strings like:
    1 - 6 , 1 - 13

  • Applescript find/change problem

    I have some text which needs to be styled in InDesign CS4 which has a bunch of extraneous tags ( eg. <b>, <i>, etc.). I have customised the FindChangeList.txt file that supports the FindChangeByList.applescript file to do things like:
    {find what:"<i>"}
    {change to:"^S"}
    which can then be picked up by a nested style. All good so far.
    Problem: the applescript will just not 'see' the strings <b> or </b> in FindChangeList.txt. It treats them like they aren't there. I can do it using the find/replace within InDesign, it works fine there, but my problem is that I have hundreds of pieces of copy to import and I'd like to automate as much as possible. Using GREP has the same effect, ie. works in find/replace within InDesign, but not with applescript.
    Any help would be greatly appreciated as this is really killing me at the moment. Thanks!
    Content of FindChangeList.txt follows. The command in the final line works, the command in the second-last line doesn't.
    (FYI the second line of code contains 'InDesign CS3' regardless of whether I use CS3 or CS4. I guess they didn't update the file)
    --FindChangeList.txt
    --A support file for the InDesign CS3 AppleScript FindChangeByList.applescript
    --This data file is tab-delimited, with carriage returns separating records.
    --The format of each record in the file is:
    --findType<tab>findProperties<tab>changeProperties<tab>findChangeOptions<tab>description
    --Where:
    --<tab> is a tab character
    --findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
    --findProperties is a properties record (as text) of the find preferences.
    --changeProperties is a properties record (as text) of the change preferences.
    --findChangeOptions is a properties record (as text) of the find/change options.
    --description is a description of the find/change operation
    --Very simple example:
    --text          {find what:"--"}          {change to:"^_"}          {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}          Find all double dashes and replace with an em dash.
    --More complex example:
    --text          {find what:"^9^9.^9^9"}          {applied character style:"price"}          {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}          Find $10.00 to $99.99 and apply the character style "price".
    --All InDesign search metacharacters are allowed in the "find what" and "change to" properties.
    text          {find what:"<b>"}          {change to:"^S"}          {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}          Find all bold and replace with non-breaking space.
    text {find what:"<i>"} {change to:"^S"} {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false} Find all italics and replace with non-breaking space.

    You probably should post this in the ID Scripting forum. Here's an example of some simple AppleScript find and changes that might help:
    --find and replace keyboard formating
    tell application "Adobe InDesign CS5.5"
         --first clear the preferences
         set find text preferences to nothing
        set change text preferences to nothing
        --replaces non breaking space with space
        set find what of find text preferences to "^s"
        set change to of change text preferences to "<0020>"
        set myFoundItems to change text
        --replaces soft return with return
        set find what of find text preferences to "^n"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces return space with return
        set find what of find text preferences to "^p<0020>"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces 2 returns with return
        set find what of find text preferences to "^p^p"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces return, tab, return with return
        set find what of find text preferences to "^p^t^p"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces space, return with return
        set find what of find text preferences to "<0020>^p"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces space, space with space
        set find what of find text preferences to "<0020><0020>"
        set change to of change text preferences to "<0020>"
        set myFoundItems to change text
        --replaces 3 tabs with tab
        set find what of find text preferences to "^t^t^t"
        set change to of change text preferences to "^t"
        set myFoundItems to change text
        --replaces 2 tabs with tab
        set find what of find text preferences to "^t^t"
        set change to of change text preferences to "^t"
        set myFoundItems to change text
    end tell

Maybe you are looking for

  • Selection screen basic doubt...

    Hi, I was looking at sample ABAP code in ABAPDOCU for learning ABAP objects and trying to replicate the smae in my own ZREPORT. SELECTION-SCREEN BEGIN OF SCREEN 100 AS WINDOW  TITLE text-100. PARAMETERS: button1 RADIOBUTTON GROUP grp,             but

  • Not getting email for alert log error

    Hi , Any one please answer , I am not getting e-mail alert for error in alert log file . Please some one guide me with the steps to configure the same. I need to configure this option in production very urgent. Thanks in advance. Anand Manuel

  • Need Asset Management

    I'm in search of an asset management software for my company, we have about 50 Mac users, 3 Xserve's, 3 RAID's. I want something that I can use to scan the network for Mac Devices (and/or Windows) and provide information about the devices that we can

  • HELP!!! ADF Table filters ignore space filtering

    (I'm using JDeveloper Version 11.1.1.6.0) Hello everyone! I have the default filters to my table for users to further filter the result. So, some of my columns contain empty records. Actually, they're not really empty, they contain a space for in the

  • Default Time for Clock Timer

    Every time I go to set the time on the timer on my iPhone, it's at 1:30. At one point, in the past, wasn't there something where it would stay at the previous setting? Is there a way to make it stay at the previous setting when the alarm goes off?