Find all topics that contain specific content

The Find feature in Robohelp for html seems to only be able
to find topics that contain the find criteria in the title of the
topic. Can I do a Find that will access all the topics that contain
a character, like a quotation mark, within the body of the
topic?

Hi all
Personally I think we need to clarify whether COHAN3 is
talking about looking through source content or compiled/generated
content. Certainly the utility you mentioned would work for the
source files, but it would fail on compiled/generated content.
Cheers... Rick

Similar Messages

  • Finding all topics where a particular style is used?

    Hi All.
    In RoboHelp 7, does anyone know how I can find all topics that use a particular style from my CSS? I want to update a style but need to ensure it updates correctly in all topics.
    I've failed to find this in the help or by searching the forum. Many thanks.
    Lillibet

    Depending on the style, a multi file find and replace search on
    <tagname> (such as <h1>
    or
    class="yourstylename"
    will find all the topics using the tag or class. The built in tool also allows you to click View for each of the topics listed after the search.
    See www.grainge.org for RoboHelp and Authoring tips

  • How/can I use boe search 4 all reports that use specific tables

    How/can I use boe search 4 all reports that use specific tables
    can this be done with query builder
    or
    is there a way to search all sql of all reports for specific strings and report names so that I can find all report sql that uses table1  for example?

    Hi Bart!
    You can use VBScript to extract the dataprovider within the reports (Search for SDK Desktop Intelligence).
    If you can wait a few days longer, I can provide my script.
    ciao Hakan

  • When i click on help in finder (all topics) I get no response, any suggestions?

    When i click on help in finder (all topics) I get no response, any suggestions?

    Move these three plist files from /Users/username/Library/Preferences/ to the Desktop, OPTION-click & hold the Finder's Dock icon, and select Relaunch. Now check Help. If it now works, delete the moved files.

  • How to find all photos that have NO faces, as opposed to UNNAMED faces?

    I find that iPhoto often misses faces entirely, especially if the face is wearing sunglasses or a hat or both.  Sometimes it is rather inexplicable that it has missed a face, as the face seems obvious.
    If you use the smart album method to find all "unnamed" faces, the photos have at least one unnamed face identified.  You can then add any missed faces to those photos.
    But what about photos in which iPhoto has failed to identify the existence of even one face?  Or for that matter, if I want to see only pictures of landscapes or objects that have no people?  Does anyone have a method for finding all photos that have no faces in them at all?
    For me, the idea is to find all unidentified faces and add them.  But as I pointed out above, there may be other uses for this.
    Any ideas, anyone?
    Thanks

    Awesome !!! Thank you very much. I did not realize you could use JavaScript to code against iTunes ...
    I don't know if you have written any of these yourself, but do you know how to maybe create a smart playlist with this information via script? If not, no big deal. At least I know have something which I can use, I will just have to run it every so often.
    Thanks again for pointing me to that site!

  • Finding all photos that include a particular person whether their face appears or not

    Faces is a great way to locate all photos where someone's face appears.  But what about photos that the person is in, but their face is not (e.g., the photo was taken from behind the person)?  What's the best way to tag photos so that I'll be able to have all photos that contain Person X together, whether their face is in the photo or not?  (Note: I know I could use Faces to add a face to the back of someone's head - that would get that picture to appear in Faces for that person, but would likely mess up the face recognition for that person).
    My current thought is to use keywords to tag those photos with the names of people who appear in photos without their face showing.  I could then create a Smart Album that includes all photos that contain a Face or Keyword for Person X.  Is there a better way to accomplish this?

    (Note: I know I could use Faces to add a face to the back of someone's head - that would get that picture to appear in Faces for that person, but would likely mess up the face recognition for that person).
    That will not mess up the face recognition. iPhoto will only use the faces that have been automatically found by iPhoto to learn the parameters for the recognition of the person. So you can include any part of the person to get the photot in the Faces stack on the cork board.
    My current thought is to use keywords to tag those photos with the names of people who appear in photos without their face showing.  I could then create a Smart Album that includes all photos that contain a Face or Keyword for Person X.  Is there a better way to accomplish this?
    That is fine, but does not give you access by using the Faces view.

  • I have a new computer and downloaded the latest version of itunes.I now need to authorise my computer but cannot find the bar that contains " store windows help" any suggestions please?

    i have a new computer and downloaded the latest version of itunes.I now need to authorise my computer but cannot find the bar that contains " store windows help" any suggestions please?

    Press Alt or Ctrl+B.
    tt2

  • FrameMaker 10 - Topics that contain xrefs are causing the program to freeze

    When I try to open a topic that contains a xref element with a valid href attribute, the program freezes for more than 5 minutes. This has caused significant problems with using this editor as our topics contain an extensive amount of xrefs.
    Does anyone have any idea on why this is happening or is there a fix I need to install to correct this issue?

    Hi Ian,
    It's probably hanging because there is no call to Printer.EndDoc after you call Printer.Paintpicture. See this KB for more information.
    Test Engineer - CTA

  • BO SDK Query to find all folders that a user has access to

    Hi Experts
    Please help me on BO SDK Query to "find all folders that a user has access in a single query".
    I am tried trial & error using PARENTS & CHILDREN. nothing worked
    Please advice
    Thanks!
    Prasath

    Hi Aasavari
    I am checking BO Web services samples and .NET samples. Please advice me the correct files to check the user/folder rights.
    Thank you so much
    Prasath
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETWebServicesSDKSamples

  • How can I list all folders that contain files with a specific file extension? I want a list that shows the parent folders of all files with a .nef extension.

    not the total path to the folder containing the files but rather just a parent folder one level up of the files.
    So file.nef that's in folder 1 that's in folder 2 that's in folder 3... I just want to list folder 1, not 2 or 3 (unless they contain files themselves in their level)

    find $HOME -iname '*.nef' 2>/dev/null | awk -F '/'   'seen[$(NF-1)]++ == 0 { print $(NF-1) }'
    This will print just one occurrence of directory
    The 'find' command files ALL *.nef files under your home directory (aka Folder)
    The 2>/dev/null throws away any error messages from things like "permissions denied" on a protected file or directory
    The 'awk' command extracts the parent directory and keeps track of whether it has displayed that directory before
    -F '/' tells awk to split fields using the / character
    NF is an awk variable that contains the number of fields in the current record
    NF-1 specifies the parent directory field, as in the last field is the file name and minus one if the parent directory
    $(NF-1) extracts the parent directory
    seen[] is a context addressable array variable (I choose the name 'seen'). That means I can use text strings as lookup keys.  The array is dynamic, so the first time I reference an element, if it doesn't exist, it is created with a nul value.
    seen[$(NF-1)] accesses the array element associated with the parent directory.
    seen[$(NF-1)]++ The ++ increments the element stored in the array associated with the parent directory key AFTER the value has been fetched for processing.  That is to say the original value is preserved (short term) and the value in the array is incremented by 1 for the next time it is accessed.
    the == 0 compares the fetched value (which occurred before it was incremented) against 0.  The first time a unique parent directory is used to access the array, a new element will be created and its value will be returned as 0 for the seen[$(NF-1)] == 0 comparison.
    On the first usage of a unique parent directory the comparison will be TRUE, so the { print $(NF-1) } action will be performed.
    After the first use of a unique parent directory name, the seen[$(NF-1)] access will return a value greater than 0, so the comparison will be FALSE and thus the { print $(NF-1)] } action will NOT be performed.
    Thus we get just one unique parent directory name no matter how many *.nef files are found.  Of course you get only one unique name, even if there are several same named sub-directories but in different paths
    You could put this into an Automator workflow using the "Run Shell Script" actions.

  • Has anyone else noticed that iBooks search does not find all information that should be located for a specific search criteria?

    I am converting a novel to ePub format.  I am currently in the process of adding "end notes" to the book.  Each will have a flag embedded at the proper spot in the various chapters that is coded as "[See End Note xx]" where xx is a one or two digit number.  Each of the flags has those words surrounded by the HTML that links the flag to the proper end note at the back of the book.
    To verify that I have indeed inserted correctly each end note, I copy the book's epub file from my desktop PC to the iPad.  I then do a search in iBooks to locate each occurance of "[See End Note" or just "End Note".  I should see each of these flags listed.  Last night it would list all of them except "[See End Note 28]"!   If I did a search for "28", it would appear.
    I then copied just the flag itself ("[See End Note 28]") without the associated linkage HTML to the back of the document, and placed the copy just in front of the paragraph that contains it. Neither of the two flags were found.
    I then duplicated just the flags for end notes 27 and 29 which the search function had located.  I placed the copies surrounding the copied flag for 29.  The result was as follows in the text of the book:
    [See End Note 27]
    [See End Note 28]
    [See End Note 29]
    Although 27 and 29 were still being shown in their normal places, none of the above three inserted (test) flags was displayed by the search!
    It seemed that the iBooks search goes through part of the book, but cannot take the whole book in one piece.  It then continues, but leaves a gap that is not scanned per the search criteria.  To test that theory, I removed the entire text of several chapters that did not contain any end notes.  I then loaded this modified copy of the book into the iPad.  When I ran a search using "End Note", all of the flags (including the special test flags) were displayed.  The list included the "missing" "[See End Note 28]" that cannot be found if the all of the chapters have their text!
    I shall be calling Apple in a few minutes to again attempt to get the apparent "bug" (aka design or coding flaw) removed such that it does not
    impact the ability of the iPad to be a useful tool.

    Not all movie studio signed up to the agreement with Apple to allow redownloading of movies, only those that did will have their movies available in the purchased section of iTunes.

  • XPRESS code to find all users with a specific Admin Role

    I've been playing around for a while with a way to get a list of all users that have been assigned a particular Admin Role. I have a role for which I want a specific subset of users to be approvers on it, and I want to greate a Rule that will check for people with a particular Admin Role and then return that list as people to be approvers on the role.
    I haven't been able to find an easy way to write this code. Anyone run across this before or have another suggestion???
    Thanks.

    Below is the code to find user based on condition.
    <set name='adminList'>
    <invoke name='getObjectNames' class='com.waveset.ui.FormUtil'>
    <ref>:display.session</ref>
    <s>User</s>
    <map>
    <s>conditions</s>
    <list>
    <new class='com.waveset.object.AttributeCondition'>
    <s>AdminRoles</s>
    <s>contains</s>
    <s>adminRoleName</s>
    </new>
    </list>
    </map>
    </invoke>
    </set>
    Edited by: Jay on Mar 7, 2012 4:03 AM

  • How to find a polygon that contains a point

    I have a table that has the boundaries (polygones) for all the zip codes in my state and I want to find the zip code that contains the given LON/LAT
    The following query is aparently not valid:
    SELECT *
    FROM ZIP_BOUNDARY b
    WHERE sdo_relate(b.geom, SDO_POINT_TYPE(-122.079155, 37.392892, NULL),'mask=touch') = 'TRUE'
    WHERE sdo_relate(b.geom, SDO_POINT_TYPE(-122.079155, 37.392892, NULL),'mask=touch') = 'TRUE'
    ERROR at line 5:
    ORA-29900: operator binding does not exist
    ORA-06553: PLS-306: wrong number or types of arguments in call to 'SDO_RELATE'
    What is the correct way to write such a query?

    try the following:
    SELECT *
    FROM ZIP_BOUNDARY b
    WHERE sdo_relate(b.geom, sdo_geometry(2001, YOUR_SRID, SDO_POINT_TYPE(-122.079155, 37.392892, NULL), NULL, NULL), 'mask=CONTAINS') = 'TRUE';

  • How do I find all photos that can be '"reverted to original"? Help please!

    Hi. I hope that someone can help me with this!
    I am trying to go through my iPhoto Library of about 1000 photos and find all of the photos that have the option to be "reverted to original", ie. I have made changes to them. I realise that I could go through them one by one, but I am trying to avoid that!
    I have realised recently that I should duplicate a photo before changing it, so that I leave the original untouched. However this doesn't help me with all of the old ones that I DIDN'T duplicate.
    Is there an Applescript or a method of finding all of the old photos that I am looking for?
    Thanks so much in advance for any help,
    Fleur

    I don't think it can be done from within iPhoto but there's a way you can do it from outside. First download and launch QPict. Then do the following;
    1 - open your iPhoto Library folder and type Command-F.
    2 - in the search window create these two search criteria:
    a - Kind is Folder
    b - Name contains Original
    3 - In the search results window click on the size column to separate the empty folders from those with files in them.
    4 - select all of the folder that are not empty and drag into the open window of QPict.
    That will open the original files in QPict so you can view them there and compare to those in iPhoto. Just remember do not move any of those folders out of the iPhoto Library folder. Just move them into the open window of QPict.
    G4 DP-1G, 1G RAM, 22 Display, 2-80G HD, QT 7.0.3P   Mac OS X (10.4.3)   Canon S400, i850 & LIDE 50, Epson R200, 2G Nano

  • Search for  a big varchar2 field that contains specific string

    Hi to all,
    I've created a table with VARCHAR2 column and size of 4000 and a CONTEXT index for it. I use this SQL statement to search for a field that contains a specific word:
    SELECT text_body
    FROM my_table
    WHERE CONTAINS(text_body,'my_word')>0;
    this goes so well in SQL plus, so how can I implement this in my form?
    Thanks.

    Dear Craig,
    I installed forms 10g R2 ,besides I corrected a fault in the LOOP syntax.Thanks, The code now is correct with the function CONTAINS. but when I run my form and push the button, my form takes lots of time and return two errors:
    frm-41839 "Disc I/O error on temporary record buffer file%s".
    and frm-40900 "Unable to locate record buffer. Clear form to continue".
    the second error occurs due to memory low space I think.
    Dear Morgan,
    You are totally right with the function INSTR, but I use the function CONTAINS as it has large capabilities in my search. I even use CTXCAT index instead of CONTEXT index ,with function CATSEARCH but the problem still exists. All of the previous ways run better in SQL but not in forms(without cursor). Suppose I'm wrong with this technique. Is there another way to make such a search?!
    This is the new code:
    DECLARE
         CURSOR cc IS
    SELECT *
    FROM my_table
    WHERE CONTAINS(MY_TEXT_FIELD,'first_word AND second_word')>0;
    copy_cc my_table%rowtype;
    BEGIN
         OPEN cc;
         FETCH cc INTO copy_cc;
              LOOP
              :FORM_TEXT_FIELD:=copy_cc.my_text_field;
         EXIT WHEN cc%notfound;
              NEXT_RECORD;
              END LOOP;
              CLOSE cc;
    END;
    Regards.
    Waleed.

Maybe you are looking for