Results 1 to 3 of 3

Thread: Indexing .BWW files for Spotlight Searching

  1. #1
    Join Date
    Jan 2005
    Posts
    16

    Default Indexing .BWW files for Spotlight Searching

    I run BibleWorks in Parallels on my MacBook and on my iMac. I set the user notes folder to reside in Mac OS X so I can sync the two folders on my computers.

    I would like to be able to index .bww files for Spotlight searching. Does anyone know how to add them (they're just rtf's, of course) to the Spotlight indexing?

    Thanks!

    Mark L. Ward, Jr.

  2. #2

    Default

    I've been trying to find this out as well. Best I can do is Quicklook, but that's not very useful.

    http://www.tuaw.com/2008/09/25/tuaw-...to-quick-look/
    Ben

  3. #3
    Join Date
    Jan 2005
    Posts
    16

    Default Worked for Quick Look!

    Great, Ben. Thanks! Here's the text I put into TextEdit's Info.plist file:

    Code:
        <key>UTExportedTypeDeclarations</key>
        <array>
        <dict>
         <key>UTTypeConformsTo</key>
         <array>
         <string>public.plain-text</string>
         </array>
         <key>UTTypeDescription</key>
         <string>BibleWorks User Notes</string>
         <key>UTTypeIdentifier</key>
         <string>com.weblogsinc.tuaw.ardv</string>
         <key>UTTypeTagSpecification</key>
         <dict>
         <key>com.apple.ostype</key>
         <string>TEXT</string>
         <key>public.filename-extension</key>
         <array>
         <string>bww</string>
         </array>
         </dict>
        </dict>
        </array>
    I put all of that just above the following:
    Code:
    <key>CFBundleExecutable</key>
    I'm afraid I wasn't sure what to do with the following line, so I just left it there:
    Code:
    <string>com.weblogsinc.tuaw.ardv</string>
    When I use QuickLook, I'm not getting rtf, though, but plain text of RTF tags. That's better than nothing, but I'm sure there's a way to get full rich text previews. I'm afraid my property list editing skills are not stellar!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •