Completely delete pages

Pages 5.0 is completely useless to me due to the number of critical features removed.  I have restored the iWork 09 version but the app store continues to try to download the new version.  How can I stop this?

You have not told us which version of Pages.
If you have saved it, you have to switch to Finder and Trash the file there.
You do not manage files in Pages. All you can do is change its name.
I can do much more in the Open dialog, including delete the file, but that is because I have Default Folder installed.
Ptere

Similar Messages

  • I publish a 41mb newsletter monthly into interactive pdf. It always becomes a file size of 4mb, 10% of original, when I save to pdf. This month my newsletter is 41mb and it drops to 11mb, 25% of original. I have re-sized all pictures, deleted pages separa

    I publish a 41mb InDesign newsletter monthly into interactive pdf. It always becomes a file size of 4mb, 10% of original, when I save to pdf. This month my newsletter is 41mb and it drops to 11mb, 25% of original. I have re-sized all pictures, deleted pages separately, have gotten the file size down to 16mb and it drops to 7mb, 45% of original.
    I have gone back and saved Feb and March and it saves to 10% of original, as it did before, and I use the same mechanism to save now.
    I have gone to Acrobat Pro and optimized down to 8.8mb, but the quality is not acceptable.
    What other variable is there that I haven't discovered?

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • I deleted pages because it would not run and now I can not reinstall it. It says the program is installed even though I deleted it. How do I reinstall it?

    I tried to upgrade to latest version. After complete it kept telling me I had to upgrade to the new version when I tried to open existing docs. But whenever I went to app store to upgrade it just showed it a installed and would not launch. Finally I just deleted pages but it continues to insist the program is installed so I am stuck. How do I get out of this circular trap?

    Hi dmomoney24  ,
    Kindly refer : CC desktop lists applications as "Up to Date" when not installed.
    Please revert if the problem persists.
    Thanks,
    Atul Saini

  • VB code for fitting graphics, deleting pages, updating TOC

    Thanks again to all who helped me to find the object model info and other specifics I needed for completing my VB project. I'm not sure if this will be of any use to those who helped me, but at least I can "pay it forward".
    The following code snippets are from my live project, with a bunch of ancillary code stripped away. I think I included everything needed for these three bits of functionality (fit graphics proportionally to frames, delete pages, update TOC), but if I accidentally left out something important, let me know (respond to this thread, as I'm not able to monitor all the threads). Note that in some cases, the code expects values in variables to be set outside of this code. I'll trust that anyone using this code can do that, and I've noted where this takes place.
    My document uses only single pages, not facing-page spreads, so code referencing spreads works for me--but if you're using actual spreads, you may need to change the code to reference pages instead of spreads. Please bear in mind, I'm pretty new to ID, so if I misunderstood how pages and spreads (or anything else) work, please be kind. It's working for me, and hopefully will for others.
    Be advised that deleting spreads (and possibly even fitting graphics) with LOCKED content (in the case of deleting, if ANYTHING on the page is locked) will cause InDesign to CRASH. If you have locked content on your pages, unlock it first either manually or through code (I have code for that as well, if anyone needs it).
    The code for deleting spreads allows you to specify the spreads to delete by LABEL. I haven't figured out (anyone?) how to set labels through ID itself, but I was able to do it in code.
    Lastly, please be advised that the forum may not properly indent or format the code. If it doesn't look pretty, it's not my doing. :)
    VB Code follows:
    Dim InDesign As Object
    Dim InDesignDocument As Object
    Dim LinkCt As Integer
    Dim SpreadsCt As Integer
    Dim PageLabel As String
    Dim TOCStylesCt As Integer
    Dim i As Integer
    Dim p As Integer
    'Create an InDesign object reference and open the InDesign
    'document specified by DocumentFilespec. Note that if InDesign
    'is and the selected document are already open, the in-memory
    'copies will be used.
    Set InDesign = CreateObject("Indesign.Application.CS3")
    Set InDesignDocument = InDesign.Open(DocumentFilespec)
    'Loop through all linked graphic frames and fill
    'frame proportionally.
    LinkCt = CInt(InDesignDocument.Links.Count)
    For i = 1 To LinkCt
    InDesignDocument.Links(i).Parent.Fit 1718185072
    Next i
    'This code deletes selected spreads (or pages if not using facing
    'pages). It expects each spread to have a label, and it expects
    'an array DeletePages to contain a list of the labels for pages
    'to be deleted. DeletePagesCt is a count of the total number of
    'items in the DeletePages array
    For i = 1 To DeletePagesCt
    SpreadsCt = InDesignDocument.Spreads.Count
    For p = 1 To SpreadsCt
    PageLabel = Trim(InDesignDocument.Spreads(p).Label)
    If PageLabel <> "" And DeletePages(i) = PageLabel Then
    InDesignDocument.Spreads(p).Delete
    Exit For
    End If
    Next p
    Next i
    'This code updates the Table of Contents for a given TOC Style Name
    '(ExpectedTOCStyleName).
    TOCStylesCt = CInt(InDesignDocument.TOCStyles.Count)
    For i = 1 To TOCStylesCt
    If InDesignDocument.TOCStyles.Item(i) = ExpectedTOCStyleName Then
    InDesignDocument.CreateTOC InDesignDocument.TOCStyles.Item(i), True
    Exit For
    End If
    Next i

    If I understand your question correctly that you want to know how to give an object in InDesign a Script Label (not using a script), then below is how (I needed to do it for the templates I'm using in the current project I'm doing using VBscript). Hope I was able to help some one else for a change. :-)
    Window > Automation > Script Label
    Select the Object
    Enter the text in the Script Label box

  • Is it possible to delete page(s) from a pdf document?

    37 page pdf document; I would like to take out some of the pages.  Using createpdf.

    Hi Kromowidjojo,
    With CreatePDF you would not be able to delete pages. CreatePDF is only a convertion application which is use to convert different formats to PDF and vice versa.
    You have to purchase the complete PDF solution(Adobe Acrobat) to achieve this task. Please visit the below mentioned link for more information:
    http://www.adobe.com/products/acrobat.html?promoid=JOLIR
    Regards,
    ~Pranav

  • How can I completely delete imessagefrom my Iphone 5?

    how can I completely delete imessagefrom my Iphone 5?

    The Messages app is a built in application. It can't be deleted. You could move it to a folder or to the last home page so that you don't have to look at it.

  • BAD PARAMETER Error when Deleting Pages in Acrobat

    When I attempted to delete pages in Acrobat Standard, I received an information error stating:
    Bad Parameter
    When I try to click ok on the error message, it just keeps coming back over and over again. There is no way to get rid of the error message so I am forced to end the program using the Windows Task Manager.
    Has anyone seen this error message before and if so, is there a fix?
    Any help is greatly appreciated!!
    Thanks!
    ~Q

    Hello,
    This is an incredably annoying error. I had a complete manuscript ready for print, except I needed to delete one page, which of course Acrobat would not let me. I had spent a considerable amount of energy on the page numbering, bookmarks etc., so creating a completely new PDF by for example printing to PDF was out of the question.
    In the end, I ended up extracting all the pages in the document, except the one I wanted to delete. This way, I ended up with a new PDF, but all of the bookmarks, page number formatting, etc. migrated together with the extracted pages to the new document.
    Hopefully, Adobe will be able to fix this issue soon.

  • TouchUp Reading Order tool moves or just deletes page content!?

    Using Acrobat X to make documents 508 compliant. I've had a number of issues when trying to tag a figure, it ends up moving the figure to a different page or deleting it altogether. Also I've has issues when trying to adjust the reading order, content is moved or deleted.
    How can adjusting structure completely delete content? Really bad bug. Is anyone else seeing this? Thanks.

    Thank you for your comment. However I do not think this is a workable solution.
    My structure in the tags panel is ordered correctly, and the document exported from inDesign is tagged and ordered correctly. However, when I look at the reading order tab the reading order is wrong. I need to use the reading order tab to reorganize the order in which items are read by screen readers (this is as according to Adobe training, e.g. http://tv.adobe.com/watch/accessibility-adobe/preparing-indesign-files-for-accessibility/). Is there another tool that will allow me to organize the reading/tab order (without deleting some of the content in my tables)?
    I am also having the additional problem that sometimes, not always, when I use the reading order panel to reorganize reading order, my tables lose their tagging as tables - I am worried that this will mean screen readers will not recognize the data as a table and will not read it accordingly (by header cell and then content cell).
    Can you provide any help?
    Thank you.

  • Can't delete pages in a book

    I can add pages---but the minus sign is greyed out; and hitting "delete" does not work either. I'm mystified (and irritated, I'm just have a couple of pages to delete to complete the project).
    Rod

    Hi lachanel5,
    Not sure if you found this in iPhoto Help yet, but it says (red highlights mine):
    To delete a page from a photo book:
    Books require an even number of pages. If deleting a page creates an odd number of pages, iPhoto automatically adds a blank page to or deletes a blank page from your book to keep the page count at an even number.
    Open the book project.
    The book pages appear in All Pages view.
    Press the Control key while you click the page that you want to delete, and then choose Remove Page from the shortcut menu.
    Note:  You can also delete a page while viewing a page spread.
    A message appears asking if you want to delete the page.
    Click Yes.
    The Note about deleting a page means pressing the Delete key on the keyboard.
    Note there is a 20 Page minimum to the Books so if you have less than that, it won't let you delete pages, the Remove Page option will be dimmed. You need to change them to something else instead.
    Hope that helps,
    ivan

  • Is it possible to completely delete your Apple Support Communities account?

    Hello everybody,
    As the title states.

    It seems that complete deletion is impossible, but the next best thing would be to clear out your personal information, if that was your concern:
    1. Remove devices and other personal information from your Apple Support Community profile. This would be accomplished by editing your profile and privacy settings (e.g make the privacy settings as strict as possible).
    2. You'll notice your name and email address are not editable via the Apple Support Communities profile page. However, you can edit your name and email address used by Apple Support Communities from your Apple ID https://appleid.apple.com/
    To change these, login and click on the "Manage your Apple ID" and you will be able to change them via the "Name, ID and Emaill Addresss" link in the menu on the left. However, please note that any changes to your Apple ID affect your main Apple account (iTunes, iCloud, Apple Online Store, etc.)

  • How can i completely delete message app from my mac?

    how can i completely delete the message app from my mac?

    As per email.
    Hi,
    In the Finder (have any window open), Use the Go Menu whilst holding down the ALT key.
    This will show the Library in the Menu, select this.
    Navigate to the Preferences folder.
    Find the com.apple.ids.service.com.apple.madrid.plist file and drag it to the Trash.
    This is the one Messages reads directly to create the Receive At list and, if shown, the Start Conversations From drop down.
    If Messages was starting properly and you restarted it at the point you would have to re-enter the Apple ID.
    On the iPhone.
    Go to Settings > Messages  and check the app is ON first.
    Then check the Send and Receive Section.
    This will always list the iPhone Number as ticked and Greyed out (You can’t edit it).
    Having said that I have twice found the Number to be Unchecked (whilst still grey out).
    If this is the case go to the Apple ID section and Remove the Apple ID.
    This will also remove it from the Send and Receive section (you can’t do it the other way round.)
    Once that is done, place the iPhone in Airplane mode to break with the Servers.
    After a few minutes take it out of Airplane Mode and return to Setting > Messages
    You should see the iPhone Number being Verified. Wait until this is done.
    (I would normally suggest sending an iMessage to the Apple ID at this point as it would be the only Active ID on the Mac. And sending a reply)
    You can now add the Apple ID back to the iPhone if you wish to use that as well, if you intend to use it.
    If not then you way want this site https://selfsolve.apple.com/deregister-imessage
    Please stick to one method of asking me  (The thread will do for now.)
    I am here 3 hours every evening.
    I read all the new post regarding email alerts from the boards.
    I then filter the Yosemite, Mavericks and iChat Areas using the Contents page and where require Messages or iMessages and deal with unread one.
    Posting here at 2.41PM (according to the Time view I have) and then emailing me 11 minutes later seems like you are giving me the hurry up.
    In the email and this Post you are not clear if you want Messages to work again.
    Removing the com.apple.ichat.plist may help with that.  (The Status Message one will not)
    You may find checking the Font Book and the AppleGothic Font  is the answer.
    8:56 pm      Friday; January 23, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • HT4915 Completely Delete a Song off all Devices

    I keep deleting a song from my iTunes on my MacBook Pro, but the song appears on my iPad and my iPhone...I am up to date with all versions..I want rid of some songs and albums, does anyone understand how to completely delete something?

    Hey dees13,
    Thanks for the question. You can remove a song from your device by doing the following:
    Remove a song from iPhone. Tap Songs, swipe the song, then tap Delete. The song is deleted from iPhone, but not from your iTunes library on your Mac or PC, or from iCloud.
    via page 62 of the iPhone User Guide for iOS 7
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    If you have iOS 7, this will delete the song from local storage, but the song will still appear with a cloud symbol in the Music app. To hide the iTunes in the Cloud purchases, navigate to Settings > iTunes & App Store, and disable "Show All: Music"
    Thanks,
    Matt M.

  • How would i "completely" delete my Windows Partition?

    Hi all,
    After a month use of windows, i am finding it more useful to use my mac so i have made the decision to delete my windows partition.
    How would i "completely" delete my Windows Partition?
    This is what i was planning on doing (Please correct any problems):
    Disk Utility -> disk0s3 (windows) -> Erase (Zero out data)
    Is this right or is there a more efficient way of doing this, i want to "completely remove everything in the partition, which is why i have chosen to "zero out" data.
    Thanks

    OK. A normal erase doesn't actually erase the file data stored on a drive. Instead, it just removes the small amount of info that tells the file system where to find that data on the drive & frees up that space so that the file system can use it for data from other files. This is much quicker than actually overwriting the file data with some other data pattern. (There really is no such thing as an "erase" in the normal sense of "remove" or "rub out" -- all the drive can do is write something over the old data to obliterate it.)
    As long as the file system is working correctly, this is all that is needed to effectively "erase" the file, since whatever data patterns that space on the drive contains is treated as if it contained nothing. Special purpose forensic applications can recover some or all of that data by ignoring the file system & scouring the drive, looking for "orphaned" chunks of data & reassembling them into files. (It is a little bit like putting a filing cabinet back in order after someone has emptied all the pages & file folders into the trash.)
    The OS offers a set of security measures to prevent this, the simplest of which is to "zero out" the data by overwriting it with an all zero data pattern. If you are not concerned about someone recovering sensitive data "erased" from your hard drive with one of these specialized applications, you do not need to use these measures, which are time consuming.

  • ERROR WHILE DELETING PAGE (WWC-44130)

    sir,
    I have a page group in my portal. It is is having many pages. i am getting following error
    if i try to delete a page.
    ERROR WHILE DELETING PAGE.(WWC-44130)
    DAV: USER-DEFINED EXCEPTION (WWS-18026)
    UNEXPECTED ERROR - ORA -01403: NO DATA FOUND (WWC-35000)
    How to resolve this problem?
    i have noticed thate in,
    http://server/dav_portal/portal i can find all page group and subpages. the actual subpage, which is i am trying to delete is not visible. the same subpage is visible in portal navigate page.
    how to resove this problem? please guide me properly. please help me.
    portal verison 9.0.4.0.99
    regards
    sudhir

    Dear Sudhir,
    I don't know if this is of any help to you, but I sporadically encounter the same error when trying to delete regions/items/tabs etc. from TEMPLATES (not from pages). I am sure that this is a bug.
    However, after creating a page from the template and then detaching it from the template, I can delete the corrupt elements. So I can currently work around the problem.
    Maybe this applies to your situation?
    Eckhard

  • I am trying to delete pages I have crated in numbers, but can only see them in print preview. Without print preview I do not see them. How can I delete these pages, but keep others before and after?

    I am trying to delete pages I have crated in numbers, but can only see them in print preview. Without print preview I do not see them. How can I delete these pages, but keep others before and after?

    Hi Crushed,
    Numbers doesn't have pages. It has a canvas that holds objects such as tables and charts.
    Drag the objects from the bottom of the canvas onto the white space above. That will reduce the number of "pages" (sheets of paper) that will print.
    Regards,
    Ian.

Maybe you are looking for

  • Unable to install OS X Mavericks on MacPro

    Getting error message "OS X Mavericks cannot be installed on this computer" Learn More and Ok are the only options that I have. Currently I'm running: Any help from the Community would be huge. Thanks! Matty

  • Problem overwriting documents in SharePoint Online

    I am using SharePoint Online and trying to overwrite existing documents. When I copy the exact filename and save the document to SharePoint Online instead of overwriting the document it is saving another version. I need to overwrite the documents.

  • How to Ask to Rename a Dropped File?

    Hello,      How would I create an AppleScript that asks me to rename any dropped files? I know something like this can be done in Automator, but I'd like to be able to manually input a name. I'm looking to do this to increase my ScanSnap workflow eff

  • Firewall for Uploading/seeding question

    Hello, everyone. I really don't do any file sharing, but I downloaded a show from a file sharing page (UKNova) and it is required of me to seed until I reach a ratio. My question is: Is it safe to do this? My firewall is on and file sharing is off to

  • Exporting YTD and PERIODIC data

    Hi all, I've adjusted a data manager package so that the YTD and PERIODIC measures are automatically selected for export to a flat file. Whenever I want to save the package the script automatically changes and removes either YTD or PERIODIC. Any idea