Find multiple formats in one search?

Is there any way I can find multiple formats in one search? I need to find all instances of a paragraph style that comes after another paragraph style.

Sorry, no, the Find/Change function doesn't permit that.
You could export to InDesign Tagged Text and manipulate that text file with an external tool...

Similar Messages

  • How to use multiple formats in one JFormattedTextField

    Hi,
    I am looking for a way to allow multiple formats in the same JFormattedTextField. Let's say I want to allow input like:
    a) 123-AB-123
    and
    b) AB-12345-CD
    Of course I could use an InputVerifier of my own combined with regular expressions to see if the input matches. But I like the way JFormattedTextField supports the UserInput by displaying a Placeholder String. So the User sees what the input might look like.
    I'd tried to write a FormatterFactory of my own, which will return either a MaskFormatter for a) or b) but the JFormattedTextField checks out the Formatter only when gaining or loosing focus. What should happen is that it checks out the formatter after each keystroke.
    Does anyone know a solution for this or how I could force the FormattedTextField to REget it's formatter?
    Thanks
    Thimo

    Check out the following; it provides code for a regular expression formatter:
    http://java.sun.com/products/jfc/tsc/articles/reftf/
    Unfortunately, this does not support the 'placeholder' notion like the MaskFormatter does, if that's what you were talking about. I'm not sure how you could cobble them together, since with the MaskFormatter you don't have to type the mask literal characters, but you would need to with the regular expression.
    : jay

  • Using Tags, Can i Search for Multiple Tags in One Search Folder?

    Hi forum,
    i would like to set a Search Folder and search using Tags. I would liek to use one such folder and search for everythign i haver tagged last week. How cna i search for 'TAG A' and 'TAG B' in one Search Folder?

    Hi mumbles2701,
    All you need to do is to briefly type in your tag in the search bar and in the drop down menu, you should be able to select a tag, press enter and just repeat this process for as many tags as you like
    Hope I helped!

  • Mixing Multiple Formats Onto One Timeline

    I am currently editing a reel of my material and was wondering the best way to mix multiple formats together. The two that I need to go onto the same timeline are dvcpro hd which was shot 720p at 24 frames per second and apple pro res ntsc with a telecine pulldown on it. Should I through the 720p footage through compressor, if so what should i export it as? thanks

    One way to do it:
    Use Compressor to make the HD movie 16x9 SD(853x480) 29.97 ProRes or PRHQ.

  • Multiple Formats in one source file...

    I'm trying to load data from flat files that have multiple record formats within the same file.  Does anyone have experience with this scenario?

    Greetings Post Originator,
    This post is older than 60 days and there are no entries in the past 30 days.  Based on the content discussed, it appears that you question has been answered. This message is being marked as answered and points are being assigned if available where possible. 
    Thank you for being an active participant in the SAP Forums,
    Rob Siegele
    Forum Moderator
    SAP Americas

  • Export into multiple formats in one single task

    Ever so often I have to export the same files in various Formats, for example one client wants a small JPG in low quality for layout, a full size JPG in 100% Quality and a DNG in case they still have to make corrections before going to print.
    To this day I have to start 3 individual exports to fulfill that task.
    Besides the fact that it would be much more comfortable to combine the three into one export with different formats and seperate subfolders - doesn't it take much longer that way?
    As the exports start at different times I assume  the RAW-files have to be loaded 3 times for each of the exports. Would make quite a difference if one has to export 600-700 images a day.

    +1 vote.

  • How to generate one report in multiple formats with FOP or BIP?

    Hi all,
    Is it possible to generate multiple formats of one report in a single "call" using Apache FOP or BI Publisher? (something similar to reports bursting).
    Right now I can only select one format at a time.
    Thank you,
    Ana-Maria

    Hi Ana-Maria,
    When you enable printing on a report region or add a button to download a report query to your application, then you get a single document download. How would you see this working with "multiple formats"? Given that APEX is a development environment, you can pretty much implement anything you like. The built-in printing capabilities in APEX come with an API that allow for customization of the default functionality, e.g. you can use apex_util.download_print_document to dynamically assign report layouts at rumtime or to use you own XML data sources or XSL-FO style sheets. More relevant to you question though, there's also apex_util.get_print_document. What that allows you to do is to generate report documents inside the database and e.g. store them in database tables or email them out to a list of recipients. You can call this API as often as you like to, requesting any combination of available report formats.
    The API function is documented here:
    http://download.oracle.com/docs/cd/E10513_01/doc/apirefs.310/e12855/apex_util.htm#CHDDECIA
    Regards,
    Marc

  • Help with multiple format support in FCP 7.

    I have a handheld camera that records in .mts format and I need to be able to run it in the same project file as .mov files from a canon 7D camera. Which I believe are h264? Is there a way to convert the .MTS or to use multiple formats in one project?

    Just to add to Ilovm's advice, the Canon may shoot .mov files, but you're right…they are h.264 and also need to be transcoded to an editing codec,  That can be done in Log & Transfer, if the camera's card structure is still intact, or in Compressor or MPEG STreamclip if L&T isn't an option. So when you set up your project, your clips and sequence will all be in the same codec, typically a variant of Pro Res.
    Russ

  • InDesign search multiple formats at once in find and replace

    I am pretty new to InDesign and InDesign forums.  I am having problems figuring out how to do this task.  I am using CS6, and  I have a rather large document that has a glitch in the formatting.  The Latin names for species are in italics, but for some reason the space between them is not always in italics, and this is creating havoc with indexing the species.  In the first name below the space is italicized, and in the second it is not, so the whole name cannot be indexed because the italics is the key to creating the index.  I need to change the space between italic words to be italicized, but I cannot figure out how to use multiple format types within one find command to do this. I need to search out an italics word or wild card and un-italicized space and italics word or wild card and change it to all italics. Does anyone have any advice?  I greatly appreciate your time.
    Epinotia aceriella
    Sparganothis pettitana
    Thank You!
    Maggie

    The basic idea would be to do a few GREP search and replaces:
    1. Search for any character at the end of a word formatted in italics.
    2. Replace with that character + some symbol that isn't used in the
    book, say @ (careful of email addresses)
    3. Search for any character at the beginning of a word formatted in italics
    4. Replace with same character as in (2)
    5. Do a regular search for @ @ and change to italics formatting.
    6. Delete all @
    The GREP search for (1) might be:
    (.)\>
    The GREP replace for (2) might be:
    $1@
    The GREP search for (3) might be:
    \<(.)
    The GREP replace for (4):
    @$1
    etc.

  • SQL Query -How2bring multiple results into one field using Formatted Search

    Hi Everyone
    i am trying to bring in the results of the field dbo.Lot_ITEM.LOT using a formatted search into a row level using the following query:
    SELECT     dbo.LOT_ITEM.LOT
    FROM       dbo.DLN1 INNER JOIN dbo.LOT_ITEM ON dbo.DLN1.ItemCode = dbo.LOT_ITEM.ITEM
    WHERE     dbo.LOT_ITEM.ITEM=$[DLN1.ItemCode]
    however the result of the dbo.Lot_ITEM.LOT field could be more then one value depending on how many lots are assigned for that item
    (for example this query would be similar to assigning batch/serial numbers to an item being despatched - as you can choose multiple batches/serials depending on the quantities available and required and then move from the left to the right side of the selection window) if that makes sense!
    is it possible to bring in the multiple results into one field? and how can i amend the above query to include this?
    Thankyou in advance :o)
    Edited by: Asma Bi on Apr 23, 2008 7:22 PM
    Edited by: Asma Bi on Apr 23, 2008 7:24 PM

    Hi Suda
    Thanks for replying :o) but im not sure about the query?
    just to simplify it (as the query im working with is to do with 3rd party addons) i have used the serial/batchs field instead and used standard demo database fields from SBO 2005 sp01:
    SELECT     dbo.ixvSerialNoFact.SRI1_IntrSerial
    FROM       dbo.DLN1 INNER JOIN
                    dbo.ixvSerialNoFact ON dbo.DLN1.DocEntry = dbo.ixvSerialNoFact.SRI1_BaseEntry
    WHERE     dbo.ixvSerialNoFact.ItemCode='g1000' and dbo.ixvSerialNoFact.SRI1_BaseEntry = '193'
    The above brings me the relevant results but when i change it to be used in a formatted search:
    SELECT     dbo.ixvSerialNoFact.SRI1_IntrSerial
    FROM       dbo.DLN1 INNER JOIN
                    dbo.ixvSerialNoFact ON dbo.DLN1.DocEntry = dbo.ixvSerialNoFact.SRI1_BaseEntry
    WHERE     dbo.ixvSerialNoFact.ItemCode=$[dln1.itemcode] and dbo.ixvSerialNoFact.SRI1_BaseEntry = $[dln1.DocEntry]
    i cant seem to get it to work - now this may be because the serial number is not allocated until teh record is added to the system, however when this happens i am unable to go back in and manually trigger the query as the delivery note rows cannot be selected!
    i  think as what im originally wanting an answer for is same as this example, im wanting to know if this is even possible?
    Thanks
    Edited by: Asma Bi on Apr 24, 2008 3:53 PM
    Edited by: Asma Bi on Apr 24, 2008 3:55 PM

  • One search help for multiple select-options in webdynpro abap

    Hi,
    I need a way to use one search help for multiple select-options fields. My scenario is :
    I have a table for keeping different organizational units' values of different systems. I have pasted some sample data from this table at the end of this mail. On the screen I want to have 1 select-options filed for werks, and 1 select-options filed for vkorg. (In fact I will have more org. unit fields...) In the beginning of my application the user will select sid.
    If the user selects ADS as SID, when he opens search-help for the first org. unit (werks), he will see the records with SID: ADS, VARBL = $WERKS, LANGU = SY-LANGU.
    If the user selects AGT as SID, when he opens search-help for the second org. unit (vkorg), he will see the records with SID: AGT, VARBL = $VKORG, LANGU = SY-LANGU.
    I have created a search-help taking SIDD, VARBL and LANGU as import parameters; used field mapping and bound this search help to my table. I have created 2 context nodes : org1 and org2 having attributes SID, VARBL, VALUE, LANGU .
    I have assigned related SID, VARBL and Langu values to these attributes at runtime as I needed. That way, if I use input field and reference to the related context attributes org1-value and org2-value2 accordingly, search help works well as I want.
    However, when I use select-options field , I can not bind the field to the context data. I can give reference only to ddic structure. Is there any way to reference to a context attribute? I searched for this in SDN, but could find nothing.
    I think I won't be able to use this way. What do you say?
    As I read from forums maybe using OVS help will be suitable for me. But I have to use one search-help for all select-options fields. Do you know how I can determine the active select-options field and pass its name (for instance "werks" ) as parameter to this OVS search help. (Also I'll pass SID and LANGU.)
    MY TABLE (ZBYYT080) CONTENTS:
    SID     VARBL     VALUE     LANGU     VTEXT
    ADS     $WERKS     1     T     Werk 0001
    ADS     $WERKS     11     T     OZYAS  GIDA URETIM YERI
    ADS     $WERKS     5501     T     BOYA GEBZE FABRİKASI
    ADS     $WERKS     5502     T     BOYA CIGLI FABRİKASI
    AGT     $WERKS     2301     T     KAMLI DAMIZLIK
    AGT     $WERKS     9601     T     PANAR DENIZ URETIM YERI
    ADS     $VKORG     22     T     AA KİMYASALLAR
    ADS     $VKORG     8001     T     İINSAAT BOYALARI
    AGT     $VKORG     6500     T     DAMk St.Org
    AGT     $VKORG     5400     T     PANAR St.Org.
    I wish I'm clear enough..
    I will be gald if someone answers me as soon as possible...
    Thanks İn advance..
    MERAL

    Hi,
    Your ques is how to refer to a DDIC search help to refer to selection screen parameter ?
    Am I right ?
    If Yes, then in the interface IF_WD_SELECT_OPTIONS
    method ADD_SELECTION_FIELD, ADD_PARAMETER_FIELD etc
    have importing param like I_VALUE_HELP_TYPE and  I_VALUE_HELP_ID, I_VALUE_HELP_MODE, I_VALUE_HELP_STRUCTURE
    etc which may help you to link your create DDIC Search help to selection screen params.
    this is just a clue from my side. I haven't tried it myself.
    You can go to the where used list of this method and find some sample implementations which use these params.
    Hope this helps.
    Regards
    Manas Dua

  • One Search service application for multiple web applications in a single server

      We are planning to host 17 Web applications in a single Server. Do I need to create search service application for each web application or I need to create one  Search service application , create a Content source for each web
    application and create a Result source for filtering. Which is the best approach. And which approach takes more RAM memory.
       In my application I am using Search web part, "Recently Changed Items", "Popular Items" web parts. when I created only one one  Search Service application for all web applications and using Result sources ,
    I am not getting the results. What could be the problem.

    Hi,
    One SSA is ok, but you should think about access rights. If the access is clear cut between all the web apps you should be ok with one SSA. Multiple result sources limiting on content source also works, but could easily be bypassed.
    Multiple SSA's will eat up RAM/CPU like a mother :)
    As for popular etc.. it could be due to how those sources are set up, but haven't investigated or tested this much.
    Thanks,
    Mikael
    Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of Working with FAST Search Server 2010 for SharePoint

  • Messages - Searching for terms and finding multiple matches

    In Messages, if I search for a term, and the term is matched multiple times within a conversation, how do I look at earlier matches? Right now it will only show me the most recent.

    HI,
    What I would like the Search to do is actually search all the chat I have ever had (I have saved one back to 2004 from iChat) so I could look for things people have sent me.
    What I find is it will only search Open Chats.
    Currently a Buddy I spoke to today show "history" only back as far as the Mavericks Update day due to the different places Mavericks keeps the Archived/Saved chats compared to Mountain Lion/Message 7.x.x. and iChat.
    The particular Buddy does send my name on different days so I searched for that.
    It tells me that it can find 6 instances.
    It indicates one of these the first time you do it with a fresh word in the Search and only shows me the part of the Chat that occurred today.
    As far as I can  tell the highlighted IM (it was over the AIM service) is the last one with the occurring word in.
    You now have to swap to the Edit Menu > Find > Find Next  Apple/CMD ( or ⌘) + G
    It seems this then work backwards in time.
    9:24 pm      Wednesday; October 30, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I've noticed that in the new version of Firefox that you cannot save multiple tabs at one time like the previous Firefox 3.6.or so and I wanted to know if I can find that feature again?

    I've noticed that in the new version of Firefox that you cannot save multiple tabs at one time like the previous Firefox 3.6.or so and I wanted to know if I can find that feature again?
    In the previous versions of Firefox when you went to you Bookmarks menu it gave you the options to either Bookmark This Page 'command' + 'D', Subscribe to this Page, Bookmark All Tabs 'up-arrow-key' + 'command' + 'D', and Organize Bookmarks 'up-arrow-key' + 'command' + 'B' however in the newest version of Firefox there is no Bookmark All Tabs so you can bookmark all the tabs that you have up in one window at a time. So I need to know if it is possible that the feature is now in a different place, is gone altogether, or if you can get that feature another way?
    For me personally and my work I go through hundreds of web pages a day and save around half of those so it is imperative that I be able to bookmark more then one tab at a time because I can't be bothered to bookmark every single page separately and then go through hundreds of tabs in my Unsorted bookmarks in order to sort those bookmarks. It is simple inconvenient to sort every bookmark individually that is why the previous version of Firefox with the Bookmark All Tabs button was superior in its convenience.

    Right click any tab and choose "Bookmark All Tabs".

  • HT204407 Will Find Friends app work with multiple phones on one Apple ID?

    My family has one apple ID and multiple devices on that account.  Is it possible for my wife and I to use Find Friends this way or does she need another apple ID?  When I put the app on her phone, it thinks it is me.  We want to use the app to locate one another.

    Use "find my iphone" for one apple id and "find my friends" for multiple id's.

Maybe you are looking for

  • HT1918 My iPhone won't let me download or update anything???

    My iPhone won't let me download or update any apps, just keeps going to my account pages, asks me to put in my card details then says there's a problem or it's declined even when I try to download or update free apps, I have had the day Apple ID and

  • "Unable to open project file." i need help! URGENT

    before the problem... my film project and all its files were in a WD external drive. i had some problems with soundtrack pro being too slow because the files were on an external drive, so i bought 2 Internal Seagate drives. i moved all my files to th

  • How can I edit all events in iCal?

    Hello, is it possible to edit all events in iCal at once or do I have to edit each event itself? I want to add a reminder to all events! Thanks for your help! Dirk

  • Re: Can't perform factory reset to Satellite L650

    Hi support team, Hope you are well :) I have some troubles and hope you will help me to resolve them. Here is the description of my problem: I have a Toshiba Satellite L650 - 17R laptop which I want to reset to factory defaults. I have used the follo

  • Adobe Clip Notes picking up random words and timecode markers from speech transcription metadata

    I've been experimenting with the speech transcription feature in Premiere CS4 - sometimes my results are good, sometimes not. Regardless, after I'm finished editing my project and export it via Adobe Clip Notes for client review, the clip notes file