How to have variable headers on different pages of a chapter?

Hello,
(Running FrameMaker 8 on Windows XP.) I'm trying to figure out how to set up a system variable to use to construct a running header in the Master pages of a chapter. I would like the chapter to have more than just two header variants (one for left-hand pages and one for the right). I want the header to reflect conditions that are local to the page being displayed.
First, here is the basic structure of the chapter:
Chapter Heading
   Heading 1
      Heading 2
            blah blah
      Heading 2
            blah blah
      Heading 2
            blah blah
  Heading 1
        Introductory text (several pages of body text and lower-level headers)...
      Heading 2
etc
On any given page, I want the running header to display the text of the most recent Heading 2 title to be used. However, if a new Heading 1 title was used more recently than the most recent Heading 2, and there is no text of type Heading 2 on that page, then I want the running header to display the text of the most recent Heading 1 title.
For example, suppose the "introductory text" in the above outline were to take up a few pages. On one of the pages having only body text, I would want the running header to display the text of the Heading 1 just above it, rather than the text of the Heading 2 title preceding that. In other words, I would like some sort of decision process, on a page-by-page basis, on which title's text it should use.
Is it possible to do this in FrameMaker 8? I tried using the <$condtag> building block, but I couldn't even get it to display anything meaningful, much less the correct text. I think I was misusing this building block - that it's only for use on pages that have conditional text, is that correct? My document has no conditional text in it at all.
Can anyone suggest how I might accomplish what I'm trying to do?
Thank you!
Joyce

Joyce,
Try using: <$paratext[Heading2,Heading1]>
This tells FM to use the first Heading2 on the page. If it doesn't find one, then search backwards until a Heading1 is found. You can keep adding multiple paratags in the specification. Just remember to list them in the reverse order of hierarchy.
You definitely do not want to be using the <$condtag> building block. This just tells FM to list the specified conditional tags found on each page and include alternative text if none are found.

