use marker iff section is too long for the header

Hello everyone,

I wonder: is it possible to implement FrameMaker using a marker iff there is one on this page?

Here's the problem: I have a book with several chapters of different authors. Some of them used topics that are too long for the headers. For those I want to use markers.

I know how to display markers, which I don't want, because then I have to create a benchmark for each unique position in the book (using this master page). And I know how to view the different titles for example < $paratext [H1, H2, H3] >.

Now I'm looking for is something like this < [marker, line] $paratext >. In plain language: 'check if there is a certain marker. If there is one, show the marker, otherwise display the heading."

Then I would be able to use the same master page and would need to use markers only where a title is too long.

Thanks in advance

Dennis

Dennis,

Take a look at http://forums.adobe.com/message/3503638#3503638

You could create an alternative heading tag (for example InvisibleH1) with an invisible color in a framework anchored to it and can then use the building block <$paratext[InvisibleH1,H1,H2... etc.]="">. Just toggle the views appropriate to hide text in anchored frames.

Tags: Adobe FrameMaker

Similar Questions

  • Error message: "the file names would be too long for the destination folder.

    I move the files from internal hard drive to external hard drive using cut and paste.  I get a message "the file name would be too long for the destination folder.  You can shorten the file name and try again, or try a location with a shorter path. "I then gives me choices to skip or cancel.  What happens to files that are ignored?  Are they deleted?  I don't want to lose all the data, but there are more 2 000 files with this problem, so passing by and rename each one really isn't a viable solution.  I don't really understand how the file names were originally created/saved about a problem that is only now that I want to move them.  The disc source and destination are NTFS.  Is there a solution for this?  It is imperative that no data is lost.  Thanks for any help you can offer.

    On Wednesday, 10 April 2013, 12:16:23 + 0000, MADinIowa wrote:

    I move the files from internal hard drive to external hard drive using cut and paste.  I get a message "the file name would be too long for the destination folder.  You can shorten the file name and try again, or try a location with a shorter path. "I then gives me choices to skip or cancel.  What happens to files that are ignored?  Are they deleted?

    N ° to check that what I say is correct, create a new folder
    for the purposes of the trial and to make a copy of some files. To ensure that
    one of them has a long name (rename if necessary), and then try to copy
    These files on the external drive. When you get the message, choose
    'jump' and see what happens.

  • Literal string too long for the CLOB

    Hello
    My version of the database is:
    Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    AMT for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production

    When I run this piece of code, I get an error.
    DECLARE
    insCtx DBMS_XMLStore.ctxType;
    lines NUMBER;
    xmlDoc CLOB: = 'xml string is about 4600 long lines in TOAD...';
    BEGIN
    insCtx: = DBMS_XMLStore.newContext ("xmlTempTbl"); -get the context
    lines: = DBMS_XMLStore.insertXML (insCtx, xmlDoc); -Insert the doc
    DBMS_XMLStore.closeContext (insCtx); -close the handle
    END;

    ERROR:
    ORA-06550: line 4, column 19:
    PLS-00172: string literal too long

    From my understanding a CLOB leave maximum string size of 2 GB. And on top, my xml string is not greater than 2 GB (I cannot display the xml data string, refers to the business). So why I get the error too long string literal.
    For the above, I fault the XML into several parts and run the PLSQL, then it gives no error.
    Please advice.

    Published by: 934451 on November 8, 2012 07:06

    Published by: 934451 on November 8, 2012 07:07

    From my understanding a CLOB leave maximum string size of 2 GB.

    Not exactly:
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25519/datatypes.htm#CHDDCGEE

    but this isn't the real problem.

    The error is about the "string literal" size, there is a limitation too:
    http://docs.Oracle.com/CD/E11882_01/server.112/e17766/pcmus.htm#sthref18132

    PLS-00172: string literal too long
        Cause: The string literal was longer than 32767 bytes.
        Action: Use a string literal of at most 32767 bytes.
    

    For the above, I fault the XML into several parts and run the PLSQL, then it gives no error.

    Is this a real case of production or you just test?
    In practice, we should first save the file in a variable/column CLOB (or XMLType) and then reference the content from there.

  • Path too Long for the Installation of the software

    I am trying to install a version of the CAD software to one of my PCs employee.  When we run the Setup file, we get an error message too long file path.  The message says that the file path is 99 characters long, but the limit is 93.  This seems like a terribly low limit for a C: drive.

    The path goes only in a folder as well.  Thus, its C:/Program Files/Autodesk / "name of file along here."

    I understand long path problems when you go deep in several folders and the typical character limit is 254.  I do not understand why we are running in a limited issue when you have only a single deep folder on the C: drive and only have 99 total characters in the path.  Is this a problem of windows 8?  Or maybe a problem with the PC itself?  Is it possible to change the limit of characters on the C: drive since 93 is so short and also seems to be a random number?

    Justin

    Your best bet is to contact the CAD developer, we would have no way of knowing how many levels deep the software installs.

  • SQL error: ORA-00910: specified length too long for its data type

    Using Oracle 11.2.0.1 on Oracle Linux 5.8 x 64

    I try to install Zabbix http://www.zabbix.com and uses the Oracle database as the data store. The script of the diagram provided below does not work.
    CREATE TABLE maintenances (
         maintenanceid            number(20)                                NOT NULL,
         name                     nvarchar2(128)  DEFAULT ''                ,
         maintenance_type         number(10)      DEFAULT '0'               NOT NULL,
         description              nvarchar2(2048) DEFAULT ''                ,
         active_since             number(10)      DEFAULT '0'               NOT NULL,
         active_till              number(10)      DEFAULT '0'               NOT NULL,
         PRIMARY KEY (maintenanceid)
    );
    When I run it, I get
    Error at Command Line:5 Column:42
    Error report:
    SQL Error: ORA-00910: specified length too long for its datatype
    00910. 00000 -  "specified length too long for its datatype"
    *Cause:    for datatypes CHAR and RAW, the length specified was > 2000;
               otherwise, the length specified was > 4000.
    *Action:   use a shorter length or switch to a datatype permitting a
               longer length such as a VARCHAR2, LONG CHAR, or LONG RAW
    According to the oracle documentation for nvarchar2 limit is 4000. What am I missing here?

    "4000 bytes is the ultimate maximum." You can say 4000 * characters *, but it will always be limited to 4000 * bytes *. "
    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:1224836384599 #201073000346459201\

    "The maximum length of the column is determined by the definition of national character set. The width of the character NVARCHAR2 data specifications match the number of characters. The authorized maximum column size is 4000 bytes. »
    http://docs.Oracle.com/CD/E11882_01/server.112/e26088/sql_elements001.htm#SQLRF50976

    Furthermore, you treat numbers as STRINGS, remove the quotes around your zero.

  • Application of THEME - MAPVIEWER - 05517 JDBC string is too long for Oracle cards-

    Hello

    If I need a fairly complex query to add the dynamic JDBC theme I get this error:

    [MAPVIEWER-05517] Ask the string is too long for no AJAX of Oracle remote access cards.

    -Why? I use Oracle Maps API JS isn't remote AJAX or not?
    -What is the limit of a definition of the JDBC theme?

    Kind regards
    Brano

    Put this code after creating object mapviewer.

    MVMapView.enableXMLHTTP (true);

  • Error compiling FPGA-61332: the length of a line to &lt; "file.vhdl" &gt; is too long for xilinx 10.1. Length: &lt; length &gt; Max Length: 4150

    Hello

    When compiling a fairly basic FPGA VI, I get the following error:

    61332 error occurred in niFpgaCompileWorker_ProcessStatusPipe.vi:1<><>

    Possible reasons:

    LabVIEW FPGA: An unexpected error occurred with the build tools. You try to compile the FPGA VI again could solve the problem.

    The length of a line in "NiFpgaAG_0000002e_WhileLoop.vhd" is too long for xilinx 10.1. Length: 32845 Max length: 4150

    Departure time: 17:22:06
    End time: 17:22:12
    Total time: 00:00:06

    Apparently, the vhdl code generator OR forgot to add some CR + LF in the intermediate files. How to work around this bug?

    Kind regards

    Lukas

    Hi Lukas.

    When LabVIEW compiles a VI, the VI is converted into virtual hard disk to be compiled into a file bit by Xilinx.  As you have already understood, this error indicates that a line of code vhd had a length of 32 845 characters, which exceeds the maximum length of 4150 characters for the Xilinx 10.1.

    Although 32 845 characters is very long, it is possible that this is due to the codification of LabVIEW rather than a bug. Some common causes of this problem include large enums, a matrix, or clusters in the code.  Please check in your code.  If you have no luck, please attach a screenshot of the code.  I hope this helps!

    Kind regards

    Dayna P.

    Technical sales engineer

    National Instruments

  • I use outlook express 6 and I can receive an email of great but when I try to send it after making the necessary changes, i.e. the signature I get the message 'too big for the server.

    I use outlook express 6 and I can receive an email of great but when I try to send it after making the necessary changes, i.e. the signature I get the message "too big for the server" responses I've seen so far tell me absolutely nothing

    Well, the error message says it all.  "" too big for server".

    There is a limit imposed by your ISP/mail server, which you don't mention.

    Not only the servers have limits on the size, this is not necessarily the same for incoming and outgoing messages.

    If you say you use the e-mail program and the name of your e-mail server, maybe we can shed light on the more specific issue, but the problem is definitely with them and not Outlook Express.

    P.S. I'm not sure what you mean by 'signature'

  • WAITED TOO LONG FOR A CACHE LINE ENQUEUE LOCK!

    Hi all

    Ora10g

    All of a sudden this afternoon users have complained that they are unable to connect to the database, I tried to log in and was able to confirm that suspended connection.

    I checked the alerts log and I found these:
    Thread 1 advanced to log sequence 11682
      Current log# 3 seq# 11682 mem# 0: D:\ORACLE\ORADATA\TURBDV2\REDO03.LOG
    Mon Jun 13 09:00:15 2011
    WARNING: inbound connection timed out (ORA-3136)
    Mon Jun 13 10:00:27 2011
    Thread 1 advanced to log sequence 11683
      Current log# 1 seq# 11683 mem# 0: D:\ORACLE\ORADATA\TURBDV2\REDO01.LOG
    Mon Jun 13 13:15:50 2011
    WARNING: inbound connection timed out (ORA-3136)
    Mon Jun 13 13:51:28 2011
    
    WAITED TOO LONG FOR A ROW CACHE ENQUEUE LOCK! pid=27
    System State dumped to trace file c:\oracle\admin\turbdv2\udump\turbdv2_ora_7668.trc Mon Jun 13 14:50:44 2011 WARNING: inbound connection timed out (ORA-3136) Mon Jun 13 15:23:10 2011
    How to solve this error please...

    KinsaKaUy? wrote:
    I checked the alerts log and I found these:

    
    Thread 1 advanced to log sequence 11682
    Current log# 3 seq# 11682 mem# 0: D:\ORACLE\ORADATA\TURBDV2\REDO03.LOG
    Mon Jun 13 09:00:15 2011
    WARNING: inbound connection timed out (ORA-3136)
    Mon Jun 13 10:00:27 2011
    Thread 1 advanced to log sequence 11683
    Current log# 1 seq# 11683 mem# 0: D:\ORACLE\ORADATA\TURBDV2\REDO01.LOG
    Mon Jun 13 13:15:50 2011
    WARNING: inbound connection timed out (ORA-3136)
    Mon Jun 13 13:51:28 2011
    
    
    WAITED TOO LONG FOR A ROW CACHE ENQUEUE LOCK! pid=27

    System State dumped to trace file c:\oracle\admin\turbdv2\udump\turbdv2_ora_7668.trc
    Mon Jun 13 14:50:44 2011
    WARNING: inbound connection timed out (ORA-3136)
    Mon Jun 13 15:23:10 2011
    

    How do i resolve this error please....

    Well looking at alert.log, you encountered two issue a)ORA-3136 and b) WAITED TOO LONG FOR A ROW CACHE ENQUEUE LOCK

    For a) ORA-3136 , please follow the below metalink note which explains about the resolution for this. You might need to increase SQLNET.INBOUND_CONNECT_TIMEOUT from 60 to slight higher.
    Following the note from MOS
    Troubleshooting ORA-3136: WARNING Inbound Connection Timed Out [ID 465043.1]

    
    The default value of 60 seconds is good enough in most conditions for the database server to authenticate a client connection. If it is taking longer, then it's worth checking the following items before implementing the workaround: 
    
    1. Check whether local connection on the database server is successful & quick.
    2. If local connections are quick ,then check for underlying network delay with the help of your network administrator.
    3. Check whether your Database performance has degraded in anyway.
    4. Check alert log for any critical errors for eg, ORA-600 or ORA-7445 and get them  resolved first. 
    

    As you said that users could not connect to the database, so above may be the reasons for what you need at the Fund.

    Second, you got the warning message "WHEREAS TOO LONG for A LINE CACHE ENQUEUE LOCK", which is also linked to the shared pool.

    Make a small conclusion on two question above, it seems that your shared pool size is not enough. For this you must check AWR reports during this difficult period and confirmation that there is not any event of related waiting for shared pool.

  • fan stays on too long and the battery level decreases rapidly: any problem identified?

    Fan stays on too long and the battery level decreases rapidly: all identified cause problem or possible?

    MacBook Air mid-2013

    OS 10.11.13

    Processor 1.7 GHz Intel Core i7

    8 GB of DDR3 memory at 1600 MHz

    Thank you, Paolo

    Hi Paskowski,

    Can you give us a little more information about your problem?  What applications or processes are you using when you encounter the problem with your fan and battery?  The activity monitor application can provide you with some basic information.

    Use the monitor activity on your Mac.

    The resources below provides general information on how optimize the battery life and troubleshoot the battery on your MacBook Air.

    On batteries for laptops Mac

    Take care

  • After the last update, everything has much too big for the screen

    After the update everything was too big for the screen. I can't have enough on the screen to play a game even. I revert to a previous version and it was ok, but once again when the update went thru it's still too big. I tried to check and he said: I'm always on the 96 dpi.

    Hello

    There are a number of things to try:

    try going to your graphic card manufacturers site or computer and are looking for the driver download section

    Search your computer or graphics card model number based on what you have and download and install the latest graphics drivers for vista

    then try to make the screen of solution of problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/change-screen-resolution

    Change the screen resolution

    __________________________________________________________

    or try a restore of the system before this happened

    http://www.windowsvistauserguide.com/system_restore.htm

    If necessary do in safe mode

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode option with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    ________________________________________________________

    and change how to get updates for you to choose what you install to stop it happening again

    You may need to install one at a time to find the problem, we

    Make sure that you do not use Windows Update to install the drivers of 3rd material part

    Find them directly in the hardware manufacturer

    and when you see the problem update right click on it - UAC prompt - then hide it

    http://www.bleepingcomputer.com/tutorials/tutorial140.html

    Download updates but let me choose whether to install them - if you select this option, Windows will download the updates on your computer, but not install them automatically. If you want to install updates, then you must install them manually. You should only select this option if you have a reason to not install updates automatically. Only advanced users should use this option.

    Check for updates but let me choose whether to download and install them - if you select this option, you'll be alerted when there are new updates available for download and install. You can then choose to download and install the updates that you want. This option should really be reserved for people who know exactly which updates they need, or those who have little access to the Internet.

  • Paper too long on the front

    On my new printer all-in-one HP 8610, I use A4 paper. However, whenever I try to print, whether front or front / back I get an error message saying "paper too long at Auto-duplex.  If I close the window, the printer prints normally, so it isn't a big problem, but I would be quit anyway.

    Hello @mussep,

    Thanks for getting back to me on this subject.

    Because this error appears when printing several programs on your computer, the e-all-in-one printer HP Officejet Pro 8610 there may be a problem within your printers Firmware Version of programming. Or, there may be a conflict between your Windows 7 computer and your printer HP Officejet driver. Can I please you follow the steps below to isolate this problem and fix it.

    Step 1: Make a copy:

    To make sure that printer hardware is working properly, I'll ask you to perform a copy on the front of your printer A4 paper. If the copy print correctly, without error messages on the printer or the paper feed issues, then we know that something on the computer is originally this printing error.

    How to copy on A4 paper:

    1. Please load a sheet of paper for the test copy either on the flat glass on your printer or in the ADF on top of your printer
    2. On the front screen of the printer, please press copy
    3. Then, tap the settings icon on the bottom of the screen
    4. Under copy settings tap paper size. Please make sure that it is set to A4
    5. Select set as new default values. Press Yes if prompted
    6. Please make a Black or a color copy

    -Source: How to copy

    • If this print-out successfully with no errors or problems paper, that the printer hardware is working properly. This seems to indicate that the problem you are having is caused by something on the computer. Can I please you proceed to the next step to resolve this problem.
    • If the copy fails to print correctly, the problem you are experiencing is caused by your printer. Maybe it's a problem within the internal Firmware programming in your printer. Essentially, the Firmware is the "brain" of your printer and control that made the printer and how the printer it. If there is a corruption in the internal programming of Firmware on your printer, it may cause the printer to performance issues. Can I have it please click hereto download the last Firmware update. Once the download is complete, you will see a prompt to "run" the update of the Firmware. Please allow this to run. The Firmware Update utility is now launched. Follow the prompts on the screen to 'send' the update of the Firmware for your printer. Once the update has been completed successfully please make another test copy to confirm if your machine now copy on A4 paper. If the copy is now accepted, please print from your computer to see if the problem is now resolved. If a copy still fails, please do not continue to troubleshoot at this time.

    Step 2: Uninstall the driver:

    If you use a USB cable connection between your computer and your HP Officejet, please unplug this cable now.

    1. Click on the Start menu
    2. Select all programs
    3. Select the HP folder
    4. Select HP Officejet
    5. Select Uninstall

    Please follow the prompts on the screen to complete the uninstallation. Once the uninstall is complete, proceed to the next step.

    Step 3: Delete the temporary files:

    1. Click on the Start menu
    2. In the box "search programs and files" located just above to start after you click on it, type %temp% , and then press enter on your keyboard
    3. When the Temp folder opens, select Ctrl + A at the same time on your keyboard. Everything in this folder will highlight now.
    4. Select the "delete" button on your keyboard. The Temp folder contains the temporary internet files. None of the actual files or folders on your computer will be affected by deleting Temp files. A Temp file should you will automatically get the pop up to 'jump' this point.
    5. Close the Temp folder when it is empty
    6. Right-click the recycling bin on your desktop and select empty recycling bin. Please proceed to the next step.

    Step 4: Install the device:

    1. Please click here to download the latest drivers for your HP Officejet.
    2. Once the download is complete, follow the prompts on the screen to install your printer
    3. If you use a USB cable connection, do not connect the USB cable until the installation program invites you to

    Once the installation is complete, please test print from your computer to confirm if the "too long in the Auto-Duplex document" error is resolved.

    Please reply to this message with the result of your troubleshooting. Good luck!

  • downloaded file too big for the flash player movie

    I downloaded a HD movie on my computer, but I want to put it on a Sandisk 32 GB flash drive. When I tried to drag it to the flash drive, it says that the file could not be copied because it was too big for the size of the volume. The site I downloaded the movie says something about the use of IGetter. I Igetter in my applications, but it does not open because it says it's a developer not identified. (This may be before Yosemite download.) Anyway, my question is, is it possible to download and save a movie on a flash drive?

    You must clear the disc in one format other than FAT32 or to segment the file so that the files are smaller than 4 GB.

    (142501)

  • When the scaling in the layout, 1st page prints correctly, but the following pages were not properly/too large for the paper, parts of text missing scale

    When you try to print in Firefox and when the scale to the size of the page in the page layout, the first page prints correctly, but the following pages do not scale correctly and are too large for the paper, with the parts of the text are cut off at top and right. It is not fixed by checking or unchecking the scaling / shrink to fit page width "ignore" in the print window, or by changing the scale percent.

    I am running Firefox 15.0.1, on Mac OS 10.5.8.

    The same problem happens in preview print and if I save the copy in a .pdf file

    I tried all the fixes in the how to and others in various forums with no improvement.

    This happens everytime I try to print a document from scaling upwards or downwards in Firefox.

    I note the bug has been fixed and should in Firefox 21 right now, it will mean the use night http://nightly.mozilla.org/

  • When you try to transfer a file of 8 GB on external hard drive 'file too large for the destination system message' to get there is that much space on disk

    When you try to transfer a file of 8 GB on external hard drive 'file too large for the destination system message' to get there is that much space on disk

    Hello

    Discs formatted with the FAT be limited to files with a maximum of 4 GB. You can format outside
    drive drive with NTFS, contact the manufacturer if necessary pilot or split the file into parts under
    at 4 GB.

    Overview of FAT, HPFS, and NTFS file systems
    http://support.Microsoft.com/kb/100108

    How to go beyond the limit of 4 GB on FAT32
    http://lazybit.com/index.php/2007/03/01/how_to_get_over_the_4gb_limit_fat32

    -------------------------------------------------------------------------------------------------------------------------

    The ZIP file and then divided the ZIP which helps maintain the integrity of sharing files and restoring.

    Zip and Split - free
    http://zipandsplit.toolazy.me.UK/

    Split and Zip - free
    http://www.jtoolgame.com/tools/splitzip.html

    Akhir Split Zip - free
    http://www.mydigitallife.info/2009/04/24/Akhir-split-zip-splits-files-into-smaller-zip-files/

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

