Apps being moved around with sync - unwanted blank page inserted

Ever since I bought a few new apps (craigspro+, vision test, etc, nothing too big or fancy) last night, when I sync my phone with my iTunes, it moves all the apps around, inserts a blank page onto my phone, and most of my new apps are inserted on a page AFTER the blank page and therefore I can't reach them once the phone is disconnected from my iMac and in hand. I've tried restoring, I've tried manually moving them all around in iTunes, and every time i hit "Apply" they bounce back to where the computer wants them and I can't even reach the new apps. What's up and how do I fix this???

Hi,
you can automaticaly fix previously made documents using the Preflight tool.

Similar Messages

  • Unwanted blank pages inserted when creating pdf from scanner

    Hello, when creating a pdf from a document scanned via Adobe Acrobat X Pro, the program inserts an unwanted blank page in between each page  being scanned.  So, if scanning 50 pages, we get 100, etc.  How do we remediate this problem?  We have worked with the default settings, to no avail.  We're using a Fujitsu fi-5530c2 scanner.  We would appreciate any input to help resolve this issue!  Thanks Mark

    Hi,
    you can automaticaly fix previously made documents using the Preflight tool.

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

  • Blank pages inserted during duplex printing

    I just installed an OfficeJet 4500 G510g on a 64-bit Windows 7 system and configured it using the network interface.  After having some initial installation problems I downloaded the latest Full Featured driver and was finally able to get everything (printer, fax, scanner) working okay.  Tonight I tried my first duplex printing job and found that the output has random blank pages inserted.  The first time I printed, I got page 1 on the front of the first page and the back was blank.  Page 2 was on the front of the second page, page 3 on the back of that page and so forth up to another blank page between pages 6 and 7.  After looking at the configuration to see if I had something set up incorrectly, I tried it again.  This time I got page 1 on the front of the first page, a blank page on the back, another blank page on the front of page 2 and from then on it was correct up through page 7.  I am an embedded software developer and the ability to print duplex listings is very important to me.  Unfortunately, at this point I have no idea what to try next.  Anyone have any ideas?
    Thanks,
    Dave

    Hi,
    I'm hoping for an answer to this problem also. Here's what I've found so far:
    "I am printing statements on a double-sided stationary capable printer. To ensure that each new statement starts on a new physical piece of paper, I need to add a blank page if the previous statement had an odd number of page sides. How can I do this?
    Place an invisible boilerplate line before the repeating frame that contains your data. Give it a Page Break before and anchor it to the repeating frame. Then write a format trigger that only prints the boilerplate object (and thus the page break) if it is an odd page number. "
    I've tried this but it isn't working for me. I'm using this logic for printing the page:
    v_page number;
    begin
    srw.get_page_num(v_page);
    if mod(v_page,2)=0
    then
    return (FALSE); --if an even page don't print
    else
    return (TRUE); --if an odd page do print
    end if;
    end;
    If you find an answer I'm hoping you'll share it with me. Thanks!
    Katie

  • Moving around with the MBA

    Is there any concerns about moving/travelling around with the MBA (HDD version)?
    I am wondering specifically about causing any damage to the HDD while holding the MBA vertically in a travel pouch for example and moving from home to bus to school to car to work, etc?

    There some rather inaccurate information below and I'll point them out:
    mocanuj wrote:
    The best thing to do, if you're moving about for long periods of time, is to shutdown your laptop. This effectively "parks" the needles that work on the platters of your hard-drive disks.
    When in sleep mode on all laptops, the reading heads (they aren't needles) of the hard drive parks. You don't have to turn off the laptop in order for the drive heads to park in a safe position.
    In sleep mode, you're not only losing battery life (at a slow but noticeable trickle) but you're not fully "parked" and, thus, there is the possibility that you'll experience a hard-drive fault (a physical fault which is BAD) and have to pay for another hard-drive.
    It is true that when in sleep mode, a little bit of battery life is being used but not much. The issue about the hard drive is a moot point because the reading heads of the hard drive is parked when the laptop is asleep.
    Rules of thumb:
    * If you're moving about the house or office: you might want to "sleep" the laptop during transit.
    * If you're not planning on using the laptop for an hour or so: sleep it.
    * If you're taking your laptop from the office to the car and then driving home: shutdown.
    I don't think these are necessarily good rules of thumb. Sleeping the laptop anytime during any kind of transit is fine. Indeed, if you plan to go on a long journey say over 10 hours, then shutting down the laptop is fine but you can also put it on sleep mode and nothing bad will happen.

  • Two objects moving around with mouse

    I'm making a catching game and I only wanted the falling objects hit certain area on my catcher. My catcher is a girl with mouth open and I wanted the falling objects to hit only the mouth, not any other parts of her body like arms. So I made two objects, the full girl and just the mouth. How do I make the two objects (movieclips) move around with the mouse?
    I tried to embed one object into another but it didn't work....
    This is actionscript I wrote so far:
    package {
        import flash.display.*;
        import flash.events.*;
        import flash.text.*;
        import flash.utils.Timer;
        import flash.utils.getDefinitionByName;
        public class CatchingSkittles extends MovieClip {
            var girlmouthfront:GirlMouthFront;
            var girlmouth:GirlMouth;
            var nextObject:Timer;
            var objects:Array = new Array();
            var score:int = 0;
            const speed:Number = 7.0;
            public function CatchingSkittles() {
                girlmouthfront = new GirlMouthFront();
                girlmouthfront.y = 258.00;
                addChild(girlmouthfront);
                setNextObject();
                addEventListener(Event.ENTER_FRAME, moveObjects);
            public function setNextObject() {
                nextObject = new Timer(1000+Math.random()*1000,1);
                nextObject.addEventListener(TimerEvent.TIMER_COMPLETE,newObject);
                nextObject.start();
            public function newObject(e:Event) {
                var goodObjects:Array = ["Red","Purple","Yellow","Orange","Green"];
                if (Math.random() < .5) {
                    var r:int = Math.floor(Math.random()*goodObjects.length);
                    var classRef:Class = getDefinitionByName(goodObjects[r]) as Class;
                    var newObject:MovieClip = new classRef();
                    newObject.typestr = "good";
                } else {
                    r = Math.floor(Math.random()*goodObjects.length);
                    classRef = getDefinitionByName(goodObjects[r]) as Class;
                    newObject = new classRef();
                    newObject.typestr = "good";
                newObject.x = Math.random()*500;
                addChild(newObject);
                objects.push(newObject);
                setNextObject();
            public function moveObjects(e:Event) {
                for(var i:int=objects.length-1;i>=0;i--) {
                    objects[i].y += speed;
                    if (objects[i].y > 425) {
                        removeChild(objects[i]);
                        objects.splice(i,1);
                    if (objects[i].hitTestObject(girlmouthfront)) {
                        if (objects[i].typestr == "good") {
                            score += 5;
                        } else {
                            score += 5;
                        if (score < 0) score = 0;
                        scoreDisplay.text = "Score: "+score;
                        removeChild(objects[i]);
                        objects.splice(i,1);
                girlmouthfront.x = mouseX;

    Never mind. I got everything to work. Thanks for your help! I changed my code to:
    [code]
    public class CatchingSkittles extends MovieClip {
            var girlmouth:GirlMouth;
            var girlmouthfront:GirlMouthFront;
            var nextObject:Timer;
            var objects:Array = new Array();
            var score:int = 0;
            const speed:Number = 7.0;
            public function CatchingSkittles() {
                girlmouthfront = new GirlMouthFront();
                girlmouthfront.y = -49.00;
                girlmouth = new GirlMouth();
                girlmouth.y = 308.55;
                addChild(girlmouth);
                girlmouth.addChild(girlmouthfront);
                setNextObject();
                addEventListener(Event.ENTER_FRAME, moveObjects);
    [/code]

  • My screen keeps moving around with the cursor?

    HI everyone out there. i just got back from my 2 week honeymoon and had my G5 power mac, with a 27inch cinema display powered off the whole time. I turned it on and the screen is zoomed out a little bit. and when I move the mouse cursor around the screen image moves around with it as much as an inch or so. Did I catch a virus? or is there a setting my house guests might have touched, even though i am pretty sure they were not on it at all? Any help will do. I am updating the software right now to make sure it isn't that.

    You've inadvertently hit the key combination for screen zoom, probably. Go into System Preferences -> Universal Access and turn off the zoom function.
    Or, Command-Option-hyphen will unzoom the screen, and Command-option-equals will zoom (which is probably what got accidentally typed).

  • Unwanted Blank Page When Table At Bottom of First Page

    I have an RTF template which has a table with the typical for loop as the row generator and a totals row after that. There are no line breaks after the table, and the table's paragraph is set to single line spacing with 0 pt spacing before and after.
    When the table reaches the bottom of the first page, but does NOT go onto the next page, there is a blank page at the end of the report. Any ideas on how to eliminate this?
    Thanks in advance,
    Kurz

    I have an rtf template which is used to print output in pdf format. I have a table which has many rows which displays data for each record. In order to avoid breaking the page in between the rows of a record , i have added an outer table with single row and column and pasted the data table inside it and changed the row property of outer table to 'Allow Rows to Break Across Pages' to unchecked. It works fine only if the first record set length does not exceed a full page. IF the first record expanded to more than one page, it leaves a blank page at the very first and start the record at the second page. Can you please advise how to solve this issue. Its very URGENT please..

  • If I duplicate a page in pages, it adds an unwanted blank page in between

    Can anyone help?
    I need to duplicate page 1.  If I show the thumbnails view - duplicate page, instead of just adding an identical page 2 - it adds a blank page 2 and then identical page 3.  Then on the thumbnail view, both page 1 and 2 have the yellow box round them as if linked.  If I try to delete page 2 it deletes page 1 too.
    What is going wrong and why is it adding a blank page in between?  I've even tried to do it as a Capture Page and add it as a section, but that again adds the blank page.
    It is most frustrating!
    thanks
    Denniknak

    Denniknak wrote:
    Can anyone help?
    I need to duplicate page 1.  If I show the thumbnails view - duplicate page, instead of just adding an identical page 2 - it adds a blank page 2 and then identical page 3.  Then on the thumbnail view, both page 1 and 2 have the yellow box round them as if linked.  If I try to delete page 2 it deletes page 1 too.
    What is going wrong and why is it adding a blank page in between?  I've even tried to do it as a Capture Page and add it as a section, but that again adds the blank page.
    It is most frustrating!
    thanks
    Denniknak
    Denniknak,
    The yellow box does indicate a linkage. I shows you that all the pages in the box are in the same Section. Individial pages are shown as icons in the thumbnail pane, but there is nothing you can do with individual pages there. Entire Sections can be Copied, Pasted, Deleted or Duplicated. Not so with individual pages. To delete a Page, delete the content of that page, or isolate the page with Section Breaks and delete the isolated page as a section. To add a page, insert a Page Break, or a pair of them. Or, insert a Section Break or a pair of Section Breaks. I think you get the idea.
    Jerry

  • Unwanted blank page

    While working on one of the pages or the Master Page (I'm not sure which), in my document, I inadvertently typed a sequence of keys or clicked with my mouse on an option that some how ads a new page to my document every time I add a new element to the document. By the time I realized what I had done it was too late to hit Undo. So now whenever I add a new element, or copy & paste an existing element I end up with an extra page in the document where that element is placed. If I move the element to where I want it, I can not go back and delete the blank page. Anyone know what I may have done wrong or how I can get LC to stop adding the extra pages (or even delete the blank pages)? Thanks! Daniel

    I have the same problem, but the suggested solutions did not work.
    I have two master pages -- Portrait and Landscape.
    Pages 1-4 of my form uses the portrait master page. Page 5 uses the landscape master page. I am getting a blank, landscape page between pages 4 and 5.
    The hierarchy view shows:
    form1
    master pages
    PortraitMaster
    content area
    LandscapeMaster
    content area
    (untitled Subform) (Page 1)
    (untitled Subform) (Page 2)
    (untitled Subform) (Page 3)
    (untitled Subform) (Page 4)
    (untitled Subform) (Page 5)
    But in both Design View and PDF Preview, I get an extra, blank page between pages 4 and 5.
    I have tried lots of different settings in the pagination tabs for pages 4 and 5, but can't get that blank page to disappear.
    I am a newb, so I could be missing something basic.
    Any suggestions would be greatly appreciated. If anyone's willing to take a look at my file I would be greatly appreciative.

  • "insert" "section" causes unwanted blank page for numbering

    I have a section/page numbering problem.
    I want to start page numbering on the 5th page (Chapter One). But.. when I insert a Section Break between the end of the TOC and first Chapter (where I want re-numbering to start) it causes a blank page to be inserted after the TOC and before the section break...
    How do I insert a section break between TOC and Heading that's set to "start new page" without getting blank page?

    Thanks I've got your file and have fixed it. It had to do with the way you constructed it.
    This is how to do what I did after I deleted your existing T.O.C.:
    1 click at foot of Title page > Menu > Insert > Section Break
    2 Type "Table of Contents" return > Menu > Insert > Table of Contents
    3 Menu > Insert > Section Break
    If there is a return at the beginning of the Introduction page just delete it.
    I also tidied up your layout a bit and have emailed it back.
    Peter

  • Hidden Layers printing unwanted blank pages.

    When I use layers to hide portions of a document that I do not want to print all is well on pages that only include hidden layers and these pages do not print UNTIL I add page numbers to the document, and then all pages print - including the ones that only include hidden layers, and these pages are blank except for the page number.  I do need the page numbers included - so is there any way to not print pages that only have a page number on them?

    Have you considered using Conditional Text for the answers?
    I am not familiar with conditional text – I will need to investigate.
    It's not clear to me, either what the numbering scheme here might be. In the teacher's edition, do the pages with the answers get numbered in sequence, or do they have a special numbering system applied?
    Good question – In the teacher’s Answer Key I could go either way. My first choice would for the pages to be numbered sequentially with the first printable non-blank page to be #1. If the pages printed with the same page numbers that they have in the book that would not be the end of the world, there would be gaps in the page numbers for the non-printed chapter content – either way I don’t want the blank hidden content pages to be included in the document.
    If they are numbered in sequence, how do you synchronize numbering between the two editions if you don't include blank pages?
    Sequencing and synchronizing page numbers is not a significant problem – the instructor is just glad to have the answers and they do not care a lot about how the pages are numbered. However, having said that it would be really nice if a future version of InDesign Books could create both sequential page numbers and a Table of Contents for only the printed pages in an output document that would have layers that are not hidden.
    How is this bound? And how is it printed? Changing the page counts can be problematic unless the answer pages can be tipped in at binding.
    We deliver all of our documents electronically on CDs as PDF files so binding and printing are not problems for us.

  • Interactive PDF with buttons printing blank pages

    Hi
    I am creating interactive pdf's using indesign cs6 on MAC which have buttons that show and hide other buttons when clicked, i have checked printable for all of the buttons as i want the buttons to be visable when printed.
    When i export it everything is fine and all works well and when i print the document from the MAC it prints fine but when i come to print it from the PC it prints blank pages. This is a issue as these documents will be printed from a PC, I have tried different PC's to see if it was mine that wasnt working but the result is the same, printing blanks.
    Is there any way to overcome this problem?
    Best Regards
    Rob

    On the Mac go to File>Export and choose pdf like you normally do.
    With the pdf settings that work make sure you click the "Save Preset" button.
    Exit out of the PDF export dialog box and go to
    File>PDF Presets
    And Define them
    From here select your Preset that you just saved and Save it to the hard drive.
    Load this PDF Preset into the PC settings.

  • Can't load website with .jsp - get blank page?  Doesn't happen all the time

    When I try to open American Eagle Outfitters website, I get a blank page and it will not open. The site is ending in index.jsp. I have 3 computers and it does it sporatically on all 3. ie. 1 may open the website, 2 won't or 2 might open website and 1 won't or none of the 3 will open. I know this has to be something simple but it has been doing this for about 3 months and it is driving me nuts because I can't get on there to pay my bill or even shop! Help!!
    Thanks

    I'm having the exact same problem! I've been using the website a lot recently, and then just about a week ago the website just wouldn't load. The page would go white and would say "Done" at the bottom of the screen. I tried googling the website to try and go in through there, and I can only seem to enter the site through "Find a Store Near You". Only this page seems to work, and whenever I click on "Women" or "Clearance" or "WishList" or anything else the page just goes white again and won't load. I've googled "websites won't load" and I've tried all the suggested steps and nothing seems to be working. I order off AE all the time and was ready to place an order, which I now can't do because I can't even sign in to the website.
    If you figure out how to fix it, email me at [email protected]

  • Unwanted blank lines inserted into the page bean

    For some reason after using the visual editor and then switching to the java view, I notice that there are extra blank lines inserted between lines in the file. The extra lines can accumulate making the file very large and unusable. This has only started happening after installing the latest hot fix. Is there a fix for this?
    Thanks,

    Hi mitsu,
    We did send out some updates via UpdateCenter just two days back. One of the fixes in there would fix the extra empty lines issue.
    Please get this update downloaded and installed on your Creator Installation.
    It should fix your issue.
    Could you please confirm if this fixes your issue?
    Regards,
    Sakthi

Maybe you are looking for

  • How do I create an interactive PDF file in InDesign CS6 with Folio Overlays?

    I have been trying to export an interactive PDF file using InDesign CS6. It exports fine, and all the content works except for the Folio Overlays I created. I created two Folio Overlays (one Pan & Zoom and one Scrollable Frame). The overlays work if

  • CC repeTile not showing up in Rendering

    I hope someone can help me. I have created a fairly simple video using a few layered compostions. I used cc repeTile to get binary text to strech into lines that switch on and off using a wiggly selector in an offset character animation. I then made

  • Question regarding Update from an ODS

    Hi Experts, I have an issue of data mismatch between oa ODS 0FIGL_O02 and the InfocubeSFIGL_C02. the infocube is getting updated through the ODS(By means of generated Datasource). I have some Question: 1) If i delete the data selectively from Infocub

  • Viewing PDF file as one continuous page - Like Word "Web Layout"

    Is there a way to view a pdf file as one continuous document without the page breaks? (similar to the way you would view "web layout" in Word) Thanks for all the help!!

  • How do I turn off screen saver whilst running time machine backup?

    My hard drive failed today when my MacBook Pro took a tumble from the sofa. I have replaced it and am trying to restore from a time machine backup. I have to use the snow leopard installation disc that came with the machine, once I get into disk util