Identifying a page

Hi all,
I'm working with dashboards, and I need to identify every page on the dashboard, in order to show a comment from a table, depending on the page the user is at.
For example, if the user is in page #1, the query of a table will show all the data filtering by page=1.
If the user is in page #2, the query of a table will show all the data filtering by page=2, and so on.
i tried using a prompt in every page with a specific value (the number of the page) and filtering the query with this prompt, but it's not working properly. Anyone has ever needed this, or know how to help me?
Thanks in advance

Hello User -
I think you are on the right track with using the prompts, although I have a couple suggestions that should make it work:
1) Create a separate prompt for each one of your dashboard pages. The prompts should all be the same except for the "Default To" option.
2) Set the "Default to" option to the page number that correlates. So, if this is the Page 1 prompt, set this value to 1. In the Page 2 prompt, set the default to 2, and so on...
3) Make sure the prompts have the scope marked as "Page" instead of dashboard. This will ensure that the prompt can have a different value on every page.
4) In all of your prompts, have the prompt column set a presentation variable. Call it anything you want, but for the purpose of this post, we will call it 'PAGE_VAR'.
5) In the report that is being filtered by the prompt, instead of selecting "is prompted" in the filter options, select "is equal to / is in", then click "Add > Variable > Presentation".
6) You will see a "Variable Expr" box show up in the filter wizard. Type the name of your variable here: 'PAGE_VAR' and save.
What this should do is have the prompt automatically set your variable PAGE_VAR to the default value, which should correlate to the page you are on. The report will then filter based on this variable that is set on every page.
Once it is working, you should even be able to hide your prompt so that this happens "behind the scenes" and the work is seamless to the user.
I hope this helps, and please award points if you found this useful!
Please let me know if you have any questions.
Regards,
Jason

