Delete the pages 5.6.2 table but no content

How can I delete a Table but keep the content to a single list, I currently have 3 columns in the table? I think used to be able to do in previous versions in Format but it's gone.

Click on the Table to select > create a Textbox > paste into this

This works because the Tables can not be placed in the text boxes in the 5 Pages, unlike in Pages ' 09, as well as the content is pasted.

If you want a more productive workflow, use the Pages ' 09.

Peter

Tags: iWork

Similar Questions

  • I've just updated Adobe Professional, but I'm not able to add, to delete the pages more. Before the update, it wasn't a problem. I missed something?

    I've just updated Adobe Professional, but I'm not able to add, to delete the pages more. Before the update, it wasn't a problem. I missed something?

    Are you sure that you're not open your files with the free player instead of using Acrobat? And please do not post the same question multiple times. Also, try to be more specific. "I am not able" can mean many different things.

  • one of the icons at the top of my software is missing.   I have those for: open the safe, files, print, share files, customize, reminder, BUT THE ONE for SOULIGNANT A WORD or EXPRESSION IS MISSING, then delete the page, etc.  I have Acrobat Pro 10.  How c

    one of the icons at the top of my software is missing.   I have those for: open the safe, files, print, share files, customize, reminder, BUT THE ONE for SOULIGNANT A WORD or EXPRESSION IS MISSING, then delete the page, etc.  I have Acrobat Pro 10.  How to get back the icon and the missing function?  I would just reinstall, but I get the message that I don't have a legal copy of the program.  However, I bought and paid for it.  Thank you very much for your help!  Carolyn

    Add them to your quick tools. Go help > Quick of the tool.

    I've added these tools to my quick tools, as follows:

    Also see this article: Adobe Acrobat X Pro * databases the workspace

  • Help with excel import and delete the page script

    Hello. I will try to make it as simple as possible. I have some data from excel (saved as delimited by tabs) that I need to import in a 5 PDF page. I use the script below to import, and it works fine. All import fields and records the individual (one for each record) PDF. However, I need to extend this functionality by removing some pages before it saves the document by looking at the different boxes. The code below is what I use to import the records.

    // specify the filename of the data file
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text file containing the data
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    var err = 0;
    var idx = 0;
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2) 
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf"); // saves the file
            idx++;
        }
    }
    

    As I said before you import works surprisingly well.

    My PDF consists of 5 pages (info-registration, p1 = Dir-contract = p0, p2 = contract ndarp-brand, p3 = takes-contract, p4 = agreement must be brand). My idea is that on the import of data, the script will look at a few check boxes and determine which contracts to remove on the PDF and then save. I wrote the syntax of which, in my view, what it should look like. I'm not a programmer and know just a little bit. I looked through the documentation and this is what I came with. I don't know how to combine to work. Here's the code I came up with that.

    var dir = this.getField("Associate Director"); // checkbox
    var aldir = this.getField("Alumni Director"); // checkbox
    
    var fac = this.getField("Facilitator"); // checkbox
    var alfac = this.getField("Alumni Facilitator"); // checkbox
    
    var oyb = this.getField("Optimize Your Brain"); //checkbox
    var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
    
    // Below are all the possible training options.
    if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:1, nEnd:2})
    }
    else (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:1, nEnd:2})
    }
    

    How to combine these two so that I can create a document temp import my data, check the boxes to check off and delete the appropriate pages and save the file and then go to the next record? I got the first part done. It imports large and has the right, but I don't know what to do next. Thanks for any help!

    Or y at - it another way to do this?


    Michael

    Wow. Ok. I had it works beautifully. There was a lot of trial and error. Because the script as it was would have, would open the original PDF, delete the pages needed, then save the file. While it would be to go to the next record is missing pages in PDF and bomb to open. I hunted and searched for a way to do this. I found "this.insertPages" in the documentation. Finally, what worked was so move the "save under" in the service and put it under every variation of check. So now when checking the boxes, he performs the check, removes the mandatory pages, stops, insertions of back in deleted pages from the original file, leave the service and finally goes to the next record.

    Here is my final script:

    // This code looks at an excel (tab delimited) file, imports the records into a PDF form 10 Pages long.
    // Then checks a series of checkboxes and deletes the pages that aren't associated with first page.
    // After it deletes these pages it reinserts the deleted pages so it can do the checks for the next record in the (tab delimited) file.
    
    // variables for importing excel data
    var err = 0;
    var idx = 0;
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    //Checking a bank of 6 checkboxes and determine which pages need to be deleted, save the file, and the insearch the deleted pages again.
    function seekandDestroy() {
        if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
    }
    
    // Imports records does the above function then go the next record, all the while doing error reporting.
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2)
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            var dir = this.getField("Associate Director"); // checkbox
            var aldir = this.getField("Alumni Associate Director"); // checkbox
            var fac = this.getField("Facilitator"); // checkbox
            var alfac = this.getField("Alumni Facilitator"); // checkbox
            var oyb = this.getField("Optimize Your Brain Site Coordinator"); //checkbox
            var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
            seekandDestroy(dir, aldir, fac, alfac, oyb, poyb); //performs the above function
            idx++; //goes to next record
        }
    }
    
  • I try to install lightroom cc, it loads just lightroom 5.7.1... I deleted the LR5 completely and reinstalled LRcc but just the LR5 charges, how can I get CC?

    I try to install lightroom cc, it loads just lightroom 5.7.1... I deleted the LR5 completely and reinstalled LRcc but just the LR5 charges, how can I get CC?

    This could mean that Lightroom CC is not supported on your machine.

    The operating system you have?
    Is - this machine is 64 bit or 32 bit?

    CC of Lightroom is supported only on 64-bit machines: system requirements for Photoshop Lightroom for Mac OS and Windows

  • In the recent update of Adobe Reader, how can I go and delete the pages? Thank you very much!

    In the recent update of Adobe Reader, how can I go and delete the pages?

    I am struggling with the new simplified design.

    Any help is appreciated.

    Thank you!

    Adobe Reader cannot remove pages.

  • (New): the page is set to "mm" but appearing always in 'thumb '! Why?

    (New): the page is set to "mm" but appearing always in 'thumb '! Why?

    I wanted the part "preview" of dialogue 'print' ' in 'mm' box, but sounds don't not answer the rendering settings and always appearing in 'thumb '! Why?

    Why this simple setting is very difficult in the Acrobat?

    Thank you for the help,

    Best

    Jamal

    Clip_608.jpg

    Clip_609.jpg

    Change units in the preferences of Adobe Acrobat and not in the print dialog box.

  • Cannot delete the Pages?

    I have a file in indesign cs4 is 5 pages long. It contained there on only 2 of these pages; I wish I have created these pages in the past and then discarded the content on them. I can't get rid of the extra pages.

    When I try to delete them, I get this dialog box: "the affected page contains objects. Delete the page anyway? "By clicking Yes, the page disappears to reappear a few seconds later. Sometimes, the program crashes.

    I haved trashed my preferences, rebooted and do not know what is causing this problem.

    (I use a Mac 10.5.8)

    Any help? Thank you.

    Looks like you have the active smart text reformatting, and there is a thread that rebuilds. Make sure that there is no text that is in excess or otherwise wants to flow to another page.

  • I installed 5.6.2 Pages but all my old documents will open with ' 08 how can I delete the Pages ' 08 and update all the old documents

    I installed 5.6.2 Pages but all my old documents will open with ' 08 v.3.03 How can I remove the Pages ' 08 and update all the old documents

    5 pages is located in your Applications folder.

    Pages ' 08 is located in your Applications/iWork ' 08 folder.

    If you open your old documents Pages ' 08 with 5 Pages it will convert and if not damage, remove a large number of useful features.

    You will probably regret upgrading to 5 Pages which Apple has made extremely inconsistent and keeps changing its file format.

    Peter

  • YAhoo intrupts wide of my research even if it is deselected and delete the page prefreneces. and the search bar.

    When I search something on Google finds them, I open the pages requested. it flashes the right page then Yahoo stops and takes me to a page of security
    browser.contentHandlers.types.0.uri; https://Add.my.Yahoo.com/RSS?URL=%s

    Im not a subscriber of yahoo. I have never used the site. I think that his atrocious.

    How can I fix this to get my Google to work right
    Im running firefox 43.ob2
    on a MAcBookPro 2012 model...

    Thank you for sharing the details of your browser, that appear to the right of your message in Question details > Details of the system more. If you check your extensions, you can see that you're infected with "Searchme" and you must delete it.

    Open the page modules using either:

    • CMD + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click Extensions. Then on the side right, remove or disable Searchme. Keep in mind that all extensions are optional and none is included with Firefox when you get it first.

    Often, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    Is that what helps you regain control?

    This could be the tip of an iceberg of malware. When you install free software, you often get the options grouped under silence. I don't know the best way to 'clean up' a Mac of these elements, but you may want to consider the issue.

  • I've just updated to Version 2015.009.20069 and have an annual plan for Acrobat Pro DC whhcih is due to expitre in December.  I am now unable to change PDF files, in particlaur I want to delete a page in a document cannot but.  Can you advise please?

    I've just updated to Version 2015.009.20069 in the last day or two and have an annual plan for Acrobat DC Pro that is about to expire in December.  I am now unable to change PDF files, in particular I want to delete a page in a document but cannot.  Can you advise please?

    What "update you"?

    Did you install Adobe Acrobat Reader to thing of error that you were "updated" your version of Acrobat? If so, you should always have Acrobat on your system. Open and use the file > Open to open your pdf files.

    And if it works, you need to change your file associations to use Acrobat to open PDFs instead of the free software Acrobat Reader.

  • How to upgrade only the page numbers from a table of contents in Indesign CS6?

    Hello!

    Help, please! I make a medical book with more then 1300 pages and about 40 different table of contents.

    I want to update only the page numbers on all the table of contents. But I don't see the option to update the table of contents.

    I've seen on other forums that it is a very old and familiar problem. Do you have Adobe already fixed it?

    Nothing has changed with the function table of contents. If you update a table of contents using the standard method of the table of contents, the complete table of contents are updated.

    You can get the page numbers only updates manually by creating your table of contents by using cross-references.

  • I can't get the page numbers in my table of contents to update when I update the book.


    I use Framemaker 11 and I have two tables of contents in my book: one in English and French. Each table of contents to links to various documents in the same book. The reference page for each table of contents is defined and properly displays the positions 1 and 2, I said that it appears, but numbers not updated when the contents of my document files change to another page. I checked the settings of conditional text in my document files; they are correct. When I update the book, I choose to update the numbers, all the cross-references, all text inserts, OLE links, generate a Table of contents, lists, and indexes. What I am doing wrong? Thank you.

    If they are not knocked down, then they are certainly not generated files. See the example in the help of FM11: http://help.adobe.com/en_US/FrameMaker/11.0/Using/images/bk_hier_books.png

    The 'K' is a TOC file that FM recognizes a generated file.

    Because you have created your table of the contents of the French with the help of another structure of the book, you could import reference this TOC file in another file of FM (for example to create an inset text) in the main book you want. However, you need to make updates in two steps. First update the French book to revise the table of contents. Then update the main book to get the rest of the correct pages (and given that the table of french contents are imported by reference, FM always uses the most recent version).

  • Delete the last column in a table

    Hey there,

    is it possible that a script selects the last column of a table (there are tables with columns 3 and 4 on a page) and deletes it?

    And is it possible that this is happening on a specific layer?

    Greetings

    Hi, ELP,.

    Use the code below:

    //remove column
    var myTable = app.activeDocument.stories.everyItem().tables.everyItem().columns[-1].remove();
    
    //remove column with layer
    var myTable = app.activeDocument.stories.everyItem().tables.everyItem().getElements();
    alert(myTable.length)
    
    for(i=0; i
    

    Concerning

    Siraj

  • AppleScript to delete the page and the selected layer

    Hello

    This is part of a larger script, but this is where I'm having the problem. If all goes well, very easy to solve, but makes me crazy.

    I want to delete a text box on the current page only, and only a single layer.

    I can operate on a single layer, but all pages. And on a single page, but all the layers.

    Could someone please help me to write the line to select the active page and layer "slug".

    Thank you

    Matt

    say application "Adobe InDesign CS5.

    Activate

    set myDocument for the active document

    set myActivePage to the page active of the window active

    the value myLayer to layer "Slug" of myDocument

    myLayer say

    say myActivePage

           Ungroup groups

    delete ( each block of text that contains "" remove me ")

    end say

    end say

    end say

    You want something like:

    delete (each block of text that contains "" remove me "and point layer is myLayer)

Maybe you are looking for

  • lost my Inbox and all folders

    My Inbox and the folders are lost from view. When I left TB and reopen, the Inbox appears for a nanosecond and then disappear. Currently, the only file that appears is project. I can see reception and records through several screens of dialogue when

  • Satellite Pro 6100 slowy starting after crashing

    My Satellite Pro crashed recently and since then has worked ridiculously slowly, not only in windows, but start upward. Any ideas on what I can check to see what the problem is and we hope to resolve this?

  • Permissions of Vista won't let me delete a folder

    I am trying to delete the old folder One Care and get access denied.  I changed the permissions without result.  Any suggestions?

  • How can I darken the slider of the scroll bar

    I am referring to the slider on the scroll bar.  I was throughout the appearance settings and cannot find anywhere to do it.  I'd like the cursor to be more dark.  I tried several themes and it doesn't change the shade is slightly darker than the scr

  • How to manage actions

    Hello I wonder how to handle gesture events, such as sliding your finger or the pinch gesture. Everyone already knows that? I tried but I could not find this information. Thank you -----------------