I'm trying to create a running header to pick up one of two paragraph styles...

I have a Header_1 and a Header_11 paragraph style. I need the running header to pick up either instance of those; as it stands, InDesign can only pick up one style at a time...

You have to define a running header based on a character style and apply
the char style to your titles.
Alternatively, you could create 2 master pages with two different
paragraph-based running header text variables.

Similar Messages

  • Trying to create Mouse over effect with more than one show image appearing in same cell

    Firstly this is the link to my test page: http://www.design39.co.uk/indexhope.html
    If you roll your cursor over the top left logo (the D&S) one it displays an image to the left. If you roll your cursor onto the next logo (Netnotts) it fades away again. Great. Exactly what I wanted and created in CSS (well done me as I don't normally do much with CSS but the new CS4 has very forced it).
    What I am trying to create is: When you roll onto the Netnotts logo, not only does the original image to the left disappear but a new relative one appears, this is to be for all the logos. In CSS I can only create it as far as I can. I have thought about using AP DIV tags to do it which would obviously work but to keep it in the right place, I would then have to align my whole website to the left instead of centered like it is and to be fair, that's not particularly pleasing to the eye as this is my own portfolio of work.
    I can do flash  to make 'pretty things' but have no idea about actionscript and java is way over my head but I am sure with some help I would be able to get it together as the that particular effect, although done in CSS, is running javascript I noticed.
    Many thanks in advance.

    A relative positioned layer? does this mean it knows how far to be away from the table as a pose to an absolute positioned layer which is lay 15px from the left? I need to be able to keep the positioning as its key, cant have the layer popping up in different places pending on the users browser size.
    I posted the question on a few forums and I got the following back: http://www.design39.co.uk/bla.html
    which is exactly what i wanted it to do but have no idea how to insert java script into my page; Further more, that was done in layers not table cells.
    Any ideas?

  • Difficulty with pdf form trying to "choose" one of two paragraphs of text

    I am creating a PDF form and trying to find a way to choose one of two groups of text that are about paragraph long. and only having the the one I choose be visible on my pdf.  I tried using a dropdown list, but it would not accmodate the amount of text I needed

    OK, the following is for a single check box and a single field. If the check box is checked the multiline text field will display one block of text, and if unchecked, it will display the other.
    I'm goping to assume the text field is named "Text1". The Mouse Up JavaScript of the check box could then be:
    // Get a reference to the text field
    var f = getField("Text1");
    // Set the value of the text field depending
    // on the state of this check box
    if (event.target.value === "Off") {
        f.value = "Paragraph 1 goes here. You can use \rto indicate a carriage return.";
    } else {
        f.value = "Paragraph 2 goes here. Add as much text as you like...";
    Change "Text1" in the getField statement to match the name of your multiline text field.

  • Trying to create and run my first class

    I am creating a simple class that should create a basic looking calculator type UI.
    When I try to build the program it builds successfully.
    However I get some null pointer exeption messages, and the GUI never appears.
    I am hoping that my problem is something simple.
    Any advice is appreciated.
    This is the class file:
    It will be followed by the main file.
    * CalculatorInterface.java
    * Created on: October 2, 2006, 10:43 AM
    * By: @author Administrator
    * Purpose: To create a Calculator GUI
    package Calculator;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    public class CalculatorInterface extends JFrame{
        private static final int WIDTH = 400;   //the width of the container
        private static final int HEIGHT = 400;  //the height of the container
        private JTextField numberTextField1, numberTextField2; //declare the text fields
        private JButton addB, subtractB, multiplyB, divideB; //declare the math buttons
        private JButton exitB; //declare the exit button
        private JLabel resultLabel;//declare result label
        private JPanel numbersPanel, buttonsPanel, resultsPanel;//declare panels
        private Container pane;//declare the container
        private GridLayout grid2by2, grid1by2;//declare the grids that will format buttonsPanel and numbersPanel
        private FlowLayout flowCenter;//declare the format for results panel
        private Toolkit aToolKit;//declare toolkit object used to get screen dimensions
        private Dimension screen;//declare variable used to hold screen dimensions
        private int xPositionOfFrame;//declare variable to hold the x position of frame
        private int yPositionOfFrame;//declare variable to hold the y position of frame
        private Formatter formatter;//declare formatter object to be applied to results
        /** Creates a new instance of CalculatorInterface */
        public CalculatorInterface() {
            setTitle( "Calculator" );//set title of frame
            setSize( WIDTH, HEIGHT );//set size of frame
            //instantiate JTextField objects
            numberTextField1 = new JTextField(5);
            numberTextField2 = new JTextField(5);
            //instantiate JButton Objects
            addB        = new JButton("+");
            subtractB   = new JButton("-");
            multiplyB   = new JButton("*");
            divideB     = new JButton("/");
            pane = getContentPane(); //instantiate the pane
            //instantiate the grid layouts
            grid1by2 = new GridLayout( 1, 2 );//grid for text fields
            grid2by2 = new GridLayout( 2, 2 );//grid for math buttons
            flowCenter = new FlowLayout();//to be applied to results pane
            //create the 3 panels
            buttonsPanel = new JPanel();
            numbersPanel = new JPanel();
            resultsPanel = new JPanel();
            //set layouts for panels
            buttonsPanel.setLayout( grid2by2 );
            numbersPanel.setLayout( grid1by2 );
            resultsPanel.setLayout( flowCenter );
            //add button fields to buttons panel
            buttonsPanel.add( addB );
            buttonsPanel.add( multiplyB );
            buttonsPanel.add( subtractB );
            buttonsPanel.add( divideB );
            //add text fields to numbers panel
            numbersPanel.add( numberTextField1 );
            numbersPanel.add( numberTextField2 );
            //add result label and exit button to results panel
            resultsPanel.add( resultLabel );
            resultsPanel.add( exitB );
            //add panels to content pane
            pane.add( numbersPanel, BorderLayout.WEST );
            pane.add( buttonsPanel, BorderLayout.EAST );
            pane.add( resultsPanel, BorderLayout.SOUTH );
    }This is the main file.
    * Main.java
    * Created: October 2, 2006, 10:41 AM
    * Author: Klinton Kerber
    * Purpose:To demonstrate knowledge gained in chapter 5
    *  by building a calculator that can add, subtract, divide,
    *  and multiply two numbers.
    package Calculator;
    import javax.swing.*;
    public class Main {
        /** Creates a new instance of Main */
        public Main() {
         * @param args the command line arguments
        public static void main(String[] args) {
            JFrame aCalculatorGUI = new CalculatorInterface(); //create the GUI
            aCalculatorGUI.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            aCalculatorGUI.setVisible( true );
    }Thanks for the time.

    You read a stack trace from bottom up to get a chrnological list of events that led to the problem.
    The last line says that you were executing the main method in
    the Calculator.Main class. On line 26 of the file Main.java, the
    constructor of Calculator.CalculatorInterface was called (see line
    above the last one). <init> stands for constructor. On line 95 of
    CalculatorInterface.java, you called Container.add. As you can see,
    other calls follow. They are internal to the Java libraries, therefore
    not so relevant. You now know that the problem is on line 95 of
    CalculatorInterface.java. Why would a library method "crash"?
    Probably because you gave it a wrong parameter as explained in the
    other answer.

  • Any way to make a running header use the last used of 2 different styles?

    I have a book that has a different Chapter Name style dependent upon whether the chapter starts recto or verso. I wanted all the chapters to be in the same document, but I'd need to be able to have the header variable itself be variable.
    Thanks for any insight!

    Not with ID variables.
    This is one of the (many) features of Power Headers. We call them 
    "Alternate Styles".
    http://in-tools.com/powerheaders.html
    Harbs

  • How to create dictionary-style running heads in Framemaker 9?

    I have a file of items listed under each STATE heading in alphabetical order. On the left page running head I want the STATE from the previous page and on the right page I want the STATE that appears last on the page. What I'm getting now is:
    Left page = first STATE on page (not previous one)
    Right page = last STATE on page (this is fine)
    What I have to do as a "work around" is to override the master page elements and type in the state name that I want.
    Is there special coding to use to indicate what I want to do?

    Thank you! In a small file I can insert the markers manually. But for the project I'm working on, I will have our programmer wrap .mif coding around each listing that includes the state that each item is listed under, then the left running head will automatically pull the left running head from the first marker, and the right running head will pick from the last STATE tag on the page as I had it before. Thanks again!

  • Running header and text variable help!

    I am trying to add a running header to a book I am creating but I cannot get the running header to work. I have read on the Adobe help pages and other sites online but still can't figure it out. I really just need a step by step on how to get this to work. I don't want to have to go through and edit the week number manually, but at this point I am getting frustrated. (Running CS5)
    The header is "Week X". (The week number changes every 5 pages.)
    This is what the running header should look like:
    This is what I get when I try: (Blank!)
    One time I got the "Week 1" to appear but it was in the large text style, not the smaller size. I forget what I did to get that, so now all I can make happen is the blank text field.
    What am I doing wrong?

    I haven't read the tutorial Prashant has mentioned twice, but it will probably help you. As he says, variables are basically pretty simple, though running head types are perhaps a bit more complex than some others.
    Basically, a variable is a marker, in the same way that an automatic page number is a marker, but in the case of the running head variables ID looks for text that matches a particular style (your choice, when you define the variable, of Paragraph Style or Character Style, and also whether it is the first instance or the last instance of that style on the page (again part of the definition) and ignores other matches that might also be present on your page. If no matching text is present on a particular page, ID searches backwards in the document to find a match on a previous page (which is why having  the matching text on only the first page of the section will work). Variables can pick up both visible and "invisible" or non-printing text which is handy if you need to have a match on a page, but don't want that text to appear in output except where it is displayed in the variable.
    Does that help?
    The advantage to using the variable here is that you can use the same master page (or two master pages or however many different masters are used in one complete section) for all of the sections instead of making separate masters with the new header or footer information for each section.

  • Issue while creating posting run in PRFI

    Hi T&E Guru's,
    When i try to create posting run for a trip, i get an error message which is as follows: -
    " Table entry not found in table 706K. Argument
    108002     0000000000000000
    Prog. terminated"
    I had created 2 new expense types & when i was trying to create posting run for a trip having these 2 new expense types, i got the above mentioned error message.
    I followed following procedure for creating those 2 new expense types: -
    1) Create Travel Expense Types for Individual Receipts
    2) Created 2 new wage types by copying an existing wage type using table V_512W_T
    2) Assign Wage Types to Travel Expense Types for Individual Receipts
    3) Define Assignment of Wage Type to Symbolic Account
    4) Conversion of Symbolic Account to Expense Account
    Already referred: - Error While posting to FI.
    Please guide me in resolving this issue.
    Thanks,
    Sudhakar

    Hi Sudhakar,
    Problem may be with  Define Assignment of Wage Type to Symbolic Account
    1)  Check again expense type and wage type assignment..
    2)  Then wage type and symbolic account assignment
    Also check weather problem is coming with both expense types or with single one..
    Hopes would serve your purpose..
    Regards,
    Muhammad Umer

  • Error while trying to create tree using same EMP how to tutorial

    Hi,
    I get the following error while trying to create a sample tree similar to the one
    posted in the how-tos web page.
    The final query that creates the tree is also as follows
    The Current Query shown in my apex window and the one on the howtos tutorial is as follows
    select "EMPNO" id,
    "MGR" pid,
    "ENAME" name,
    null link,
    null a1,
    null a2
    from "RJOSEEMPCLUB"."EMP"
    where DEPTNO = 1
    The error is as follows
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Debug:
    1: begin
    2: wwv_flow_wiz_confirm.create_tree (
    3: p_flow_id => :FB_FLOW_ID,
    4: p_region_template => replace(:F4000_P112_REGION_TEMPLATE,'%'||'null%',null),
    5: p_start_option => :F4000_P112_START_OPTION,
    6: p_owner => :F4000_P112_OWNER,
    7: p_table_name => :F4000_P112_TABLE,
    8: p_id => :F4000_P112_ID,
    9: p_pid => :F4000_P112_PID,
    10: p_name => :F4000_P112_NAME,
    11: p_link_option => :F4000_P112_LINK_OPTION,
    12: p_link_page_id => :F4000_P112_LINK_PAGE_ID,
    13: p_link_item => :F4000_P112_LINK_ITEM,
    14: p_where => :F4000_P112_WHERE,
    15: p_order_by => :F4000_P112_ORDER_BY,
    16: p_page_id => :F4000_P112_PAGE_ID,
    17: p_page_name => :F4000_P112_PAGE_NAME,
    18: p_tab_set => :F4000_P112_TAB_SET,
    19: p_tab_text => :F4000_P112_TAB_TEXT,
    20: p_region_name => :F4000_P112_REGION_NAME,
    21: p_tree_name => :F4000_P112_TREE_NAME,
    22: p_tree_type => :F4000_P112_TREE_TYPE,
    23: p_max_levels => :F4000_P112_MAX_LEVELS);
    24: end;

    Hi Kart,
    If you have the sample EMP table, the DEPTNO values are 10, 20 or 30.
    Did you specify a root value for the tree?
    Regards
    Andy

  • Please help me avoid twisting my head off trying to create a video of iphone screenshots that will play on an iphone

    I'm trying to create some job aid videos for a client.
    Some of these are going to be how to do things on their iphones.
    I've used the screencapture facility on my phone to snap a dozen or so screen caps.
    I've moved them to my PC
    I've buit a project (in C8) that is sized 640 x1136 but when I punblish them as video (to you tube) it comes out landscape.
    So I created a version that was 1136 x 640 and rotated all my objects by 90 degrees.
    This works, but if I try working like this my head will screw off.
    There must be an easier way.....
    Can anyone help please.
    Thansk
    Alan

    Pooja
    That will certainly help geting the screen into Captivate.
    But the problem then happens when I try to publish to Video and send it to YouTube.
    When I full screen it it looks like this.
    To fix that I rotated all the objects to -90
    The video looks OK but it means when working on it I have a screen that looks like this
    And I don't want to end up looking like this!

  • I am running Acrobat X Pro on Windows 7 in Parallels. I have tried to install the Acrobat updates, but they won't install. Today I tried to create a pdf from a Word 2013 document and it crapped out. I tried to uninstall Acrobat and got Error 1310. Error w

    I am running Acrobat X Pro on Windows 7 in Parallels. I have tried to install the Acrobat updates, but they won't install. Today I tried to create a pdf from a Word 2013 document and it crapped out. I tried to uninstall Acrobat and got Error 1310. Error writing to file: c:\Config.Msi\feea.rbf. What do I do?

    Hi Beverly ,
    Please refer to the following and see if this helps.
    https://helpx.adobe.com/creative-suite/kb/error-1310-error-writing-file.html
    Regards
    Sukrit Dhingra

  • Hello, I trying to create a program that would run a household furnace. I can't find a way to set timers for the ignitor,flame sensor and blowers. Any thoughts.

    Hello, I'm trying to create a program that would run a household furnace. I can't find a way to set timers foe the ignitor,flame sensor and blowers. Any thoughts would be greatly appreciated. Thanks, primetime

    In the detailed help for the event structure there is a link to caveats and recommendations for using event structures.  It is a good starting point.
    It is courteous to let the Forum know when your questions are related to a school assignment or homework.  We are glad to help you learn LabVIEW, but do not do your homework for you.
    You have learned the major disadvantage of the sequence structure: It must run to completion before anything else can happen.
    If you are building a state machine (typically a while loop with shift registers enclosing a case structure with one case per state) and having trouble with timing, then think about your requirements. Apparently you have some time delays, but under certain conditions you must terminate a delay/wait and do something else.  One way of doing this is to have a Wait state.  The wait state has a short delay, determined by the minimum time you can delay responding to a changed condition, and a check to see if the required elapsed time has occurred.  If the time has not elapsed, the next state is the Wait state again.  The state machine can repeat any state as often as necessary.  So a 15 second delay could be implemented by going to a Wait state with a one second wait 15 times. Any error or new command will see a response in no more than one second.
    Lynn

  • I am getting a warning message when i am trying to create a host-named sitecollection.

    Hi guys,
          I am trying to create a host-named site collection. I have created the root site collection. After that i have tried to create customer root site. I have doing this process with the guidance of this link.
    http://technet.microsoft.com/en-us/library/cc424952.aspx#section2a
    When i tried to create a customer root site. I am getting a warning message
    " WARNING: The port specified for the new host header site does not match any known bindings in the specified Web
    Application.  The new site will not be accessible if the Web Application is not extended to an IIS Web Site serving
    this port."
    I couldn't when this warning message comes. I tried to bind the server with webapplication which is created for host-named site collection. No use.
    Can anyone help me to solve. And i wanna know why this error message comes!!!
    Thanks in advance
    Rajendran.

    First, you shouldn't create a host named site collection on a Web app that has host header named.  Doing that implements host names at two different levels and will not work reliably.  Second I'm not sure what you mean when you say you didn't
    use the FQDN but used just the domain name.  A Full url will always be either an FQDN or a shorter Netbios name.  If you use a Netbios name it simply assumes the local AD domain of the workstation to create an FQDN as the url  There is no way
    to use just the domain name.  For example, Contoso.com is the domain name.  Server.contoso.com or WEbsite.contoso.com are FQDNs.  YOu can also use a shorter version that is just server or website, but when those resolve in TCP/IP they would
    still resolve using server.contoso.com or website.contoso.com if the workstation where your browser is was in the contoso.com domain.  What is the URL for your root site and your host named site?
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Trying to create a shell script to cut/paste files in finder. Help needed.

    I'm trying to create an automator shell script to cut/paste. It'll function exactly like copy/paste. i.e. I'll just copy file/files with command+c like always, but then I'll create an automator which uses the "mv" terminal app to move the files which works exactly like cut paste.
    I need some help since I don't know the syntax for creating shell scripts.
    What I did so far is to do it in automator with Apple Script which goes like the following:
    on run {input, parameters}
    tell application "Finder"
    set theWindow to window 1
    set thePath to quoted form of (POSIX path of (target of theWindow as string))
    end tell
    tell application "Terminal"
    do script with command "mv \"" & input & "\"" & thePath in window 1
    end tell
    return input
    end run
    This gets the copied file path from clipboard before, as input, and then recognizes the active finder window as thePath so then executes the mv command for the input file to the thePath window.
    It doesn't work as expected since it connects both file/window paths into a single path instead of leaving a space between them so the mv command can't recognize two separate paths.
    What's the correct syntax for that line
    do script with command "mv \"" & input & "\"" & thePath in window 1
    to leave a space between input and thePath under the mv command?
    Also this requires the terminal app to be open in the background.
    After I get this to work I want to do the exact same thing using shell script within automator, so I won't need Terminal to be open all the time.
    And the next step will be to cut/paste multiple files/folders but that should be easy to do once I get the hang of it.

    Try using:
    on run {input, parameters}
    tell application "Finder"
    set theWindow to window 1
    set thePath to quoted form of (POSIX path of (target of theWindow as string))
    end tell
    do shell script "mv \"" & input & "\" " & thePath
    return input
    end run
    (45977)

  • Help trying to create a button in safari please.

    trying to create a button that runs an applescript. I have been discussing it in 101 but cross posting it here because it's not getting much interest over there.
    Any help would be nice. I have read Become an xCoder and it doesn't seem to answer my questions.
    http://discussions.apple.com/thread.jspa?threadID=1514799&tstart=0

    Is there no way to create an appcontroller that works like an applescript? Or get an applescript to be recognized so a new NSButton added to the Bookmark bar be activated?
    i.e.
    *tell application "System Events"*
    * tell application "Safari" to activate*
    * keystroke "n" using {command down}*
    * delay 0.1*
    * keystroke "l" using {command down, shift down}*
    *end tell*
    Or,
    _Something Like:_
    / AppController /
    *#import <Cocoa/Cocoa.h>*
    *@interface AppController : NSObject*
    *IBOutlet id NSButton;*
    *-(IBAction) autoFill:,delay 0.1,checkSpelling:(id)sender*
    @end
    I really don't know if that AppController looks anything like it should or if it's even close.

