How to edit existing captured pages

Ok, I am going to try and describe this, and I appreciate your patience and thoughtfulness.  I am hoping to get the language correct on the aspects of the question.  I have an existing pages template which has several "captured" pages that are available to append to the active document by clicking on the "sections" button.  A drop down menu opens and I choose from that list what page I want to append to the existing document. I would like to know how to edit the contents of a few of those captured pages and continue using them as I have been.  I know I created this docment with the help of the Apple store staff about three years ago, but can't recall how to change this and would appreciate your assistance.

You do the editing and then capture the page again.

Similar Messages

  • Help! How do I edit existing iWeb pages from new computer?

    I'm up a creek. I have a ton of pages published through iWeb using my desktop iMac G4. Recently the hard drive died. Eventually I'll have the hard drive replaced and files extracted, but in the meantime I don't know how to access my iWeb pages. I'm using my husband's iBook G4 now.
    I didn't publish to folders, I just published right to our .mac account.
    Thanks!

    Your iWeb data is stored, not in your actual html files, but in a file called Domain.sites which is stored in your Home/Library/Application Support/iWeb folder. You should backup this file whenever you make big changes to your site, because if it gets lost or damaged, you will have to start all over. Sounds like this might be the case for you.
    For your future reference, I have an Automator app on my site that will help you backup your Domain file(s). http://iweb.aardvarkland.com

  • How to edit existing Spry Menu?

    I created a Spry Menu, but now that it's published (saved) I
    don't see how to edit it so I can easily add more menu items using
    DW's visual tool. All I can get to is the menu's CSS.
    How do I edit an existing Spry Menu to add/remove more items?
    I'm using CS3.

    I guess I dont understand. You can add or remove or change
    the menu in the
    properties panel. You can do all that in the design view as
    well, so I'm
    not sure what I am missing.
    Is the page available to view?
    "morkafur" <[email protected]> wrote in
    message
    news:goja98$mho$[email protected]..
    >I guess I'm not being clear. Sorry.
    >
    > What I'm saying is that when I click "anywhere in the
    menu" or the border
    > around it, I don't get the display where I can click the
    "+" to add a menu
    > item.
    >
    > For example, I have a menu item called "Capabilities".
    If I click that
    > menu
    > item I see properties for it, no problem. I get this.
    >
    > What I'm trying to do, however, is get back the the Spry
    menu item
    > DESIGNER
    > where I can add/remove menu items graphically.
    >
    > Regardless of where I click, that designer does not
    re-appear.
    >
    > If I click the Spry menu item on the toolbar, CS3
    creates a new menu, but
    > doesn't let me edit (using the menu designer) the
    existing one.
    >
    > -- M
    >

  • How to Edit Existing  PDF

    Hi... i am try to edit existing pdf in itext any one can help me this sending code.......

    Using Itext i want to remove some content in the PDF
    This is my code i want to Edit or Remove some text in the Pdf
    package view;
    //import com.itextpdf.text.BaseColor;
    //import com.itextpdf.text.DocumentException;
    //import com.itextpdf.text.pdf.PdfContentByte;
    //import com.itextpdf.text.pdf.PdfCopyFields;
    //import com.itextpdf.text.pdf.PdfStamper;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfCopy;
    import com.lowagie.text.pdf.PdfCopyFields;
    import com.lowagie.text.pdf.PdfDictionary;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfNumber;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfStamper;
    import java.awt.Color;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    public class SplitingFlat {
        public static void main(String[] args) {
            String fileName =
                "D://OMR//OMRpdf//FlatFlies//EligibilityLists_Flat.pdf";
            splitPDFFile(fileName);
            rotateFlatPDF();
            markPdf();
            mergeFlatPdf();
        public static List splitPDFFile(String fileName) {
            List list = new ArrayList();
            int startPageNo[] =
            { 1, 29, 47, 67, 85, 133, 179, 197, 225, 243, 277, 295, 319, 337, 365,
              393, 419, 439, 471, 491, 513 };
            int endPageNo[] =
            { 28, 46, 66, 84, 132, 178, 196, 224, 242, 276, 294, 318, 336, 364,
              392, 418, 438, 470, 490, 512, 532 };
            try { /**
                     * Read the input PDF file
                PdfReader reader = new PdfReader(fileName);
                int totalPages = reader.getNumberOfPages();
                int split = 0;
                for (int i = 0; i < endPageNo.length; i++) {
                    for (int pageNum = 1; pageNum <= totalPages;
                         pageNum += endPageNo[i]) {
                        if (pageNum == 1) {
                            pageNum = startPageNo[i];
                        split++;
                        String outFile =
                            "D://OMR//OMRpdf//flat//split//Flat-split-" + split +
                            ".pdf";
                        Document document =
                            new Document(reader.getPageSizeWithRotation(1));
                        PdfCopy writer =
                            new PdfCopy(document, new FileOutputStream(outFile));
                        document.open();
                        int tempPageCount = 0;
                        int number = endPageNo[i] - pageNum;
                        for (int offset = 0;
                             offset < number && (pageNum + offset) <= totalPages;
                             offset++) {
                            PdfImportedPage page =
                                writer.getImportedPage(reader, pageNum + offset);
                            writer.addPage(page);
                            tempPageCount++;
                        document.close();
                        writer.close();
                        list.add(outFile);
                        break;
            } catch (Exception e) {
                e.printStackTrace();
            return list;
        private static void rotateFlatPDF() {
            String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\split\\";
            int split = 1;
            File pdfFolder = new File(pdfFolderPath);
            if (pdfFolder != null && pdfFolder.isDirectory()) {
                String[] pdfFileNames = pdfFolder.list();
                if (pdfFileNames != null && pdfFileNames.length > 0) {
                    int documentNumber = 0;
                    for (String pdfFileName : pdfFileNames) {
                        File pdfFile =
                            new File(pdfFolderPath + File.separator + pdfFileName);
                        if (pdfFile.isFile()) {
                            documentNumber++;
                            PdfReader pdfReader;
                            String opFile =
                                "D:\\OMR\\OMRpdf\\flat\\rotate\\" + "DocumentSplitRotate-" +
                                split + ".pdf";
                            try {
                                pdfReader =
                                        new PdfReader(pdfFolderPath + File.separator +
                                                      pdfFileName);
                                int n = pdfReader.getNumberOfPages();
                                int rot;
                                PdfDictionary pageDict;
                                for (int i = 1; i <= n; i++) {
                                    rot = pdfReader.getPageRotation(i);
                                    pageDict = pdfReader.getPageN(i);
                                    pageDict.put(PdfName.ROTATE,
                                                 new PdfNumber(rot - 90));
                                PdfStamper stamper =
                                    new PdfStamper(pdfReader, new FileOutputStream(opFile));
                                stamper.close();
                                pdfReader.close();
                                split++;
                            } catch (IOException e) {
                            } catch (DocumentException e) {
        public static void markPdf() {
            try {
                //Flat
                String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\rotate";
                File pdfFolder = new File(pdfFolderPath);
                if (pdfFolder != null && pdfFolder.isDirectory()) {
                    String[] pdfFileNames = pdfFolder.list();
                    if (pdfFileNames != null && pdfFileNames.length > 0) {
                        int documentNumber = 0;
                        for (String pdfFileName : pdfFileNames) {
                            File pdfFile =
                                new File(pdfFolderPath + File.separator +
                                         pdfFileName);
                            if (pdfFile.isFile()) {
                                documentNumber++;
                                PdfReader pdfReader =
                                    new PdfReader(pdfFolderPath + File.separator +
                                                  pdfFileName);
                                int pageCount = pdfReader.getNumberOfPages();
                                    String outputFileName =
        "D:\\OMR\\OMRpdf\\flat\\mark\\" +File.separator +pdfFileName.substring(0, pdfFileName.lastIndexOf(".pdf")) +
                                "_OMR_Marked.pdf";
                                FileOutputStream fileOutputStream =
                                new FileOutputStream(outputFileName);
                                PdfStamper pdfStamper =
                                new PdfStamper(pdfReader,
                                               fileOutputStream);
                                for (int i = 1; i <= pageCount; i++) {
                                PdfContentByte cb =
                                    pdfStamper.getOverContent(i);
                                cb.beginText();
                                cb.setColorStroke(Color.RED);
                                if (OMRMarkingUtilityFlatfold.isFlatZone1MarkingEnabled(documentNumber,
                                                                                i))
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb,
                                                                      1, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone2MarkingEnabled(documentNumber,
                                                                                i)) {
                                    PdfContentByte cb2 =
                                        pdfStamper.getOverContent(pageCount);
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb2,
                                                                      2, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone3MarkingEnabled(documentNumber,
                                                                                i)) {
                                    PdfContentByte cb3 =
                                        pdfStamper.getOverContent(1);
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb3,
                                                                      3, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone4MarkingEnabled(documentNumber,
                                                                                i))
                                    cb.endText();
                                pdfStamper.close();
                                fileOutputStream.close();
            catch (IOException ioe) {
                ioe.printStackTrace();
            } catch (DocumentException de) {
                de.printStackTrace();
        private static void mergeFlatPdf() {
            try {
                PdfCopyFields copy =
                    new PdfCopyFields(new FileOutputStream("D:\\OMR\\OMRpdf\\flat\\merge\\output1.pdf"));
                String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\mark\\";
                File pdfFolder = new File(pdfFolderPath);
                if (pdfFolder != null && pdfFolder.isDirectory()) {
                    String[] pdfFileNames = pdfFolder.list();
                    if (pdfFileNames != null && pdfFileNames.length > 0) {
                        for (String pdfFileName : pdfFileNames) {
                            copy.addDocument(new PdfReader(pdfFolderPath +
                                                           pdfFileName));
                copy.close();
            } catch (IOException e) {
            } catch (DocumentException e) {
    package view;
    import com.lowagie.text.pdf.PdfContentByte;
    import org.apache.log4j.Logger;
    public class OMRMarkingUtilityFlatfold {
        private static final Logger logger =
            Logger.getLogger(OMRMarkingUtilityFlatfold.class);
        //public static final int Flat_Zone_X_Position     = 14;    // 0.1875 inches
        public static final int Flat_OMR_Mark_Thickness = 1; // 0.01   inches
        public static final int Flat_OMR_Mark_Length = 29; // 0.3    inches
        public OMRMarkingUtilityFlatfold() {
            super();
        public static boolean isFlatZone1MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone1 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone1;
        public static boolean isFlatZone2MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone2 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone2;
        public static boolean isFlatZone3MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone3 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone3;
        public static boolean isFlatZone4MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone4 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone4;
        public static int getFlat_Zone_X_Position() {
            return getFlat_Zone_X_Position();
        public static int getFlat_Zone3YPosition() {
            return getFlat_Zone3YPosition();
        public static int getFlat_Zone4YPosition() {
            return getFlat_Zone4YPosition();
        public static void drawFlatOMRMark(PdfContentByte cb, int zone,
                                           int pageNumber, int pageCount) {
            float x;
            float y;
            System.out.println(pageNumber);
            if (pageNumber == 1) {
                x = 14;
            } else {
                x = 7;
            switch (zone) {
            case 1:
                if (pageNumber == 1)
                    y = 689;
                else {
                    y = 688;
                break;
            case 2:
                y = 679;
                break;
            case 3:
                x = 14;
                y = 670;
                break;
            case 4:
                if (pageNumber == 1)
                    y = 661;
                else {
                    y = 660;
                break;
            default:
                y = 0;
                break;
            cb.moveTo(x, y);
            cb.lineTo(x + Flat_OMR_Mark_Length, y);
            cb.stroke();

  • How to edit podcast title page?

    I'm not seeing how to edit the title line on the podcast page here
    www.jimsavage.net
    it's acting like a hyperlink that's set to white text (so you cant see it, yellow scrollover.
    Also is there supposed to be a "read more" option at end of text on this page like on the blog title page?
    Thanks

    Just make the changes in the feed an reupload it. It will normally take 1-2 days - sometimes longer - for new episodes and other information changes to appear.
    If you want to change the picture you should give the new picture a new filename and change the feed accordingly: iTunes caches the image and if you change the picture without changing the filename it's unlikely iTunes will realise it's changed. If you're using an online service to make your podcast, as seems to be the case, you may not be able to change the filename so all you can do it wait and hope the change is picked up eventually.

  • How to resize existing magazine page size to 320x480

    Hi
    I would like to resize an existing magazine page to the size of an iPhone 320*480
    When we set the page size of a new document (File-document-page size) we can change the width and the height.
    But if I have to resize an existing magazine page in InDesign to iphone size, how do I do?
    Also the text and the images should be placed correctly, and the page layout should look the same when i resize.
    If  I resize them and then export, the XML created should be the size of iPhone (this is what I want to achieve)
    Is this possible?
    Please help!
    Thanks in advance!
    Pearl I

    Hello Bob
    Thanks for the quick reply!
    Looks like it is possible but time consuming...
    I was wondering if something could be done with help of the "master page"
    If default settings are set to master page, can it be replicated to the
    child master pages.
    Not sure if I was clear in conveying.
    Pearl I

  • How to edit existing pdf's from RoboHelp 8

    Hi,
    Our company had been using an old version of RH5 for many years, and we've recently upgraded to RH8 to manage our company Infocenter (knowledge repository). We have many pdf files within this repository.
    Before upgrading to RH8, we would edit pdf files using Adobe Writer very easily. However, after upgrading to RH8 and installing it on a brand new computer, our attempts to install Adobe Writer failed with a message saying there is a more functional product already installed on the workstation. No other Adobe products apart from RH8 are currently installed.
    I think this means that RH8 can edit pdf files with no additional software, can anyone confirm? And if so, how do we go about doing it? (For now I only need to know how to edit pdf's, not create them.)
    Thanks, and my apologies in advance if this was covered in another thread, but I couldn't find any information.
    T.

    I suspect that Acrobat Writer is seeing the PDF writer that you installed with RoboHelp as being the later version.
    I don't use that as I have the full version of Acrobat so I cannot check but I don't believe you can use the lighter version that comes with RoboHelp to edit PDFs.
    Thus you can write PDFs with what you have but I suspect you cannot directly edit. You would need Acrobat Pro for that and buying the Technical Communication Suite would have been a better option.
    Do you have the source files that created those PDFs? If so you can edit those and use the PDF writer that shipped with RH8 to create new PDFs.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to edit existing site in iDisk/web/site/iWeb ??

    I have a site saved on my iDisk that I had previously deleted from the iWeb program on my laptop. Now I would like to go in and edit it and I cannot figure out how to get it back into my iWeb on my laptop. Any thoughts??

    You cannot do this. If the site has been deleted from iWeb and you do not have a backup of the Domain file that exists at username/Library/Application Support/iWeb before you deleted the site, then you must restart from scratch.
    You can use the old site to cut and paste content back into iWeb to create a new site.
    Michael
    iMac 20" Intel Core Duo 2GHz

  • How to personalize existing application pages

    hi, i have a requirement where i need to extend the existing pages which is in APPS, i tried to get the all the files which are deployed in apps, and converted all the class files to java, but i am not able to proceed with this procedure can any one give me the details steps of how to do personalization and extending the pages in apps, can we do this in jdeveloper or should i need to use any other procedure
    please help me out, its very urgent....

    Babu,
    You are following the correct approach. Depending on the page or module, it might take some time to setup the initial Jdev project. What is stopping you now from proceeding further?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to edit existing theme drop zones ?

    I have created an opening theme with 3 drop zones. Have saved the project file. All is ok at this point.
    Now, later, I want to edit / change one of the items/content in the drop zones. How do I recall/ edit the content of the existing drop zones for this existing theme in my time line ?

    Jeff,
    Once the theme is rendered the only way to change it is to redo it. The whole thing.
    Matt

  • How to edit existing gif file using photoshop (CS2)

    Hello Forum,
    I have some gif images that I have used for creating tabs on a
    web page. I downloaded these images from somewhere, and did not create them
    myself. I would like to change the color of these gif files.
    They are a nice image, with a gradient applied at the top, and I have a left side gif for the tab as well as an "over" image set for the tab(s) as well.
    I use the images in a css file to display the tabs on a web page.
    The gradient is across the top of the tab, which is a lighter color, almost going to white, and the rest of the tab is a light blue, with left and right top a slight rounded corner. I would like to preserve the gradient appearance, but change the light blue theme to an almost black (#333333) color.
    How can I do this in photoshop?
    Thanks,
    eholz1

    Hi All
    I would like to create an action in CS2 to resize an image to e.g 600 x ? pixels and then save for web at max 149kb .
    Any clues? I've tried a few different files of different file sizes?(possible cause here) and always end up with different results when using my actions or the image processor.
    Is this at all possibleto accomplish in a single step?
    Let me elaborate more. On a particular forum where post we are limited to 600 x? pixels and file size no greater than 150 kb. When creating this action in CS2 with different file sizes one lands up with files ranging from 70kb (not as good for viewing) to 149kb(perfect size)or 357kb?(way too big). I'd like to have as close to <150kb for ALL files in the "action"
    Is this possible without getting into scripting?
    Thanks
    Don

  • How to edit Existing Search Criteria

    Hi Experts,
    In my ADF application already I have Search Criteria, for this existing I have to add two more fields say 'LOB' and 'CustomerName' as a Dropdown.
    The following LOB values should be available in dropdown and these LOB values should be accessed from DB Table.
    Upon selection of LOB value as ‘SNI’ ,customer name dropdown is displayed and the customer names related to that LOB are populated in the dropdown.
    View Object is created on Read only access through SQL_Query.
    please can anyone suggest me for the same??
    thanks
    Santosh
    Edited by: Santosh M E on Jan 4, 2012 10:16 PM

    For this, you need to create LOV for LOB and a dependent LOV for customer names.
    Ex. you create a new VO for LOB - select LOB from ...... and another VO for customers - select cust_name from ..... where lob = :lob (this is fed by the LOB lov)
    Once you do this in the model, your query component will behave as you want.
    You can watch the video of the Shay's cascaded lov building tutorial here - http://www.youtube.com/watch?v=nXwL2_RP7AQ
    Make sure that you set dependency of customer name on LOB in the properties
    Edited by: asatyana on Jan 4, 2012 11:32 PM

  • How to edit webvpn login page with 7.2 version in ASA5510?

    Dear guys,
    As a solution for business, I have deployed webvpn with 7.2 version in ASA5510(Version 8.0 cannot be used in this case). Could you share some experiences in customizating login page of webvpn manually(not use ASDM)? for example, if I want to add some system tips or links in login page, how to do?
    Appreciate your kindly help and suggestion.
    Best Regards,
    David Wu

    Customizing login page of webvpn with 7.2 version of ASA is easy to be done and the following Url contains the dcument for customizing the webvpn login page for ASA version 7.2:
    http://www.cisco.com/en/US/docs/security/asa/asa72/configuration/guide/webvpn.html#wp1031868
    This document contains the step-by-step procedure for customizing the login page.

  • How to edit a captured custom .wim file?

    Hi folks,
    I am in process of gaining experience with capturing and deploying Windows 7 SP1 from our WDS server using unattend file.
    Everything is working, since we installed our applications, ran sysprep, and captured a custom .wim file.
    Now we deploy it using unattend file and everything works.
    I am trying to figure out if there is a best practice here for adding applications to this new custom .wim file?
    I've tried deploying this new image to a unit, installed app, and run sysprep but fails with this error:
    A fatal error occurred while trying to sysprep the machine.
    I am thinking this has to do with multiple syspreps or something?
    I am trying to avoid having to use a default install.wim and app install automation with MDT or something like that.  We are strict to WDS only right now.
    Appreciate any comments,
    Thanks!  romatlo

    Offline servicing allows for adding/removing drivers and updates in MSU/CAB files.
    I do not use MDT either. If you want to "install" a new application to an image that is "out of arms" then you will need to install it after deployment. If your image has an answer file, you can mount your image. Then copy the installation files to it or
    you can keep it on a network share. Then in the answer file, you can put in the commands to install it using FirstLogonCommands.
    I typically like to reference a .cmd file in my unattend that I can add/remove commands to finalized images. So if a client wants to install a new program but doesn't want to recreate the image, then I can have it installed that way.
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <Order>1</Order>
    <Description>Set up Service Account</Description>
    <CommandLine>cmd /C start /wait c:\folder\FirstLog.cmd</CommandLine>
    </SynchronousCommand>
    </FirstLogonCommands>

  • How to edit a web page in Acrobat 9???

    Hello,
    I would like to create a PDF from my website, but do not like the way the web page breaks up when I download it into Acrobat Pro 9. I don't want to change the way the page looks online, just the way it will print out if a client downloads the PDF. Acrobat doesn't seem to allow me to go into the page source to add breaks, or have a command for adding page breaks,  to even out the spacing so that it prints the way I want. Any suggestions?
    Thanks
    Rich

    Sorry but that suggestion doesn't help.I want to add a page break in the web page, in Acrobat,  without having to go in and redesign each page in notepad, rewriting  the html code , so that my scrolling webpage has a page break where I choose as it goes from one page to the next. I don't want it to print a full page of text on the 1st page as that breaks up information I want to keep grouped together. Here;'s the site: http://www.iditarodtours.com/iditarod.htm I want to keep each tour itinerary seperate and together.
    Thanks

Maybe you are looking for

  • Unable to View Large Files

    We're having a recurring issue where users start getting 'cannot access the file' error messages when trying to view documents in document libraries, it'll start with the larger files (over 10mb) and spread eventually to all documents in all librarie

  • Nokia 6230i and Mercedes car kit

    Help. My phone is no longer working in my mercedes command car kit. If I fiddle with it it does intermittently pick up but does not charge it and often does not work properly eg unable to close a call. I've asked Mercedes to check the kit and apparen

  • HTTPService URL from configuration file?

    Hello, I have a need/requirement to use some type of configuration file for my FLEX builds. Right now I manually build my FLEX app. It would be nice to configure the URL for all HTTPService objects in an XML file, but I am unsure where that file woul

  • Motion 5 crashes when trying to export movie

    I'm having troubles with motion 5 exporting a composition. I bought it 10 days ago, and since the first day I couldn't use the option share/Export Movie or Export selection to Movie. With both options the application crashes immediately.I also tried

  • My new macbook pro retina display has loose keys on keyboard

    i purchased a new macbook pro 13" retina display and upon unboxing noticed a few keys were loose and flimsy.i contacted apple south africa and they are repairing it but my disappointment started with the bad customer service i received and the long t