Similar Messages

  • Smartforms - Identify the page just before the last page

    Hi,
    I need to add OMR code into a Smartforms, I print my form in duplex mode, and my OMR code must be only in the odd page (1, 3, 5, 7 ...).
    In the OMR code, I must set the end of the grouping, this end occurs at the last odd page. But if the last page is pair (2 4 6 8 ...), I need to the the ending code to the page just before the end.
    So, I need to identify the page just before the last page.
    My problem is, when I debug the Smartforms, the SFSY-FORMPAGES contains the actual page, not the value of the last page.
    if someone have an idea ..
    Fred

    Maybe I found the solution :
    Note 359009 - Postprocessing and query of the total number of pages
    I check and make a return (if a day someone have the same problem)
    Fred

  • How to identify last page of a group

    Hi reports gurus!
    I'm trying to have report of employee(table emp) group by department(dept). I want to have 5 employees per page and per departement. A department can have 10 employees. So we'll have 2 pages for this department.For Each page a want to have sum of salary. Only at the last page of a department i want to have the sum of salary per page and also total of salary for the current department.
    So i want to know how to identify the last page of departement in order put only on this page the sum of salary for the departement?
    PLZ help is't very very important.

    Repeated masterpages use the same logic as any other repeated object - they have instance numbers.
    To address the second instance you can use an expression like.
    xfa.resolveNode("form1.masterpage[1].subform").presence = "hidden";
    If you're not sure about the correct SOM expression you can use a small script for testing.
    Put a textfield into the subform you want control.
    Add this script into its calculate event.
    this.rawValue = this.parent.somExpression;
    If you preview the form in Designer you'll see the SOM expression of the text fields parent, which is the subform.
    Copy it and put it into the script to hide the subform.

  • How to Identify a page's GUID?

    I am to a point where I have added a new page using an html editor on a published (by client) website but the page will not show up in the menu. Obviously, by default the "current-page-GUID" that is reflecting is the GUID of the page that I duplicated. I would like to be able to have my new page show up in the menu and add the new page's GUID to the html of the new page so when a visitor is on the page it reflects the correct Title.
    I have located the current-page-GUID in the script on the new page and have deleted the current-page-GUID (the actual number) that coresponds to the page I duplicated but two questions remain:
    1. How do I get my new page to show up in the menu.
    2. How do I find the GUID of the new page I created so that I can add it to the "current-page-GUID" area on the new page html file?

    A huge thanks to Woydor who provided me with the answers I needed (from Modify iWeb from Another Program thread).
    1: Add an entry in the feed.xml file.
    2: Is the page you created in iWeb?
    If it has a menu, the ID is in the code you see above.
    If the page has no menu, then there is no ID.
    To create your own UUID :
    https://www.google.com/search?q=uuid+generator
    In my case I needed to create one. Applied as suggested and it worked perfectly!

  • Identify/expire Pages that have not been accessed for certain time

    Hi,
    I would like to create a publishing portal. Many users are able to create pages. I have the requirement that if a page does not get accessed for a certain time-period - it should be flagged for deletion and the creator should be notified by email.
    Expiration policies depend on creation/modification date. Does this work for the last-accessed time (whereever I get this information from) aswell?
    Sven 

    Use below powershell
    $outputPath = Read-Host “Outputpath (e.g. C:\output\UnusedSites.txt)”
    $lastDate=Read-Host “Last Accessed Date (in format mm/dd/yyyy)”
    $gc = Start-SPAssignment
    $site=$gc | get-spsite -Identity https://sitecollectionUrl
    foreach($web in $site.AllWebs)
    if ($web.LastItemModifiedDate -lt $lastDate)
    Write-Host -f Red “Site is old…” + $Web.Title
    Add-Content -Path $outputPath -Value “$($web.Title),$($web.ServerRelativeUrl),
    $($web.LastItemModifiedDate),$($web.Author)”
    else
    Write-Host -f Green “Site: [" + $web.Title + "] Last Modified Date: ” + $web.LastItemModifiedDate
    Stop-SPAssignment $gc
    Or
    plan to use this tool
    http://www.harepoint.com/Products/HarePointAnalyticsForSharepoint/FindOutdatedContentInSharePoint.aspx

  • How to programmatically identify that page is being published first time ?

    Hello,
    I need to check whether page has been published first time.
    using SPListitem.Level can check whether page is published/draft/checkout, however how can I check whether its being published first time ?
    Would you please let me know if there is any way ?
    Thanks and Regards,
    Dipti
    Dipti Chhatrapati

    hi
    try _listItem.File.Versions.Count instead. If it will still throw exception, then instead of retrieving count try to iterate over _listItem.File.Versions collection and check latest version inside loop body (see e.g. here:
    How to retrieve File version from SPListItem).
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • How to identify this page having image caption element

    Hi,
    Any one help me. Indesign CS2 (PC version). Im reading textframes on this page but i didn't get what are all the elements having this page or particular element have this page?
    regards,
    sudar

    Hi,
    May the below code also helpful for you:
    var myPages = app.activeDocument.pages;
    alert(myPages.length)
    for(i=0; i<myPages.length; i++)
        if(myPages[i].appliedMaster == null)
            alert("Blank Page is : " + myPages[i].name)
        else
            alert("Applied Master Page  is : " + myPages[i].name)
    Thanks
    Siraj

  • Header.php exists but does not show up on every page.

    Hi.  I am starting from scratch with this.
    part1.
    My objective is to create a website that takes advantage of DreamweaverCC's fluid-grid-layout so that my web Site auto-flows on
    smartphones, tablets and desktops/laptops.
    file > new > fluid-grid-layout.
    By default, it says 'unnamed.css'
    I named it  testSite.css
    click okay.
    (This is the only way to begin with a fluid-grid-layout - I think).
    It opens a split view.
    On the right frame is a DIV that has this text inside.
    "Use Insert Panel for additional Fluid Grid Layout Elements. Note: All Fluid Layout tags must be contained within the "gridContainer" div tag."
    In the right frame,
    <script src="file:///Macintosh%20HD/Applications/Adobe%20Dreamweaver%20CC/Configuration/BuiltIn/F luid%20Grid%20Layout/respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="div1" class="fluid">Use Insert Panel for additional Fluid Grid Layout Elements. Note: All Fluid Layout tags must be contained within the "gridContainer" div tag.</div>
    </div>
    </body>
    </html>
    QUESTIONS - CLARIFICATION.
    Question ????
    class = 'gridContainer clearfix"
    div id = "div1 class = "fluid"
    So all of the <div>s that I place inside of the gridContainer will all be assigned the 'class'  fluid.
    Yes ?
    And I define div ids so that I can use css styles
    Yes ?
    I understand class in Java but I do not understand it here in Dreamweaver.
    Please explain.
    part2.
    I inserted 4 <div>s into the gridContainer and assigned them specific div ids.
    div id = square1
    div id = square2
    div id = square3
    div id = square4
    I see these assignments in the code.
    But in the properties panel with HTML (not css panel) selected. 
    It shows  ID None.
    Question ????
    Why doesn't the assigned div =id  in the code show in the properties panel.
    part3a.
    index.php is my main web page.
    It has several images (the 4 different squares).
    I created a separate .html file for each square: square1.html square2.html square3.html square4.html.
    At this point, each of those pages has only one sentence.  'contents for square#N) will be on this page'
    I used the properties panel and linked the 4 images on index.php to these .html files.
    When I 'View in Safari/Firefox'  each of those images (squares) when clicked - bring me to the appropriate page.
    So I've got some of this working
    part3b.
    I know that some of you have already tried to assist with this but it is not working for me.
    I created a file called header.php
    The contents of header.php does not have any <tags> at all.
    The contents is this:
    <h1> This will be the header for all of my web pages.</h1>
    In index.php I included this in the code as such:
    <body>
    <? php require_once('header.php'); ?>     // this is line 34
    <div class="gridContainer clearfix">
      // div ids for the images etc. etc.
    </body>
    </html>
    View in Safari/Firefox
    Parse error: parse error in /Library/WebServer/Documents/dwwdSite/index.php on line 34
    I tried this.
    <? php include_once('header.php'); ?>
    <? php include('header.php'); ?>
    and I get the same exact error.
    When I 'view in Safari/Firefox'  header.php  it displays what I want:
    This will be the header for all of my web pages.
    Question ????
    What am I doing incorrectly ?
    From one of my other posts - as we got onto this topic, it was suggested that I just place the php code:
    <? php  include('header.php'); ?>
    within the index.html file exactly where I want it to show up.
    I want it to show up at the top of each page.
    Well at this point it is not showing up anywhere !!
    But if I have header.php active in Dreamweaver and 'view in safari/firefox'
    the browser does show the header.php page.
    part4.
    Question ????
    And should I include
    <? php require_once('header.php'); ?>
    at the top of each of the square.html files if I want the header to show up on each of those pages.
    I think this makes sense.
    part5.
    Question ????
    When I view testSite.css
    I understand that it has 3 different sets of selectors for each of the 3 different devices.
    But how do I 'assign'  css properties to the contents inside of header.php ?
    With header.php active/open, from the 'properties panel' I can select CSS and choose: font, size, color from there and it works
    but should I not have this included in the testSite.css ?
    Lots of questions. Hope that I explained it in an organized fashion.
    thanks again.
    Nancy O.
    Sudarshan Thiagarajan

    > So all of the <div>s that I place inside of the gridContainer will all be assigned the 'class'  fluid.
    Nope - but everything that you insert using the Insert panel will give you the opportunity to specify that it's a fluid element, which you can do by enabling the checkbox on the dialog. This means that you CAN insert a <div> that is not a fluid element. It's only the ones that you insert as a fluid element that will get that class automatically.
    >And I define div ids so that I can use css styles
    Assigning an ID to any element on the page allows you to target that element with a particular CSS rule.
    > I understand class in Java but I do not understand it here in Dreamweaver.
    > Please explain.
    There is no similarity at all. There are four ways you can identify a page element to apply a CSS rule:
    1. By tag, e.g., all paragraph tags on the page.
    2. By context, e.g., any paragraph tag that is within a <nav> element.
    3. By 'class' assignment, e.g., any element that has been given a particular "class" attribute -> <p class="foo">
    4. By ID, e.g., any element that has been given a particular "ID" attribute -> <p id="foo">
    The weight of any style (i.e., which one to use in the event of conflict) is determined by a number of characteristics of the CSS 'selector' that carries the rule.
    > Why doesn't the assigned div =id  in the code show in the properties panel.
    Assuming your code is correct, it will, e.g.,
    <div id = "square1"></div>
    <div id = "square2"></div>
    <div id = "square3"></div>
    <div id = "square4"></div>
    Try this -
    <html>
    <head></head>
    <body>
    <?php require_once('header.php'); ?>     // this is line 34
    <div class="gridContainer clearfix">
      // div ids for the images etc. etc.
    </body>
    </html>
    and I get the same exact error.
    Yes - there is no space in "<?php".
    Let's start with that.

  • Page numbers in PDF?

    I cannot figure out how to identify the page numbers of a PDF document when I view it in Safari 5.0.3. The original paper document has its own numbering system, but the PDF page-numbers are completely different. When I go to print individual pages of the PDF document, I don't know what page numbers to put into the printer window.
    I asked the publisher of the PDF document for advice. This is what it advised:
    "This is an issue with printing PDFs (Portable Document Files) in general, and does not pertain exclusively to printing PDFs in FDsys. When printing a PDF document in your web browser, the web browser is printing the pages of the electronic file (the PDF) not the page numbers that appear on the original publication (from which the PDF is derived). The page numbers of a PDF document do not always match the page numbers appearing on the publication itself. For example, in the example you cited (http://www.gpo.gov:80/fdsys/pkg/USCODE-2009-title26/pdf/USCODE-2009-title26-subt itleA.pdf), the page number on the publication is page 347. However, if you click anywhere in that page, you will see that the PDF reader you are using indicates the corresponding page in the PDF file in the toolbar at the top of the page (next to the up/down arrow icons). The page number indicated in the toolbar refers to the page numbers in the PDF file, and it is these page numbers that your browser is referring to during the printing process."
    None of those instructions work in Safari. How do I find the page numbers for a PDF document in Safari?

    Hi Richard
    the best bet is to open it in Preview using the relevant button that appears when you hover at the bottom of a pdf in safari. Although the page numbers that appear on each page still won't necessarily match, you can at least make preview show the 'pdf' numbers in the toolbar, which will match those you choose when printing.
    a plugin like adobe's or http://schubert-it.com/pluginpdf/ may show page numbers within Safari, but that doesn't mean they'll match those which appear on the pages, in the example link you gave, and others.

  • How do I find out the URL of the page a document was downloaded from?

    I downloaded a PDF several months ago; I can see it in my downloads history. When I right click it there, I see the link to the PDF itself, but I need to know the actual page it came from.
    I've checked my History, but cannot identify the page.
    Is there a definitive way of determining the URL of the page that linked to the document?

    Open the Download Manager window and select that file.
    Copy and paste this code in the Code field in the Error Console and click the Evaluate button.
    *Firefox/Tools > Web Development > Error Console
    The code adds a tooltip to the area with the file type icon at the left hand side of each entry in the DM window and shows a tooltip when you hover that area.<br />
    It only works for entries that are currently visible in the DM and not for new entries that are added by downloading files and only as long as the DM window is kept open, so you need to rerun the code in the Error Console to get a tooltip.
    <pre><nowiki>const Cc=Components.classes, Ci=Components.interfaces;
    var enumerator=Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator).getEnumerator(null);
    while(enumerator.hasMoreElements()){var win=enumerator.getNext();
    if(win.location=="chrome://mozapps/content/downloads/downloads.xul"){
    var i,r,R,C='';
    r=win.document.getElementById("downloadView").getElementsByTagName("richlistitem");
    for(i=0;R=r[i];i++){
    var fP=R.getAttribute("path");
    var fU=R.getAttribute("uri");
    var sT=parseInt(R.getAttribute("startTime"));
    var eT=parseInt(R.getAttribute("endTime"));
    var cB=parseInt(R.getAttribute("currBytes"));
    var mB=parseInt(R.getAttribute("maxBytes"));
    var rU=R.hasAttribute("referrer")?R.getAttribute("referrer"):"<no referrer>";
    var sD=cB/(eT-sT);
    var tT=[];
    tT.push("FILE: "+fP);
    tT.push("URI: "+fU);
    tT.push("REF: "+rU);
    tT.push("");
    tT.push("Total Time: "+((eT-sT)/1E3)+" sec.");
    tT.push("Curr Bytes: "+cB+" bytes"+((cB==mB)?" (OK)":"(part)"));
    tT.push("Max Bytes: "+mB+" bytes");
    tT.push("Download speed: "+sD.toFixed(3)+" KB/sec");
    R.setAttribute("tooltiptext",tT.join("\n"));
    if(R.getAttribute("selected")=="true"){C=tT;}
    if(C)prompt(C.join("\n"),C);
    </nowiki></pre>

  • Setting the value of a textbox from another page

    Hi Everyone,
    I have a multi paged application (multiple xib, multiple controllers)
    In my selection view, the view that holds the UIViewPicker control, I need to populate the page that called the selector page...
    I have the code to identify what page called the selector, and when the page is dismissed, I need to fill in the field from the calling page.
    I have included the header of the calling view in my selector view, and now I need to be able to fill in a readonly textbox in the calling view....
    Do I need to setup a property for each of the textboxes in the calling view, or can I populate them directly??
    thanks
    tony

    alt-088 wrote:
    I am sorry, but I am lost in this implementation....
    How exactly do I tell the self.parentViewController what control will receive the new text value??
    Ooooops!! I'm the one who needs to be sorry, Tony:
    // from previous post
    - (void)setTextInParent:(NSString* textValue) {
    // assume that every possible parent controller has a "textbox" object
    // which is a member of some class that has a writable 'text' property
    [previousViewController setValue:textValue forKey:@"text"]; // <-- * Idiot alert *
    Looks like another one of my senior moments. As you pointed out, we need the value of the 'textBox' property before we can set the value of the 'text' property.
    To your question on how I am displaying the second view, it is called via
    [self presentModelViewController:screen animated:YES]
    from a button click event
    Cool. That means we already have the address of vc1 in the 'parentViewController' ivar of vc2, so we don't need to add the 'previousViewController' ivar shown in my example.
    So here's a corrected and maybe more relevant example--this one has been tested (Duh!), btw:
    - (IBAction)done {
    // get the currently selected string
    NSInteger row = [pickerView selectedRowInComponent:0];
    NSString *selection = [dataArray objectAtIndex:row];
    NSLog(@"%s: selection=%@", _func_, selection);
    // set text in textBox property of parent controller
    [self.parentViewController setValue:selection forKeyPath:@"textBox.text"];
    [self dismissModalViewControllerAnimated:YES];
    I have tried to implement this code
    [self.parentViewController setValue:21 forKey:@"test"];
    but it is generating an error stating
    passing argument 1 of 'setValue:forKey:' makes pointer from integer without a cast
    Yeah, referring to the doc, [setValue:forKey:|http://developer.apple.com/iphone/library/documentation/Cocoa /Reference/Foundation/Protocols/NSKeyValueCodingProtocol/Reference/Reference.html#//appleref/occ/instm/NSObject/setValue:forKey:] wants an id type (pointer to an object of any Obj-C class) for the first arg. Since 21 is an int, i.e. a scalar value, the compiler doesn't like it (and the runtime system would like it even less).
    However when you want to use KVC to set a scalar property, the methods are actually smart enough to extract an int if you provide a NSNumber object (see "Setting Attribute Values Using Key-Value Coding" under [Key-Value Coding Fundamentals|http://developer.apple.com/iphone/library/documentation/Cocoa/Conc eptual/KeyValueCoding/Concepts/BasicPrinciples.html#//apple_ref/doc/uid/20002170 ] in the Key-Value Coding Programming Guide). So if 'test' is an int ivar of the parent controller, something like this should work:
    [self.parentViewController setValue:[NSNumber numberWithInt:21] forKey:@"test"];
    Does that cover your questions? Sorry again for the bad code. Most of the examples I post are pasted directly from working, tested code, and I usually add a disclaimer if it's just something I keyed into the forum. But when I"m having a senior moment all bets are off.
    - Ray

  • Problem with getting specified pages for printing

    requested Sir,
    I am sanjeev, presently working with adobe indesign for publishing.
    i am working verious sets of master pages,
    now have a problem go gate specific pages for print in the same software.
    it shows saction name that i could not inditify
    give me the message
    (one or more of th pages specified are not valid page name)
    so how gate the valid name of pages?
    please slove my problem,
    thanks
    sanjeev

    If your document has more than one section (sections are used to restart page numbering and similar tasks) you can identify the pages using either the logical name, which uses the section prefix and the "logical' page number which is the number that appears in the page marker, or you can use the absolute page number, which is the position in the document. You can set your preferences to display section or absolute page numbering in the Pages panel, too.
    Unless you assigne some other prefix, sections are labeled as Section I, Section II and so on, and pages are designated by Section:Page# in the dialogs. If you want to use absolute page numbering in the dialog instead, you can add a + sign in front of the page number in the dialog: +6-+12 will be the sixth though twelf pages in your document, even if they are in different sections and carry the numbers vi - 4, for example.

  • 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.

  • Internet Explorer 11 will not open Embedded links or update application software., Open a blank page

    Hello,
    I have a customer with a brand new HP workstation and the same thing is happening here.
    Doing a search in Norton Toolbar and then clicking on one of the results it opens a new IE page but the page is completely blank, including the tab at the top to identify the page. Also when using a tax software program that is running from a web browser
    and clicking on an update it does the same thing.
    When logging onto Online Banking and if you click on a transaction to view a deposit or a check it will not open that item.
    The computer was installed 15 days ago. The first time we installed Office 2013 it asked to activate the product over the Internet. It would not connect to the Microsoft servers to validate the new product. OF course we had to call(phone) it in to validate.
    There are more examples of "On Line" things not working properly, these are just a few.
    Should I uninstall IE 11 and install IE10.  
    So Far I have disabled all add-ons, reset IE, Ran a full viruscan - Results Clean (N360). Customer does use the password feature in Norton 360, i beleive it is called the "Vault".
    I did uninstall IE 11 and Norton 360. Installed IE 11 on and the same results. Then I installed N360 back on.
    Any helpful suggestions  would be appreciated. Customer does not want Chrome installed>  
    Paul
    PAUL

    Hi,
    the first step in troubleshooting web browser issues is to test in noAddons mode.
    Start>Programs>Accessories>System Tools>Internet Explorer (noAddons)
    In your customers case you should also try navigating to the URL by typing it directly in the IE address bar.... (when asking internet related questions please include the complete address to any web pages you are having issues with).
    It seems plausible that in this case a configuration of the Nortons security suite or toolbar may be causing the issue.... Without an example link we cannot test the site in question. The Nortons toolbar is probably using google as a search results provider.
    To completely remove Norton 360 from the computer you need to download the N360 removal tool.
    https://support.norton.com/sp/en/us/home/current/solutions/kb20080710133834EN_EndUserProfile_en_us
    have your tried support.norton.com?
    you could try
    a Reset IE Settings... (Advanced tab of Internet Options)
    a Reset of IE security zone settings (Security tab of Internet Options>click "Reset all zones to default", then the Trusted sites icon, sites button....remove any domains from the trusted sites list.) (MSIE browsers have a security setting to prevent
    navigation into zones of lower integrity).
    Again... without a link to the website youre client is having issues with we can only guess.
    Rob^_^

  • How to replace pages in multiple PDF kits at once

    Here is what I have:
    Multiple documents I have merged into a single PDF. I'll call these a kit. I have about 200 kits. Each kit holds some documents that are unique to it and other documents which are universal to every kit.
    Here is what I do:
    When a document that is universal to each kit is updated or changed in any way I have been going into each and every kit, deleting the page(s) that document was associated with and inserting the updated document.
    Here is what I want to do:
    Have a script or a program or anything that will simplify this process. Is there any way to tell the batch of PDF kits to delete a section and replace it with a new document all at once?
    Any feedback is appreciated!

    It's probably possible, depending very much on the way you set up you "kits" and if it's possible to identify the pages you want to replace based on page number, content, or something similar.
    Also, you will need to have a version of Acrobat that has batch proccessing capabilities (typically the Pro versions).
    I can probably create such a script for you. Contact me by email or PM for more info.

Maybe you are looking for

  • Mail Won't Open (Just Installed OS 10.5)

    I installed OS 10.5 a few days ago. After doing that, everything worked for a few days. But now, I'm getting a bunch of issues. Most notably, I can't open Mail. It just bounces up and down for a bit. Then I get an error message: Symbol not found: __u

  • I just lost all songs on my Ipod, but my Itunes still has everything

    I plugged my Ipod into the computer today, usual as always, just to import over a few new CD's, but then I get this pop-up. "Songs on the iPod "Scott's iPod" cannot be synced because all of the playlists selected for syncing no longer exist" Confused

  • How to display file content in browser using servlet..? urgent!!!

    hello, i am building a application for which when a user logs in he will we redirected to page where he will have one link ,with this link a file is associated. when user press that link he should be able to see that particular file in internet brows

  • Simple forward page problem

    Hi all, I have simple forward page , only jump to else part can any one please told me why? Thank you     <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Empet Check</title> </head> <body> <%    String na

  • Teststand api to read sequences in a subsequence

    I would like to read the subsequence names in a subsequence file using the API from C# 2008. My top level sequence looks like this: MainSequence GroupSequence1 GroupSequence2 GroupSequence3 In the subsequence GroupSequence(n) I have the following seq