Similar Messages

  • How do I move apps to different pages using my PC?

    Wondering how to move iPad apps to different pages using (a) my PC and (b) my iPad.  Thanks!

    See the following articles:
    http://ipadnotebook.wordpress.com/2012/12/10/how-to-use-itunes-11-to-arrange-app s/
    http://www.cnet.com/how-to/how-to-arrange-iphone-and-ipad-apps-using-itunes/

  • How to get a date on different pages?

    Hey everyone, I am working on a daily planner for the office and have a script that automatically generates the dates but I don´t know how to get each of the dates on a different page. I'd really appreciate if anyone could help me get each date generated by the script on teh following page of my 365 page document. The scrip is:
    var months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ];
    var length = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
    var days = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ];
    count = 0;
    day = 0;
    month = 0;
    weekday = 5;
    str = "";
    while (count < 365)
    count++;
    str += days[weekday]+", "+(day+1)+" "+months[month]+"\r";
    day++;
    if (day >= length[month])
      day = 0;
      month++;
      if (month > 11)
       month = 0;
    weekday = (weekday+1) % 7;
    app.selection[0].contents = str;
    Tanks!

    Try this,
    app.activeDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    app.activeDocument.zeroPoint = [0,0];
    with(app.activeDocument.viewPreferences){
        horizontalMeasurementUnits=MeasurementUnits.points;
        verticalMeasurementUnits=MeasurementUnits.points;
        rulerOrigin=RulerOrigin.pageOrigin;
    var months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ];
    var length = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
    var days = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ];
    count = 0;
    day = 0;
    month = 0;
    weekday = 5;
    str = [];
    while (count < 365)
    count++;
    str[count]= days[weekday]+", "+(day+1)+" "+months[month]+"\r";
    str1 =str.toString();
    day++;
    if (day >= length[month])
      day = 0;
      month++;
      if (month > 11)
       month = 0;
    weekday = (weekday+1) % 7;
    for(i=0;i<document.pages.length;i++)
    var myTextframe = document.pages[i].textFrames.add({geometricBounds:[0,0,50,150]});
    myTextframe.insertionPoints[0].contents=str[i+1];
    Vandy

  • How to create a report with different page sizes

    Hi,
    I would like to create a report with different page sizes, it's possible to do it with diadem?
    When I change the layout parameters, changes afect to all sheets...
    Is there a way to change page size individually for each sheet?
    Thanks in advance.
    Marc

    Hi Marc,
    You can use the DocStart and DocEnd commands along with the PicPrint command to spool multiple print commands to the same output PDF file using the direct printer approach.  This should enable you to programmatically specify the page size differently for each sheet that you add to the print job.
    ' Print PDF Page by Page.VBS
    OPTION EXPLICIT
    Dim i, Path, OldPrintName
    Path = AutoActPath & "2D Stacked"
    Call DataDelAll
    Call DataFileLoad(Path & ".TDM")
    PDFFileName = Path & " Page by Page.pdf"
    IF FileExist(PDFFileName) THEN Call FileDelete(PDFFileName)
    OldPrintName = PrintName
    PrintName = "winspool,DIAdem PDF Export,LPT1:" ' Set to PDF printer
    PDFResolution = "72 DPI" ' "2400 DPI" , "default"
    PDFOptimization = TRUE
    PDFFontsEmbedded = FALSE
    PDFJPGCompressed = "high"
    PrintOrient = "landscape" ' orient paper
    Call PrintMaxScale("GRAPH") ' auto-max, see alternative margin setting variables below
    PrintLeftMarg = 0.181
    PrintTopMarg = 0.181
    PrintWidth = 10.67
    'PrintHeigth = 7 (read-only)
    Call WndShow("REPORT")
    Call DocStart ' Begin multi-page document/print job
    FOR i = 1 TO 4
    Call PicLoad(Path & ".TDR")
    Call GraphSheetNGet(1)
    Call GraphSheetRename(GraphSheetName, "Page " & i)
    Call PicUpdate
    Call PicPrint("WinPrint") ' Add a page to be printed
    NEXT ' i
    Call DocEnd ' End multi-page document/print job
    PrintName = OldPrintName
    Call ExtProgram(PDFFileName)
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • How to get table headers in jsp page

    hi,
    this is praveen, can any one help me to solve this problem.
    how to get table headers in a jsp page. whether it is possible using javascript or is there any other way.
    pls send rep.
    thank u.

    Hai ,
    I Think  This will help ful for u check it ,
    File=new FileLog("f:/WebServiceTrace/trace2.%g.log", 800000, 10,                                        new  TraceFormatter());
    The above code specifies the path for your log file.
    Then add this file as a log location and then log the traces. For this you can use the following code like:
    Location location=Location.getLocation(className);
              location.addLog(file);
              location.setEffectiveSeverity(Severity.ALL);
              location.entering(methodName);
    To Create j2ee apllication
    In path new-j2ee-jsp to create JSP's can only be used for J2EE applications.
    So as you are using this in Portal Application, this does not work.
    You can test this bahavior by creating a new Web Application (New-Project-J2EE-Web Module Project)
    In this Web Module Project, try creating JSP, this will work.
    So dont use new-j2ee-jsp to create JSP in Portal Application instead use New-File and name the file as jsp.
    Regards ,
    venkat

  • How can you set (or reset) different page sizes within 1 pdf?

    I am working on a pdf with various page sizes.  Say one page at 8-1/2 x 11, another at 11 x 17, and another at 22 x 34.  I obviously can't print as "Choose paper source by PDF page size" as one printer can't do all sizes.  I would like to change the 22 x 34 to 11 x 17.  How can I change the page size setting of one page within a multiple-paged pdf?

    You can play with the Crop tool. You'll find it is easier to "size up" than "size down".
    May have to extract and bin PDF pages by the virtual page size then work on them.
    However, if all you want is to have the content on hard copy and having that on a common sheet size (say Letter) then consider this alternative:
    Make a working copy of the PDF.
    With the PDF open in Acrobat, open the Pages panel. Expand the panel width as desired.
    Now, Ctrl click through the PDF page thumbnails that have a landscape orientation.
    Rotate these 90 degrees to a portrait orientation.
    Alt+D+T or Shift+Ctrl+R
    Save as you go.
    With all pages in a portrait orientation, use the attached printer to print.
    In the Print dialog locate the entry for 'page scaling' and select Fit or Shrink to Printable Area.
    All PDF pages' content will be scaled such that all page content fits in an imprint on the Letter size paper.
    Or, go the other way and have the imprint of PDF page content fill a larger sheet size.
    Just a function of what the printer accepts for paper size and the features provided in the printer driver.
    Be well....

  • Apex 3.1 doesn't like passing variables to a different page than you're on

    My application was working fine in 3.0, but when we upgraded it, this feature stopped working and I'm not really sure why this is the case. I looked at the security and there's no security features turned on that would seem to prevent this.
    I'm trying to pass a variable into a field on page 101, but the URL didn't previously specify the URL - this is the actual URL that was used and worked previously:
    http://clients.intellireal.com/pls/apexp/f?p=103::::::P101_COMPANYID:85
    As you can see, I'm not passing in the page number, so there seems to be some sort of security feature that's not allowing the hidden field on page 101 (P101_COMPANYID) to get set to 85 like I believe it should. If I use the following URL, it works:
    http://clients.intellireal.com/pls/apexp/f?p=103:101:::::P101_COMPANYID:85
    The difference you'll notice if you try this is that the logo will change from IntelliReal to IntelliRealAdvisor depending on what the company id is set to. If you try any other page number (i.e. 306, which is a valid page), it doesn't work either.
    I also noticed that the home link seems to have more importance than it used to. The page that users go to in our application depends on who logs in. So we had to change the home link to 101 for the application to function properly.
    This is the first time that an upgrade of Apex has caused my existing code to break - now I'm a bit worried about my other code!
    Any thoughts on how I can get this URL to work would be greatly appreciated:
    http://clients.intellireal.com/pls/apexp/f?p=103::::::P101_COMPANYID:85
    Thanks!
    Brad

    Brad,
    Thanks for all that information. You are correct that the behavior changed from 3.0 to 3.1 and it looks like we broke something and that was not our intention. We may be able to repair it in the 3.1.1 patch.
    In the meantime, try this:
    1. As the initial request use:
    .../f?p=103:::P101_COMPANY_ID:85
    2. In the authentication scheme, set the Session Not Valid Page attribute to -No Page Selected- and set the Session Not Valid URL to:
    .../f?p=&APP_ID.:101:&SESSION.:::&APP_ARGS.
    3. Edit page 101 and change its security attribute to Page Is Public
    4. Don't try to make sense of how many colons are in the URLs, above. It makes no sense.
    Scott

  • How to pass variables between 2 jsp pages-help

    Hi,
    I have a question like this.
    As an example consider I have 3 .jsp pages.
    page1.jsp - In this html form it has some textboxes to enter employee details.
    page2.jsp - In this page it has a "PRINT" button which allows the user to click.
    page3.jsp - A new popup window which having the same content as page2.jsp, but without the PRINT button.
    But my problem is this. In this page3.jsp,it should be display the entered textbox values as page2.jsp. But these values are not displaying here. They display as NULL.
    I use as follows, but it still not working.
    <%= request.getParameter("effDate")%>.
    Could you please tell me how to hold these values when I came from page2 to page3.
    I'm using JSP 1.2 with javaBeans.
    Thanks.

    Well,
    If you are popping up a new window, and you insisting on pulling the data out of the request's parameter map. Then you will need to add the values to the query string of your url.
    window.open("http:localhost/page3.jsp?itemOne=itemOneValue&itemTwo=ItemTwoValue, '', '');
    Alternative Option:
    When posting from page 1 to page two, store your information into session scope
    request.getSession().setAttribute("valeuOne", "valueOneValue");
    Then instead of pulling from the paramter map, use request.getSession().getAttribute("valueOne") in your third page.
    Hope that helps.
    Thanx
    Cardwell

  • New Update (2014.1) - How to have multiple compositions on same page?

    With the latest update, it seems as though Edge now always assumes that the composition has an element ID of "Stage". Previously, I was able to have multiple compositions on the same HTML page by simply altering the default id of "Stage" for each composition to something unique. Any workarounds for having multiple compositions on the same page utilizing the 2014.1 update?

    You can use the following approach
    Dropbox - Multiple.zip
    <!DOCTYPE html>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
      <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="edge_includes/edge.5.0.0.min.js"></script>
        <style>
           .edgeLoad-EDGE-77458053 { visibility:hidden; }
            .edgeLoad-EDGE-77430105 { visibility:hidden; }
        </style>
    <script>
       AdobeEdge.loadComposition('2', 'EDGE-77458053', {
        scaleToFit: "none",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "550px",
        height: "400px"
    }, {dom: [ ]}, {dom: [ ]});
    AdobeEdge.loadComposition('1', 'EDGE-77430105', {
        scaleToFit: "none",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "550px",
        height: "400px"
    }, {dom: [ ]}, {dom: [ ]});
    </script>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
      <div id="Stage1" class="EDGE-77458053">
      </div>
        <div id="Stage2" class="EDGE-77430105">
        </div>
    </body>
    </html>
    -Siva

  • How to have Acrobat X skip deleted pages in its counting as if they are still there?

    WHat I mean is this, You have pages, the actual paper so to speak, numbered 1,2,3,4,5,6.......45. You could see each number on the bottom of the page. As is you have on the top left corner which pge you're on based on the toal pages, for ex. 7 / 49 If you happen to be on page 7 on a total of 49 pages. Assume now you delete the numbered page 7. What you have now is still page 7 showing on the top left corner but on the actual pdf it is page 8. My question is, assuming it is possible, to make that top corner equal to the actual page. In other words page 7, in this example would nevber show up on the top left corner since it no longer exists. Or to put it in other words, what is on top must equal the actual page number on the document at all tiimes, and preferable do this automatically each time a page is deleted (which I do often, quite often)
    Thank you

    This can be done either manually, by setting the so-called page labels (the
    text that you see in the page navigation part of the toolbar), or by using
    a script (if it can identify the page number on the page). It can't be done
    automatically.

  • Page Viewer to have links open a different page

    I have a custom HTML page i have created that has links to site pages. I have a page viewer web part on my home page that points to this custom HTML page. I want it so when you click on a link on this html page, it doesn't just take you to the page
    within the page viewer, but have the whole page navigate there.
    I do not want the link to open a new tab or new window, just navigate from the home page to the page.
    Any ideas?
    I had it in a content editor before and it worked fine, but for some reason it changed all the hyperlink text to red, even though there is not one line in my css file to have any red text anywhere. Strange.
    Thanks.

    Hi,
    According to your description, my understanding is that you want to redirect a new page directly outside the page view without tag or new window.
    It could be achieved setting target attribute to _parent for <a> tag.
    <a target="_parent" href="/sites/zhengyuGuo/">Click here to continue</a>
    The link above will allow us open the link in the parent page.
    More information:
    Redirect the parent page from IFrame:
    http://stackoverflow.com/questions/2092275/redirect-the-parent-page-from-iframe
    Best regards,
    Zhengyu Guo
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • How to have seperate iaccounts for different people in family

    My son has an ipod that I set up with my email information.  I have purchased a iphone5.  We get each other's messages, share the apps and can't facetime each other.  I understand that they need to be seperate but how do I do that and not lose the music/apps for that device? 
    Thanks for any help!!!

    mbabb24 wrote:
    I guess my question is, can I sync the ipod and back all the apps and music up, wipe the ipod clean, enter new email and password and restore the stuff that is on the computer???
    Yes.

  • When I create a file, why does the PDF have text aligned on different pages than my word document?

    I am trying to create a PDF of a Mac Word document.  In the conversion process text seems to shift - what was on the bottom of the first page in the word document shows up on page 2 of the pdf.  Any thoughts?

    Hi svht,
    Would you send your document to [email protected] as an email attachment?
    I will check it from my end.Please add the link to this forum post for reference.
    Regards,
    Florence

  • How to redirect to different page after login in APEX 4.1

    Dear All,
    Here my Requirement is,When the users login,
    when they entered their username and password and pressed login button,
    they have to redirected to different pages based on the type of user.
    Here my LOGIN_TABLE has following 3 columns,
    1.Username
    2.Password
    3.Type.
    The TYPE has 2 values, employee and admin.
    when the type is admin they should be redirected to page 2,
    reaining i.e employee users has to be redirected to page 3.
    How can I do this? please give some suggestion.
    Thank you.
    regards,
    Gurujothi

    Dear Christian,
    Thank you for your reply,
    I would like to explain something,
    When I using the following function,
    *create or replace FUNCTION custom_auth_g (
    p_username IN VARCHAR2,
    p_password IN VARCHAR2)
    RETURN BOOLEAN IS
    BEGIN
    FOR c1 IN (SELECT 1
    FROM login_table
    WHERE upper(username) = upper(p_username)
    AND upper(password) = upper(p_password))
    LOOP
    RETURN TRUE;
    END LOOP;
    RETURN FALSE;
    END;*
    When login, It checks in the login_table table and if the username is exist with the pass word it successfully entered inside the application.
    for all users only one page which we set.
    My Login_table also contains type which has 2 type as I mentined above.
    But As I mentioned earliar based on the user type it has to be redirected to 2 different page.
    I found this Package but I cant understand,Can you please Explain?
    *create or replace PACKAGE app_security_pkg
    AS
    PROCEDURE add_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    FUNCTION get_hash
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN VARCHAR2;
    PROCEDURE valid_user2
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    FUNCTION valid_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN BOOLEAN;
    END app_security_pkg;*
    *create or replace PACKAGE BODY app_security_pkg
    AS
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    IS
    lv_goto_page NUMBER DEFAULT 1;
    BEGIN
    -- This logic is a demonstration of how to redirect
    -- to different pages depending on who successfully
    -- authenticates. In my example, it simply demonstrates
    -- the ADMIN user going to page 1 and all other users going
    -- to page 2. Add you own logic here to detrmin which page
    -- a user should be directed to post authentication.
    IF UPPER(p_uname) = 'ADMIN'
    THEN
    lv_goto_page := 1;
    ELSE
    lv_goto_page := 2;
    END IF;
    APEX_UTIL.SET_SESSION_STATE('FSP_AFTER_LOGIN_URL');
    wwv_flow_custom_auth_std.login
    p_uname => p_uname,
    p_password => p_password,
    p_session_id => p_session_id,
    p_flow_page => p_flow_page || ':' || lv_goto_page
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END login;
    PROCEDURE add_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    AS
    BEGIN
    INSERT INTO app_users (username, PASSWORD)
    VALUES (UPPER (p_username),
    get_hash (TRIM (p_username), p_password));
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    ROLLBACK;
    RAISE;
    END add_user;
    -- Function to Perform a oneway hash of the users
    -- passwords. This cannot be reversed. This exmaple
    -- is a very week hash and if been used on a production
    -- system, you may want to use a stronger hash algorithm.
    -- Read the Documentation for more info on DBMS_CRYPTO as
    -- this is the supported package from Oracle and
    -- DBMS_OBFUSCATION_TOOLKIT is now depricated.
    FUNCTION get_hash (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN VARCHAR2
    AS
    BEGIN
    RETURN DBMS_OBFUSCATION_TOOLKIT.md5 (
    input_string => UPPER (p_username)
    || '/'
    || UPPER (p_password));
    END get_hash;
    PROCEDURE valid_user2 (p_username IN VARCHAR2, p_password IN VARCHAR2)
    AS
    v_dummy VARCHAR2 (1);
    BEGIN
    SELECT '1'
    INTO v_dummy
    FROM app_users
    WHERE UPPER (username) = UPPER (p_username)
    AND PASSWORD = get_hash (p_username, p_password);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN raise_application_error (-20000, 'Invalid username / password.');
    END valid_user2;
    FUNCTION valid_user (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN BOOLEAN
    AS
    BEGIN
    valid_user2 (UPPER (p_username), p_password);
    RETURN TRUE;
    EXCEPTION
    WHEN OTHERS
    THEN RETURN FALSE;
    END valid_user;
    END app_security_pkg;*
    And you said "assign an URL to FSP_AFTER_LOGIN_URL, depending on the Type column",
    Where to assign,Could you please Explain?
    Thank you.

  • Remotely add and remove Instances from different pages

    Similar to my other post, I have a form that has multiple pages, one being a calculator (OA_CALC) that shows every variable for calculation; the second (OA_PG1), customer facing showing only pertinent information. So both tables should add/remove and show the data being contolled from OA_CALC. I am able to addInstance and source the date to both pages, but for some reason removeInstance only works on the page where the button exists. So rows on OA_PG1 never delete, please advise.
    On OA_CALC i have an ADD ROW button with the following code:
    form1.OA_CALC.Table1.HeaderRow.#subform[0].AddRow::click - (JavaScript, client)
    OA_CALC.Table1.RowItems.instanceManager.addInstance(1);
    OA_PG1.ProjectSavingsGROUP.Table1.RowItems.instanceManager.addInstance(1);
    and a DELETE ROW with the following code:
    form1.OA_CALC.Table1.RowItems.#subform[0].DelRow::click - (JavaScript, client)
    var vIndex = this.parent.parent.index;
    OA_CALC.Table1.RowItems.instanceManager.removeInstance(vIndex);
    OA_PG1.ProjectSavingsGROUP.Table1.RowItems.instanceManager.removeInstance(vIndex);
    One thing that I tried was creating buttons on OA_PG1 with the code specific to that table, that seemed to work. So I know the syntax works, but cannot figure out how to control it from a different page. Please help.
    Thanks

    urgh, apparently I am still very close. I have used your sample, but it seems that the execEvent("click") is not working correctly or my syntax is wrong somewhere. Where am I going wrong?
    Button Code on first table:
    form1.OA_CALC.Table1.RowItems.deleteBtn::click - (JavaScript, client)
    var vCurrentRow = this.parent.index;
    OA_CALC.Table1._RowItems.removeInstance(vCurrentRow);
    xfa.resolveNode("OA_PG1.ProjectSavingsGROUP.Table1.RowItems[" + vCurrentRow + "]").deleteBtn.execEvent("click");
    Invisible Button Code on second table:
    form1.OA_PG1.ProjectSavingsGROUP.Table1.RowItems.deleteBtn::click - (JavaScript, client)
    OA_PG1.ProjectSavingsGROUP.Table1._RowItems.removeInstance(this.parent.index);
    Edit: Here is the Console report from the Acrobat JavaScript Debugger:
    xfa.resolveNode("OA_PG1.ProjectSavingsGROUP.Table1.RowItems[" + vCurrentRow + "]") is null
    7:XFA:form1[0]:OA_CALC[0]:Table1[0]:RowItems[1]:deleteBtn[0]:clickException in line 7 of function top_level, script XFA:form1[0]:OA_CALC[0]:Table1[0]:RowItems[1]:deleteBtn[0]:click
    TypeError: xfa.resolveNode("OA_PG1.ProjectSavingsGROUP.Table1.RowItems[" + vCurrentRow + "]") is null
    7:XFA:form1[0]:OA_CALC[0]:Table1[0]:RowItems[1]:deleteBtn[0]:click

Maybe you are looking for

  • Preloader: Only works on first publish?

    Ok. I have a simple animation composed of two SVG's. The SVG's are quite simple (random dots simulating a starfield). This oam file will ultimately be added to a Muse project. I can successfully publish the animation. I can add the animation to the M

  • Credit Memo Req. with different Pricing Procedure than Invoice

    Hi I need to create a credit memo req. from invoice reference - but both should have different pricing procedures. I have assigned different doc. pricing proc. to the new credit m. req. and maintained proper pricing proc. determination. Also in copy

  • How to show an XML doc's node?/element in a dynamic textbox?

    Hello! I would like to show an XML doc's node?/element in a textbox. I am importing the XML data from a PHP page. My code looks like this: var xmlRequest:URLRequest = new URLRequest("adatatvitel.php"); var xmlLoader:URLLoader = new URLLoader(xmlReque

  • Filr 1.1 LDAP Preview Not Returning Correct Number of Result

    I'm finishing set up of Filr 1.1 in our environment but noticed today that the LDAP preview does not return the correct number of results. The query: (&(objectClass=Person)(|(employeeType=E)(employeeT ype=Y)(employeeType=Z))) has been tried against m

  • How to center a new- opened window page?

    let's say i have 2 jsp files. i have a hyperlink in page 1, if i click that hyperlink, a pop up window will appear, how will i let that pop up window appear in center? thanks