Lost program display after using ext display

I am away from home and only have my MBPro. I home I have an external display and was running Google Earth on the external. Now I start the program and it is not showing on the laptop. Is there a command that will move the program to the active screen if you are not using an external diaplay?
Thanks for any help.
Denny O

Go to System Preferences > Displays. Select a lower resolution than your current one, let the display switch, then return to your normal internal display resolution (1440x900 or 1680x1050 depending on whether you've got a 15" or 17"). This should do a complete refresh of the display and bring all windows back onto the internal display.

Similar Messages

  • Lost programs, apps after windows 8 "refresh"

    I installed windows 8 and computer wasn't acting right, slow, etc. diagnostics told me to "refresh" computer my using original install disk. when it finished and restarted, most, if not all programs, apps were gone.  I couldn't find the tool "restore"
    to go back and get an earlier restore point to recover lost programs. I've tried several things and no luck. Had to reinstall Norton and carbonite.

    refresh only installs the new Windows Store Apps again. All desktop applications are removed:
    http://blogs.msdn.com/b/b8/archive/2012/01/04/refresh-and-reset-your-pc.aspx
    Refresh functionality is fundamentally still a reinstall of Windows, just like resetting your PC as described above, but your data, settings, and Metro style apps are preserved. We have a solution to help you with your desktop apps, too,
    which I’ll talk about a little later.
    The coolest part about Refresh is there’s no need to first back up your data to an external hard drive and restore them afterwards.
    Refreshing your PC goes like this:
    The PC boots into Windows RE.
    Windows RE scans the hard drive for your data, settings, and apps, and puts them aside (on the same drive).
    Windows RE installs a fresh copy of Windows.
    Windows RE restores the data, settings, and apps it has set aside into the newly installed copy of Windows.
    The PC restarts into the newly installed copy of Windows.
    Restoring your apps
    We preserve only Metro style apps when customers refresh their PCs, and require desktop apps that do not come with the PC to be reinstalled manually. We do this for two reasons. First, in many cases there is a single desktop app that
    is causing the problems that lead to a need to perform this sort of maintenance, but identifying this root cause is not usually possible. And second, we do not want to inadvertently reinstall “bad” apps that were installed unintentionally or that hitched a
    ride on something good but left no trace of how they were installed.
    It is also important to understand that we cannot deterministically replace desktop apps, as there are many installer technologies as well as custom setup and configuration logic, of which Windows has little direct knowledge. That is why we discourage
    the use of third-party uninstallers or scrubbers. One simple thing to consider is that many setup and installation programs conditionally implement functionality based on the state of the machine at the time of the install (for example default browser, default
    photo handler, etc.)
    "A programmer is just a tool which converts caffeine into code"

  • Not able to access javaFx charts from a remote system after using ext. jars

    We are facing following issue. Any recommendations to resolve these issues are highly appreciated.
    1. Not able to access javaFx charts from a remote system (More details at the end of mail).This is high priority requirement as we have a web based reporting application and users access it over our static IP address.
    We are using Java Fx charts in our web application where we built jnlp and jar files in a separate fx project and kept jar and jnlp’s inside our web project.
    It is working fine when we did not used any external jar files and remotely it is accessible. But when we used external jars our project is running on local
    system but remotely it is not working due to some path settings. We modified jnlp files where entry of jar files exists and modified the jar path as per our
    project. But still it did not work.
    Before using external jars inside our java fx project my jnlp looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    After modifying my jnlp as per my project as
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    After adding external jars my jnlp looks like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    <jar href="lib/jdom.jar"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    I have modified the jnlp as per my project :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    <jar href="/PiFx/FxFiles/lib/jdom.jar"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    where PiFx is our project Name

    We have tried few things given in thread : http://forums.sun.com/thread.jspa?threadID=5401999
    Now it is not able to get the external jar file only
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    JavaFXApplication3.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
            <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true" />
        </resources>
        <application-desc main-class="com.sun.javafx.runtime.main.Main">
            <argument>MainJavaFXScript=misc.MyChart</argument>
        </application-desc>
        <update check="background">
    </jnlp>JavaFXApplication3_browser.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
           <jar href="/PiFx/FxFiles/JavaFXApplication3.jar"  main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true"/>
        </resources>
        <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
            <param name="MainJavaFXScript" value="misc.MyChart">
        </applet-desc>
        <update check="background">
    </jnlp>Applet Code
    javafx({
    archive: "../FxFiles/JavaFXApplication3.jar",
    draggable: true,
    height:hgt,
    width:wdt,
    code: "misc.MyChart",
    name: appletName,
    id: appletName
    });

  • Program error after using connected smart objects

    Hello, dear friends. I need your help.
    My problem is:
    1. I placed linked smart objects in to the photo and then tried to replace content of this smart object. Suddenly program shut down. And If I try to do the same one more time the same happened.
    2. Some times I could do this operation till the end but replaced content didn't save my changes made for this smart object. And then program shut down again.
    This problem stops my work, that is why I'll be pleased to hear any solution.
    Thank you.

    What have you done for trouble-shooting so far? (Restoring Preferences after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved might be of special interest).
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    Also please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://forums.adobe.com/docs/DOC-2325

  • Airport settings lost in osx after using windows 7 in bootcamp??

    Hi forum members, I thought I'd ask this question as I have been noticing this in the last few days.
    First things first, my kit:
    13 inch MBP with 2.3GHz i5 processor. 4GB RAM running OSX 10.7.1
    My problem:
    I recently set up a bootcamp partition runnning windows 7 upgraded from windows XP sp2. This install went well (considering the number of threads to the contrary!) and I now happily run windows 7 pro in a partition on my mac.
    The problem arises when I return to OSX having just been on the windows 7 partition. I can't connect to the internet with airport. I can make a connection to the router but it cannot actually make a connection to the internet itself.
    I have found one solution which requires me to repair the permissions in the disk utility after I first log back in to Lion but I'm a bit worried about continually doing this as I don't know what the long term effects will be if done frequently.
    Can anyone suggest a) what might be happening, and b) a better solution to the problem than to have to head into disk utility after every windows use?
    Thanks in advance and best regards,
    Dan Drysdale

    An update/follow up for anyone else who had seen this thread:
    What appears to have happened is that the DHCP lease has been getting reset so going into
    system preference - network - airport - advance - tcp/ip
    and renewing dhcp lease seems to bring the internet back.
    I dunno, if that's the ultimate solution but it appears to be what is happening at least as far as I can see.
    Smarter people may know better.
    Cheers,
    Dan Drysdale.

  • TS3988 lost gmail contacts after using icloud

    How can I get my contacts back into my gmail account?

    iCloud has nothing to do with Google contacts, calendars or mail, please tell us what you did and what happened.
    Have you looked on the Google website to see if your contacts are there?

  • 4S (iOS7) lost its sound after using AirPlay :-(

    Apretiate any suggestion.

    Hello FHFM,
    I'd suggest restarting your iPhone, and then a reset, should restarting fail to resolve the issue.
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    If your sound still hasn't returned, I would recommend restoring the device.
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    All the best,
    Allen

  • SSAS Display Folders not working properly after using Translations

    Hi
    I have a Cube with many fact tables and each having many measures.So for user convience i have created display folder for measures inside measure groups and everything was working fine.
    But now i have created Translation (English(United States)) for measures,Calculated member and Dimensions and Processed.I observed that the display folders are working for calculated measures but weirdly the other measures display folder property is not
    getting applied.
    Please let me know if anybody came cross this and fixed.

    Hi Hrehaan,
    According to your description, your display folders in not working after using translation. Right?
    In Analysis Services, this is a known bug. However, we have workaround for this issue.
    Solution:
    1. Locate your cube in Solution Explorer
    2. Right click on it and choose 'View code'
    3. Find the corresponding <Translation> tag - look for the Foreign name of your Calculated member
    4. Below the <Caption> tag place a line with <DisplayFolder> tag. The properties within Translation tag should look like:
                  <Language>1001</Language>
                  <Caption>Foreign name of Calculated member</Caption>
                  <DisplayFolder>Foreign name for the display folder</DisplayFolder>
    5. Repeat for all your calculated members.
    Please refer to the link below:
    No display folder translations on the calculated members
    If you have any question, please feel free to ask.
    Simon Hou
    TechNet Community Support

  • After using the minidisplay port to connect to a projector, my computer screen displays images with less resolution than before.  How do I get back the usual sharp resolution?

    After using the minidisplay port to connect to a projector, my computer screen does not have the usual sharp resolution.  How do I get back that sharp resolution?  The computer screen images are now a bit blurry.

    Do you mean after the projector is disconnected? It should change back to normal after disconnecting. If it does not, go to System Preferences > Displays and move the resolution setting back to the largest number.

  • Photoshop CS6 shut down after using for 5mins; no image can be display on canvas.

    Photoshop CS6 shut down after using for 5mins; no image can display on canvas.

    Thanks for your help.  Actually the problem was solved when turning off the GPU.   In the mean time, I would like to upgrade my Video Card, too.  My existing vedio card detials are as below.  May I seek your advice on any good method other than replace it.

  • Bookmarks are saved yet after using the page icon is still displayed instead of the actual icon for the website. I have followed the directions for "Favicons do not display".

    My bookmarks, on a HP Pavilion dv-7-2273cl notebook, are saved yet the page icon is still displayed after using the bookmark instead of the actual icon for the website. I have followed the directions for "Favicons do not display" without any success. This problem is not experienced on my much older Gateway desktop.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_places-database-file

  • Did IOS8 upgrade w/iPhone5 / lost names associated when using e-mail - only displaying telephone numbers / what are the steps to correct to show names?

    Did IOS8 upgrade w/iPhone5 / lost names associated when using e-mail - only displaying telephone numbers / what are the steps to correct to show names?

    maybe OP want to extract all numbers from his inbox using regular expressions?

  • Thumbnails do not display after using rebuild tool

    I am using OSX 10.7.5, and iPhoto 8.1.2.
    recently I made a back up copy of my files.
    I then reinstalled my operating system.
    I then copied my iphoto library back onto my computer.
    imported my iPhoto library into iPhoto
    Pictures are in iPhoto.
    Thumbnails do not display.
    I have used the rebuild tools provided by iPhoto.
    Still no thumbnails displaying.
    any other ideas?

    It relates to your suggestion in that, the reason I posted was to solve a thumbnail issue.
    "re: Thumbnails do not display after using rebuild tool"
    Terence suggested reloading my back up library.
    I asked Terence where I should import to.
    I was thinking that my thumbnail issue was related to the way I imported my back up.
    You clarified where to import the library...
    I tried it and I still have no thumbnails
    I have already tried repairing permissions and rebuilding thumbnails using the i photo repair tool.
    can you help me?

  • Display Step.Resul​t.ReportTe​xt direct in the LabView OI after using "Run selected Steps"

    I took the  (full-featured) LabView OI and modified it to my needs.
    Now the problem:
    I only have sequences with LabView Action Steps. Those Steps (VIs) all have a Cluster Output "Test Data"
    Now i would like to display one element of that Output Cluster (Step.Result.ReportText) direct on the OI after using "run selected steps"
    It would be ok, when the Result would display after every step (also in UUT/Single Pass) but most important, after Run Selected Steps.
    How can i connect the Output of the step with an element on the LabView OI?
    (sorry for my bad english)

    RNiklaus wrote:
    I took the  (full-featured) LabView OI and modified it to my needs.
    Now the problem:
    I only have sequences with LabView Action Steps. Those Steps (VIs) all have a Cluster Output "Test Data"
    Now i would like to display one element of that Output Cluster (Step.Result.ReportText) direct on the OI after using "run selected steps"
    It would be ok, when the Result would display after every step (also in UUT/Single Pass) but most important, after Run Selected Steps.
    How can i connect the Output of the step with an element on the LabView OI?
    (sorry for my bad english)
    Is the "Run Selected Steps Using Single Pass" feature not sufficient for your use case? That feature will run the selected steps along with result processing to generate a report for those steps.
    -Doug

  • Need a Tool to Display When a Program Was Last Used

    Is there an SAP tool that tells when a program was last ran? I need to terminate some custom programs but unsure of which programs are not being used. Is there anything in SAP that I can use to tell me when a program was last used i.e., 6 months ago, 1 year or 2 years ago or perhaps more?
    Thanks in advance and Happy New Year!

    Hi Beth,
    Information like this is as good as the logging configured in your system. If your basis team is good at keeping logs for a long time, then you should be able to get this information using SM20 transaction.
    If they didn't keep the logs(since they are voluminous, they periodically delete them), then you have no trace of them). Work with your basis team, they may know more transactions.
    Another option is to pick the programs that you think are obsolete, remove access to execute them from all the users and if no one comes back, you may delete it. But this means you may even have to wait for one year, as there may reports that are run only on year-end.
    There is no straight forward way of knowing this information unless you have the basis help.
    Please let me know if it helped.
    Regards,
    Srinivas

Maybe you are looking for

  • Flipping between AT&T LTE and Emergency mode

    Greetings, I am the proud new owner of a BlackBerry Z10. Within a few days of getting the phone, I noticed it was flip-flopping constantly between AT&T LTE and emergency mode. I could not make or receive calls, and text messages I sent were often rec

  • Rich black from laser for positives

    Hello, I have a RICOH Aficio SP C811DN printer, and I am having the worst luck getting it to print real rich black. I'm using it to print film positives on polyester vellum for burning silkscreens. Between the 30+ printer profiles and numerous other

  • Adobe reader install failed AND......

    I'M REALLY ANGRY.  I've had a program on my HP desktop ever since I bought it that I could always open pdf files.  I assume it was Adobe Acrobat.  A few days ago, I could still open all my files, but I could no longer print them.  They would just go

  • HT1212 my ipod got locked by using to many times wrong passcode so how to activate it now again

    my ipod is dissable so i need to fixed it

  • Error loading Data in HFM

    Hi all, I have created meta data and loaded it succesfully. When i try to load the data file, i got the following error in the log file. Line: 2, Error: Invalid cell for Period January. Actual;2004;January;Periodic;HYD;INR;Purchases;;Cinthol;Customer