Maybe you are looking for

  • No color for the artist

    Hi, don't know if this has been deleted in 12.4.1 but now I don't see the custom colors (backgrounds) for artists. Oddly enough, it does show that on a single Strip and that the band loaded the image of the artist who is caught from iTunes.  This wor

  • Cannot restore Apple TV 4th Gen in iTunes

    So, just got a new 4th Gen Apple TV and not been impressed so far. I have unboxed product, hooked up to my TV to see that it is in Chinese.  The remote is also inadmissible.  I can press the Menu and Home of the SIRI remote simultaneously, and which

  • HP G61-410SA

    Hello. YouTube works OK for 10-12 minutes then begins to break up, always works very slowly and intermittently. Works on Win 7 32 bit. Recently replaced hard drive. Laptop is not loaded with programs - enough "empty". Any ideas? Thank you Josh

  • GFWL v3.4 settles (6 b 2 Error Code)

    I try to install the recommended update "Games for Windows software V3.4", and whenever I try, I get the message error "Code 6 b 2 Windows Update has encountered an unknown error."

  • ACER Iconia A3 - A10

    I just bought an ACER Iconia A3 - A10, I thought that read me the description of the Tablet until I bought that I could use a SD card and SIM card... Am I wrong?  Because I inserted the 16 GB SD card and I'll in ' SETTINGS' > 'STORAGE' and only shows