Maybe you are looking for

  • How do I make a photo collage in CS5?

    I am trying to make a 12x18 photo collage in PS CS5 and cannot find how to do it. Is there a way? My Epson R2880 printer will handle 13x19 paper. TIA, Bill P.

  • GP & WebDynpro throws error

    hi Experts,<br> when I click on Guided Procedures or on Web Dynpro below content administration i'll get these errors and do not know how to fix this issue: <br><br> GP: <br> error 2009-05-18 16:25:20:439 04:25_18/05/09_0015_226678350 [EXCEPTION] com

  • Bad character set in dump file?

    (Sorry for re-posting this question; posting in in the "Globalization" section was apparently a bad idea as nobody replied.) Hi, IMPDP-ing a dump file that someone has handed me over into Oracle XE results in special characters, i.e. Umlauts, being m

  • Contacts overview: Only "JobTitle", not "Company"?

    Hi There,  In my C5, when going to Contacts -> Open, I see a nice short contact overview. Great stuff - but on the right hand side of the image, is the "job title" of the person, but not the "company". Is there a way to change this short - and useful

  • [svn:fx-trunk] 12826: Removed the WindowedApplicationAccImpl.

    Revision: 12826 Revision: 12826 Author:   [email protected] Date:     2009-12-10 19:02:25 -0800 (Thu, 10 Dec 2009) Log Message: Removed the WindowedApplicationAccImpl.  It is likely not needed.  In its current state it would prevent child components