Imovie disappears from screen

how do i bring back the screen back? The imovie shows open on the menu but i dont see the application. I have two screens.

I forgot to say that I have deleted prefs and recent items-twice

Similar Messages

  • Safari has disappeared from screen can't access internet

    Safari has disappeared from screen, can't access InternetInternet

    Under Settings -> General -> Restrictions do you have a restriction on Safari?

  • New version X1 freezes and disappears from screen. Re installed 3 times but not working

    New version X1 freezes and disappears from screen. Re installed 3 times but still not working

    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    If not, download, unzip and run the attached registry script.

  • Mavericks mail reply message disappears from screen

    Using Mavericks 10.9.1 and mail, when I hit reply to a message, the reply window pops up and disappears from the screen not to be brought forward again even though it is listed in the window dropdown. This action only occurs when I have my MacBook Pro attached to an external monitor. When I detach the monitor replying to a message works fine. I don't want to constantly attach and deattach though just to answer an email. Suggestions? Bug?

    What type of mail account is this (POP, IMAP, .Mac)?
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    Go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list.
    Try disabling Search .Mac For Certificates in Keychain Access > Preferences if it’s enabled. Take a look at the following articles for an explanation of why this could be the problem:
    http://www.hawkwings.net/2006/07/18/apple-mail-phones-home-too/
    http://www.macgeekery.com/tips/mailapp_doesnt_phone_homeeither/
    BTW, are you really using Mac OS X 10.4.2, as your profile indicates? Is there a reason you haven’t updated your system since then?

  • Texts disappear from screen

    Hope someone can help.  For some reason, my text screen states "No entries in this view".  If a search a contact, their dialogue of texts appear.  I only see texts if a search a specific contact.  I went to my carrier and they are unable to fix.  They want me to buy a IPhone.  Help......why did my texts disappear from view?  I can send texts and they are not in view.  I have no way of receiving text unless I search for a contact.

    I found a solution here:
    https://supportforums.blackberry.com/t5/BlackBerry-Q10/quot-no-entries-in-this-view-quot/m-p/2802593...
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Iphone ical icon disappeared from screen-how to get it back?

    My ical icon disappeared from my main screen on my 4G iphone. I can still access the calendar by using spotlight so I know it's on the phone but how can I replace icon?

    Stock apps can't be deleted, so either its been moved to another page or placed in a folder. If you're positive you've looked on every page & in every folder and still can't see it, do this: Settings>General>Reset>Reset Home Screen Layout. See if you see it now.

  • HT2479 iMovie disappeared from desktop, tried to download version from web, says I need updated operating system

    What happened to iMovie? I clicked on it and it disappeared from my desktop.

    Hello there, mtreleven311.
    You likely havent lost the application, you most likely just lost the icon on the dock. To re-add the iMovie icon, follow the following steps:
    Mac Basics: The Doc
    http://support.apple.com/kb/HT2474
    Adding and removing Dock items
    If you want to add an application to the Dock, click the Launchpad icon in the Dock and drag the application icon to the Dock; the icons in the Dock will move aside to make room for the new one. If you want to add a file or folder to the Dock, just drag its icon from any Finder window (or the desktop) and drop it on the Dock. The resulting icon that appears in the Dock is actually an alias of the original item (it's kind of a pointer to your original item). If you drag an application or file onto the Dock, you'll be able to open it anytime by simply clicking its docked icon. If you drag a folder onto the Dock, a Finder window of the folder's contents will display when you click the folder icon in the Dock.
    To remove an item from the Dock, drag its icon an inch or more off the Dock and wait a couple seconds, then release; the icon will disappear in a poof of smoke. There are some icons that you can't remove from the Dock, such as the Trash and the Finder.
    Don't worry, you aren't permanently removing the item from your computer; you simply got rid of its Dock icon. If you want that item back in the Dock, locate the application, file, or folder in the Finder (or with Spotlight), and drag it back into the Dock.
    Tip: You can change where the Dock displays and customize its animation style in Dock preferences. See Customize the Dock.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • How to make an object disappear from screen?

    I am trying to make a simple pacman game in javafx. I've been stuck trying to get the pills to delete from screen once pacman "eats" them. I used a sequence to store the pills. I have collision detection working between the pills and pacman, i.e. the computer knows the pacman comes into contact with a pill. When pacman "eats" a pill it deletes from that pill sequence but it still remains on the screen. I have been stuck for hours on this. I have 4 classes created - pacman, pill, map, and main.
    the pill class (minus the import statements)
    public class Pill{
        var x = 42;
        var y = 85;
        var opacity = 1.0;
        var pill: Node;
        var pill2: Node;
        var pills: Node[];
        var pills2 = bind pills;
        var map:Map = new Map();
        var removePill = Timeline {
            repeatCount: Timeline.INDEFINITE
            keyFrames : [
                KeyFrame {
                    time : 0s
                    values : [
                        pill2.opacity => 1 tween Interpolator.LINEAR
                KeyFrame {
                    time: 1s
                    values : [
                        pill2.opacity => 0.0 tween Interpolator.LINEAR
        public function create(x: Integer, y: Integer): Node{
            Circle {
                centerX: x,
                centerY: y
                radius: 5
                fill: Color.ORANGE
        public function populatePills() {
            var countX = 0;
            var countY = 0;
            if(sizeof pills == 0){
                while( countX < 16 ){
                    while( countY < 18){
                        x = x + 43;
                        pill = create(x,y);
                        for(obst in map.map()) {
                            if(obst.boundsInLocal.intersects(x-5, y-5, 10, 10)) {
                                pill.visible = false;
                        if(x > 380 and x < 520 and y > 320 and y < 370){
                            pill.visible = false;
                        if(pill.visible == true){
                        insert pill into pills;
                        countY++;
                y = y + 35;
                x = 42;
                countY = 0;
                countX++;
            println(sizeof pills2);
            removePill.playFromStart();
            delete pill2 from pills;
            return pills2;
        public function deletePill(i: Integer){
            //delete pills[i] from pills;
            pill2 = pills;
    return pill2;
    }*pacman class (only the part of code used for collision detection with pills)*for(obst in pills.populatePills()) {
    if(obst.boundsInLocal.intersects(nextposx - 20, nextposy - 20, 40, 40)) {
    pills.deletePill(pillCounter);
    pillCounter++;
    pillCounter = 0;*and finally, the main class (used to output everything to screen)*var pm: Pacman = new Pacman();
    var ghost: Ghost = new Ghost();
    var pills: Pill = new Pill();
    Stage {
    title: "PacmanFX"
    width: 900
    height: 700
    scene: Scene {
    fill: Color.BLACK
    content: [
    pills.populatePills()
    map.map()
    pm.create()
    }Help would be greatly appreciated as I am completly stumped!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I solved it. I declared the pills class & created a pills sequence the pacman class. And in the main class I called the pills sequence from pacman class, not from the pills class.

  • Content for Mp3 Skull and Soundowl disappear from screen once the page is loaded.

    Once these pages are loaded the link disappear and you can't see anything on the page.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • HT4910 The iCloud Backup notice don't disappear from screen.

    I cannot use my iPad because the notice on the screen don't disappear even after I touched OK. What should I do?

    Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Maps Disappear from screen N95

    Hi all,
    I've got another topic running that I started when frustrated. This is a follow-on.
    I've looked here at all the fixes for the NUMEROUS map problems with N95. This is what I'm left with,
    I cleared the card and started again. Downloaded the maps (after running the Maps Application once). After I've down loaded the maps I open the application on the phone and great, there are the maps. Within 1 minute the maps disappear and my location indicator is centred on a green screen. Any search I try for locations is returned 'unable to locate'. I've looked through the memory card and everything is still there with no apparent changes, the phone just seems to *lose contact* with the map data.
    Can someone PLEASE shed light on this. I've downloaded the same maps 5 times now trying to fix this.

    I found a solution here:
    https://supportforums.blackberry.com/t5/BlackBerry-Q10/quot-no-entries-in-this-view-quot/m-p/2802593...
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Acrobat pro 8 disappears from screen with about 5 seconds from startup...what to do?

    acrobat pro 8 has been working on this machine for about 3 years; all of a sudden it now doesn't work...startups for 5 seconds and then disappears...what to do?

    The first step is to do a repair from the Control Panel>Add/Remove Programs (OR Programs and Features in VISTA and Win 7).

  • I've updated to IOS7 now app updates wont disappear from screen even after updating

    I have updated to IOS7 on my Ipad and Iphone. I've noticed now that when i get a notice that an app needs an update, I tap the "install" button and after the update is finished the "install" icon changes to "open". Problem is that even if i tap the "open" icon, the app opens has it should. But when I return to the "app store" icon under updates the app I just open still appears on the list and still has the "open" icon visable. Use to be once you updated an app it would dissapear from the update list. I know have a list of 7 apps all updated and showing the "open" icon on my Iphone 5 and 13 on my Ipad. I've tried shutting down my device and restarting, yet they still show up on the list. Is it just me, have I missed a setting or something? How do I get rid of updated app showing up on my update list?

    I've had the same issues since iOS 7 was released last week. Sometimes my iPad' App Store icon's badge shows I have 3 updates. When I enter the App Store to update them, there are no updates shown. When I back out of the App Store, they are no longer shown on the iPad's App Store icon. When I again enter the App Store, only 2 updates show up. It's all very inconsistent. Rebooting, restarting, etc all do nothing. I believe the issue to be on Apple's end.

  • IPad apps malfunctioning on screen, disappearing from screen

    Hi,
    I updated to iOS6 on my iPad 2 and when i tried to download all my of my earlier apps and moved them around they just disappeared leaving a black space between apps. I tried reseting but still the same problem. Please help.

    Hallo Jim,
    thank you for you answer.
    I mean a app like Quasar, that app is only available only on jailbroken iPads via the Cydia Store (more information found on the Blog http://blog.gsmarena.com/quasar-allows-you-to-run-ipad-apps-in-window-mode/). Because I don´t like jailbreak my iPad device, I´m looking for a apple conform app.
    Best regard,
    -- Gerald

  • Why did imovie disappear from my Mac?

    This is the second time that imovie has simply vanished. I must be getting old because I cant remember how I recovered it the last time. Any suggestions will be appreciated. Thanks.

    Disregard! I found the answer. I had save the program in an external hard drive and my toe accidentally shut it off.

Maybe you are looking for

  • How to fetch certificates issued in past

    Hi, I have a long list of templates issued in my Client's Issuing CA, some of them are not in use. If I try to export " Issued Certificates" list from CA, it hangs. I want to know how many certificates and last certificate issed from a specific templ

  • Address Book: Color code the names , groups ?

    Is there way to color code the names so you know which groups they belong to? I.e. I want to create bunch of groups and put names in them but color these names so that when I look at the library I will now which group they belong to. thanks in advanc

  • Itune cant find iphone 4s, error 0xE8000084 occured, please advise

    if any can advise, appreciate

  • How to delete preferences file???

    I recently bought a new Brother printer for my iMac v10.6.8. After installing, I could not properly print documents (very small font, not readable).  When I print a test-page directly from my printer menu, the result is perfect. People on the forum a

  • FCE w/G5 iMac

    Hi - I am considering upgrading to Final Cut Express and was wondering if anyone had experience running FCE on a G5 w/ 1.5GB of RAM. I am concerned about it running slowly. Thanks - Mark