How to supress creation of book layer in WebHelp output?

Hi.
In a FrameMaker book, I have several chapters. When I publish to WebHelp, what I want to see is just each chapter turned in to its own topic. But FrameMaker does is put each topic in its dedicated book (see graphic below). What I'd like to see is one book (5.7 ReleaseNotes) and chapter-based topics beneath it. In short, I'd like to remove the intermediate book layer.
If there's a way to configure this, please advise as to how to do it. It's not clear how to do this from the settings.
Thanks!
-Kurt

Oops, sorry – I missed the fact that you’re doing the Publish route directly out of FM – I’m not sure how you configure it. FM12 introduced more controls to be able to tweak the output, but my suspicion is that you may still not have the ability to mess with the resulting ToC. That’s why I’m still in the TCS camp of editing stuff in RH after bringing it in from FM.

Similar Messages

  • How do I add a book on my MacBook Pro to my iPad 3

    I have an iPad 3 on iOS 8
    I have a MacBook Pro on 10.9.5
    I have 4 PDF/Epub/Mobi files on my Mac.
    How do I add books to iTunes?
    How do I view the books I have in iTunes?
    How do I add them to my iPad so they'll be in iBooks?

    On a Mac with Mavericks (or Yosemite) installed on it you don't add them to iTunes, that is only used as a tool for syncing your books to the iBooks app on your iOS devices, iTunes isn't used for managing them.
    For the books that are compatible with iBooks (you probably won't be able to copy the Mobi files into it) then you can add them to the iBooks app on your Mac either via the File > Add To Library menu option within the app, or by dragging and dropping them onto it.
    If you connect your iPad to your Mac's iTunes they should then show on its Books tab for selecting and syncing to the iBooks app on the iPad
    For the mobi book, you will need an app on your iPad that supports more books e.g. the Kindle app.
    For Kindle, and possibly other mobi apps, you can add books to the app by selecting the iPad's Apps tab, scroll down the right-hand side of the screen to the file sharing section, select the app that you want to copy the book to, and add it to the app.

  • How can I create a new layer that is a gradient?

    Hi, i'm very new to photoshop scripting and am having some trouble.
    I'm looking for a way to take an image i have and set it to have a gradient opacity as it approaches the middle, my thought on how to do that was to just create a layer that is a gradient from top left to bottom right and then attach that as a vector mask.
    Any ideas on how I could create this gradient layer in script, or a better method of doing this opacity gradient?
    Thanks in advance,
    Levianth

    You could try this:
    // 2012, use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var theLayer = myDocument.activeLayer;
    if (theLayer.isBackgroundLayer == true) {theLayer.isBackgroundLayer = false};
    // create gradient layer;
    // =======================================================
    var idMk = charIDToTypeID( "Mk  " );
        var desc15 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref3 = new ActionReference();
            var idcontentLayer = stringIDToTypeID( "contentLayer" );
            ref3.putClass( idcontentLayer );
        desc15.putReference( idnull, ref3 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc16 = new ActionDescriptor();
            var idType = charIDToTypeID( "Type" );
                var desc17 = new ActionDescriptor();
                var idType = charIDToTypeID( "Type" );
                var idGrdT = charIDToTypeID( "GrdT" );
                var idLnr = charIDToTypeID( "Lnr " );
                desc17.putEnumerated( idType, idGrdT, idLnr );
                var idGrad = charIDToTypeID( "Grad" );
                    var desc18 = new ActionDescriptor();
                    var idNm = charIDToTypeID( "Nm  " );
                    desc18.putString( idNm, "Custom" );
                    var idGrdF = charIDToTypeID( "GrdF" );
                    var idGrdF = charIDToTypeID( "GrdF" );
                    var idCstS = charIDToTypeID( "CstS" );
                    desc18.putEnumerated( idGrdF, idGrdF, idCstS );
                    var idIntr = charIDToTypeID( "Intr" );
                    desc18.putDouble( idIntr, 4096.000000 );
                    var idClrs = charIDToTypeID( "Clrs" );
                        var list3 = new ActionList();
                            var desc19 = new ActionDescriptor();
                            var idClr = charIDToTypeID( "Clr " );
                                var desc20 = new ActionDescriptor();
                                var idRd = charIDToTypeID( "Rd  " );
                                desc20.putDouble( idRd, 0.000000 );
                                var idGrn = charIDToTypeID( "Grn " );
                                desc20.putDouble( idGrn, 0.000000 );
                                var idBl = charIDToTypeID( "Bl  " );
                                desc20.putDouble( idBl, 0.000000 );
                            var idRGBC = charIDToTypeID( "RGBC" );
                            desc19.putObject( idClr, idRGBC, desc20 );
                            var idType = charIDToTypeID( "Type" );
                            var idClry = charIDToTypeID( "Clry" );
                            var idUsrS = charIDToTypeID( "UsrS" );
                            desc19.putEnumerated( idType, idClry, idUsrS );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc19.putInteger( idLctn, 0 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc19.putInteger( idMdpn, 50 );
                        var idClrt = charIDToTypeID( "Clrt" );
                        list3.putObject( idClrt, desc19 );
                            var desc21 = new ActionDescriptor();
                            var idClr = charIDToTypeID( "Clr " );
                                var desc22 = new ActionDescriptor();
                                var idRd = charIDToTypeID( "Rd  " );
                                desc22.putDouble( idRd, 0.000000 );
                                var idGrn = charIDToTypeID( "Grn " );
                                desc22.putDouble( idGrn, 0.000000 );
                                var idBl = charIDToTypeID( "Bl  " );
                                desc22.putDouble( idBl, 0.000000 );
                            var idRGBC = charIDToTypeID( "RGBC" );
                            desc21.putObject( idClr, idRGBC, desc22 );
                            var idType = charIDToTypeID( "Type" );
                            var idClry = charIDToTypeID( "Clry" );
                            var idUsrS = charIDToTypeID( "UsrS" );
                            desc21.putEnumerated( idType, idClry, idUsrS );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc21.putInteger( idLctn, 4096 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc21.putInteger( idMdpn, 50 );
                        var idClrt = charIDToTypeID( "Clrt" );
                        list3.putObject( idClrt, desc21 );
                    desc18.putList( idClrs, list3 );
                    var idTrns = charIDToTypeID( "Trns" );
                        var list4 = new ActionList();
                            var desc23 = new ActionDescriptor();
                            var idOpct = charIDToTypeID( "Opct" );
                            var idPrc = charIDToTypeID( "#Prc" );
                            desc23.putUnitDouble( idOpct, idPrc, 0.000000 );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc23.putInteger( idLctn, 0 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc23.putInteger( idMdpn, 50 );
                        var idTrnS = charIDToTypeID( "TrnS" );
                        list4.putObject( idTrnS, desc23 );
                            var desc24 = new ActionDescriptor();
                            var idOpct = charIDToTypeID( "Opct" );
                            var idPrc = charIDToTypeID( "#Prc" );
                            desc24.putUnitDouble( idOpct, idPrc, 100.000000 );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc24.putInteger( idLctn, 2048 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc24.putInteger( idMdpn, 50 );
                        var idTrnS = charIDToTypeID( "TrnS" );
                        list4.putObject( idTrnS, desc24 );
                            var desc25 = new ActionDescriptor();
                            var idOpct = charIDToTypeID( "Opct" );
                            var idPrc = charIDToTypeID( "#Prc" );
                            desc25.putUnitDouble( idOpct, idPrc, 0.000000 );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc25.putInteger( idLctn, 4096 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc25.putInteger( idMdpn, 50 );
                        var idTrnS = charIDToTypeID( "TrnS" );
                        list4.putObject( idTrnS, desc25 );
                    desc18.putList( idTrns, list4 );
                var idGrdn = charIDToTypeID( "Grdn" );
                desc17.putObject( idGrad, idGrdn, desc18 );
            var idgradientLayer = stringIDToTypeID( "gradientLayer" );
            desc16.putObject( idType, idgradientLayer, desc17 );
        var idcontentLayer = stringIDToTypeID( "contentLayer" );
        desc15.putObject( idUsng, idcontentLayer, desc16 );
    executeAction( idMk, desc15, DialogModes.NO );
    // move layer below;
    var theGradient = myDocument.activeLayer;
    theGradient.move(theLayer, ElementPlacement.PLACEAFTER);
    // clipping mask;
    theLayer.grouped = true

  • HT201272 How do I download audio books that are not on my purchased list? That I have purchased.

    I have purchased a few audio books on iTunes and in the process of upgrading the audio is no longer on my iCloud account. How do I get these books back? The books are in my purchase history. But iTunes would make me pay for them again if I get it from there.

    Audiobooks are currently a one-time only download, so they won't appear in the cloud for re-downloading. Have you not got a copy of them on your computer and/or on a backup ? If not then you can try contacting Apple, but they are under no obligation to let you re-download them : http://www.apple.com/uk/support/itunes/contact/

  • I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  My iBook library does not show up in iTunes.

    I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  Some of my iBooks show up in my iTunes but they are "grayed" out.  The only books that respond in iTunes are audiobooks and that's not what I'm looking for.  Is this a stupid question?

    Nevermind - I answered my own question, which is I CAN"T READ ANY BOOKS I purchased in iBooks on my MacBook Pro.  If I want to read on my mac I have to use Kindle or Nook.  Which means any book I've already purchased through iBooks has to be read on my iPad.  Kind of a drag because there are times when it's more convenient for me to read while I'm sitting with my Mac.

  • Any ideas how to fix my mac book pro to canon pixma mp640 printer connection?

    Anyone have any ideas how to fix my mac book pro to canon pimxa mp640 printer link? The two are connected manually yet the ! remains on the 'print' page next to the printer name. it was working fine until i changed the ink cartridges. Without the wireless password - which I've never had and don't supposedly need as it's not a wireless connection, I am being prevented from resuming printing.

    If it's on a windows network you have to enter your (windows) log in (name/password) credentials.
    This should be a 1 time event. It will remember it thereafter.

  • How to update my mac book pro from 10.5.8 to the leatest version

    how to update my mac book pro from 10.5.8 to the leatest version

    Upgrading to Snow Leopard, Lion, or Mountain Lion
    Upgrading to Snow Leopard
    You can purchase Snow Leopard by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The price is $19.99 plus tax. You will receive physical media - DVD - by mail.
    Third-party sources for Snow Leopard are:
    Snow Leopard from Amazon.com
    Snow Leopard from eBay
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.
    Before upgrading check that you computer meets the minimum requirements:
    Snow Leopard General requirements
      1. Mac computer with an Intel processor
      2. 1GB of memory
      3. 5GB of available disk space
      4. DVD drive for installation
      5. Some features require a compatible Internet service provider; fees may
          apply.
      6. Some features require Apple’s MobileMe service; fees and terms apply.
    Upgrading to Lion
    First, you need to upgrade to Snow Leopard 10.6.8 as stated above.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
    Before upgrading check that you computer meets the minimum requirements:
    Lion System Requirements
      1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or
          Xeon processor
      2. 2GB of memory
      3. OS X v10.6.6 or later (v10.6.8 recommended)
      4. 7GB of available space
      5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    Be sure your computer meets the minimum requirements:
    Apple - OS X Mountain Lion - Read the technical specifications.
    Macs that can be upgraded to OS X Mountain Lion
      1. iMac (Mid 2007 or newer)
      2. MacBook (Late 2008 Aluminum, or Early 2009 or newer)
      3. MacBook Pro (Mid/Late 2007 or newer)
      4. MacBook Air (Late 2008 or newer)
      5. Mac mini (Early 2009 or newer)
      6. Mac Pro (Early 2008 or newer)
      7. Xserve (Early 2009)
    Are my applications compatible?
    See App Compatibility Table - RoaringApps - App compatibility and feature support for OS X & iOS.
    Am I eligible for the free upgrade?
    See Apple - Free OS X Mountain Lion upgrade Program.
    For a complete How-To introduction from Apple see Apple - Upgrade your Mac to OS X Mountain Lion.

  • HOW I CONNECT MY MAC BOOK PRO WITH APPLE TV

    hello
    i have a mac book pro and apple tv. but i am not able to connet my mac book with apple tv. so how i conncet my mac book with apple tv.

    You can use AirPlay to mirror what is on your MacBook.  Take a look at this link, http://support.apple.com/kb/HT5209?viewlocale=en_US&locale=en_US

  • How to connect my mac book pro to network printer Canon IR 2010f?

    I'm desperate to know how to connect my Mac book Pro to network printer Canon IR 2010f. This printer has an independent system, therefore, no need a PC to be on, in order to print. But this printer is a network printer. Help me please.

    The Canon UFR2 v2.20 driver for Mac OS X does not list the iR2010F as a supported model. The same is so for the Canon PS driver so I therefore believe this model is PCL5e only.
    What you should do is open Safari and type the IP address of the iR2010F. This will connect to the internal web page of the copier and from the provided pages you should be able to see what printer languages are supported.
    If it only lists PCL then you will be able to print to this copier using the Generic PCL driver included with 10.6.
    So if you open Print & Fax, click + to add and then select IP > LPD for the protocol you can then enter the IP address of the iR2010F and leave the queue name blank. For the name you can change that to iR1020F and for the Print Using, select Generic PCL Laser Printer.
    One note with regards to this driver. It is defaulted to 300dpi so you will need to open the print dialog when you do print and change the resolution to 600dpi to get better print quality.

  • How to connect my MAC Book Pro (2013) to a display?

    how to connect my MAC Book Pro (2013) to a display?

    When you have connected the monitor or the TV to the MBP, open System Preferences>Displays and it should show a category called Arrangement.  These links should give some of the details:
    http://support.apple.com/en-us/HT204154
    http://support.apple.com/en-us/HT202351
    Ciao.

  • How can I make a book/podcast listening playlist for a blind person?

    How can I make a book/podcast listening playlist for a blind person? How can lots of content be loaded, so that no navigation is required, for hundreds of hours of enjoyment?
    I wanted to create a single playlist with hundreds of hours of books and podcasts for my grandmother who is blind. Then I planned to use something like the app CarTunes which basically makes the touch screen simply a gigantic pause/play button for an already created playlist.  This is perfect for a blind person. The problem: Apple no longer allows you to have a playlist with Audible Books and Podcasts. I have tried; but the podcasts and books are stripped from the playlist. It seems like all podcast and book players require navigation. (How aggravating!?)
    Any help in creating hundreds of hours long spoken (selected between books and podcasts) audio content playlist for a blind person would be much appreciated!!!!

    Well, good news and bad news. I found out how to tell iTunes that all my music videos are, in fact, actual "music videos" and categorize them as such. In the "Get Info" screen for a track, there is a dropdown selector where you can pick the "meta" type, such as "Music Video", "Home Video", "Movie", "TV Show", etc. This allows iTunes and iOS to think they are all music videos and play them in the same list.
    Unfortunately, this is not compatable with my third party device, which is now refusing to play my music videos in a playlist and will only play them one at a time (in a single-track infinite loop no less). Very frustrating!

  • How can i delete some books from ibook?

    How can i delete some books from ibook? It says: this book can't be opened. The book is corrupt. I can't open and I can't delete it

    I was unable to delete a book sample from my iPhone 5s running iOS 7.  This seems to be what worked for me.  I went to the Library and clicked "edit" in upper right side of the screen.  I then tapped one time on the book I wanted to remove and a blue check appeared at the bottom right corner of that book (presumably you could tap several at a time)  Anyway, when the blue check is on the book, you will see in the upper left of the screen the word "Delete" (mine was in red) I clicked that and then a confirming dialog came up from the bottom of the screen with the choices of "delete" or "cancel".  I chose "delete" and the book was gone.  Hope this helps.

  • How do you stop a book from downloading in iBooks.  It has been downloading for 2 days

    How do I stop a book from downloading in iBooks   It has been downloading for 2 days

    Perform a "hard reset" on the device by pressing down and holding the home button and the sleep/wake button for up to 30secs. until you see a black screen with the Apple logo, then release.
    Then test to see if it solved the problem.

  • How do I add audio books to my shuffle

    How do I add audio books to my shuffle

    If this is a 4th (or 3rd) gen shuffle, and you use automatic syncing for loading songs...  Select the shuffle in iTunes.  There is a row of "tabs" (buttons) starting with Summary.  Click on Books there.  This is the Books tab, where you tell iTunes how to sync audiobooks to the shuffle.  Set it up as desired, and click Apply.
    NOTE:  If your shuffle is currently NOT set up for automatic syncing, its content will be replaced by content selected in the sync settings.
    If you are NOT using automatic syncing for songs, so you have been loading songs manually by dragging them to the shuffle in iTunes, then you should NOT do the above.  Instead, you can load audiobooks the same way.  Drag the books you want to the shuffle from your Books library in iTunes.
    If this is a 1st or 2nd gen shuffle, it is different.  Please post back.

  • I have a new computer.  How do I get my books and apps to show in the library on my itunes?

    I have a new computer.  How do I get my books and apps to show in the library on my itunes?

    Copy the ENTIRE iTunes folder from the old computer to the new computer.

Maybe you are looking for

  • Using InDesignCS3 on Portrait Monitor

    We just had dual monitors installed and would like to have InDesignCS3 open in PORTRAIT view so that we could view an entire page. Unfortunately, we can move the IND screen to the second monitor and rotate the screen, but the image is still in landsc

  • I have a new laptop with Window 7. The navigation(?) bar comes & goes, depending on cursor position. I'd like it to be always visible.What to do?

    I have just downloaded and configured FireFox for my new computer using Windows 7. I've included classic theme restorer in my add ons. I have only 1 bar (Navigation(?)) at the top of the screen, just below the tabs. It has everything I need in it but

  • Premiere Pro CS6 opens off screen

    I am running Premier Pro CS6 under Windows 7 64bit with two monitors on a single graphics card. The application had been opening correctly but it now opens off the bottom of the main screen with only the top 1/8 of the screen visible. If I try to cli

  • Query to get all General Ledger: Actual Line Items

    Hello All, I am developing a cash flow report. for this I write a query on FAGLFLEXA table but in my system business area is not mation in FAGLFLEXA table becouse customization is not done. so i want to use other table where i get Business are, compa

  • User Status change date

    Dear All For an ABAP report , i need to find the table names for date and time of change in the User Status for the Maintenance Order. ( for example from INPR to RETN) I have tried JEST and CRM_JEST tables but couldn't found the correct result. Pl ad