Window resizing after airplay use

The annoying thing, is it possible to avoid the window resizing each time i have used airplay from desktop to ATV, so i dont have to scale back and reposition every open app everytime i need to switch back?

-> Start Firefox in -> [[Safe Mode]] to check if your add-ons/extensions are causing the problems.
* Also see this article -> [[Troubleshooting extensions and themes]]
Check and tell if its working.
For Crashing problem, see this article -> [[Firefox Crashes]]
* IF it crashes again, submit your Crash IDs here as described in section '''"Get Help Fixing this Crash"''' of the above mentioned article.

Similar Messages

  • Home folder window resizes after shut down

    Since updating to Yosemite, I notice that my Home Folder (window) resizes it self upon restart (after a shut down) thereby allowing me to see only a few of the dozen or so folders I keep inside. This is different in my experience from all other previous versions of Mac OS, where the Home Folder always opened in the size I set for it.
    Does anyone know a fix for this?

    denlv,
    You could try trashing the hidden file ( .DS_Store ) inside the folder that stores some of its positioning and size settings.
    To show your hidden files.
    Launch ( Terminal ) > Paste in the following ( defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder ) > Press Return.
    Open the ( Offending Folder ) > Delete ( .DS_Store ) > Restart > Move folder how you want to to stay > Restart > Resize and try again to recreate > Did it stay?
    To reverse your hidden files back to hidden.
    Launch ( Terminal ) > Paste in the following ( defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder ) > Press Return.
    Supporting Articles
    http://ianlunn.co.uk/articles/quickly-showhide-hidden-files-mac-os-x-mavericks/
    http://en.wikipedia.org/wiki/.DS_Store
    Hope that helps,
    Weston

  • AI Plugin: Window resizes after the save!!

    Hi Everyone,
    I am working on AI plug-in which saves AI file after some validation (E.g.: Checking of Art Board Dimensions, Font n so on.) While saving the AI document, it spawns a jsx file in order to perform the validation. It saves normally if it passes the validation, but it also resizes the window along with the save. I'm unable to figure out what exactly is causing the window to get resized. I have even tried saving the ai file without spawning the jsx script, it still occurs. When I don't use the Plugin it doesn't cause the window to be resized. Please help me in fixing this issue.

    Illustrator Version: CS3
    Platform: Windows XP
    Visual Studio 2008
    I observed one thing, it's not the javascript code which is causing the issue, but its _spawnvp function  in the illustrator sdk(vc++ code) itself. If the applicaion window isn't maximised, it'll remain the same, only when it's maximised it tries to resize the window.
    This is how I am spawning a new thread for saving the file. As i said earlier, .jsx file does some validation as well.
    VC++ Code:-
    sprintf_s(pathToJs, 1024, "%s\\%s.jsx", scriptPath, formatName);
        args[0] = applicationPath;
        args[1] = pathToJs;
        args[2] = NULL;
        int pid = _spawnvp(_P_NOWAIT, args[0], args);
    IN JSX file :-
    Validation takes place like this:-
    function validate() {
    try {
        if(app.activeDocument !=null) {   
            var doc = app.activeDocument;
            var fontArray = [];
    //_April 26 2010_____________________________________________________________________________________ _____________
            var errors = [];
    // Checks for invalid items in file
    // ENH-88 validation for migrated AD
        var layerCount = doc.layers.length;
        for (i = 0; i<layerCount; i++ ) {
            //alert(doc.layers[i].name);
            if ( doc.layers[i].name == "Layer 1") {
                errors.push("- Incorrect template" );
        var iii;
        var placeItemFlag=true;
        var rasterItemFlag=true;
        var groupItemFlag=true;
        for (iii=0 ; iii<doc.pageItems.length ; iii++) {
                switch ( doc.pageItems[iii].typename ) {
                    case "PlacedItem":
                        if ( ! doc.pageItems[iii].embedded ) {
                            errors.push(doc.name + " has linked file " + doc.pageItems[iii]);
                        if(doc.pageItems[iii].overprint == true) {
                            errors.push("- Over print found in the following object : " + doc.pageItems[iii].typename);
                    break;
                    case "RasterItem":
                    if ( ! doc.pageItems[iii].embedded ) {
                            errors.push(doc.name + " has linked file " + doc.pageItems[iii]);
                        //INT-1161
                    if(doc.pageItems[iii].overprint == true && rasterItemFlag) {
                            errors.push("- Over print found in the raster item");
                            rasterItemFlag=false;
                    break;
                    case "CompoundPathItem" :
                    break;
                    case "GraphItem" :
                    break;
                    case "GroupItem" :
                    break;
                    case "LegacyTextItem" :
                        errors.push("- Legacy text found ");
                    break;
                    case "MeshItem" :
                    break;
                    case "PathItem" :
                    //INT-1161
                    if(doc.pageItems[iii].overprintFill == true && placeItemFlag ) {
                            errors.push("- Over print found in the image");
                            placeItemFlag=false;
                    break;
                    case "PlacedItem" :
                    break;
                    case "PluginItem" :
                    break;
                    case "RasterItem" :
                        if(doc.pageItems[iii].overprint == true) {
                            errors.push("- Over print found in the following object : " + doc.pageItems[iii].typename);
                    break;
                    case "SymbolItem" :
                    break;
                    case "TextFrame" :
    //Modified by Binu T V to catch the object undefined exception in "doc.pageItems[iii].textRange"______________________________________
                   try   
                        if(doc.pageItems[iii].textRange.length > 0) {
                            var itemType = doc.pageItems[iii];
                            if ( doc.pageItems[iii].converted == false) {
                                errors.push("- Legacy text found ");   
                            else if(doc.pageItems[iii].textRange.overprintFill == true || doc.pageItems[iii].textRange.overprintStroke == true) {
                                errors.push("- Text over print found for - " + doc.pageItems[iii].contents);
                    catch(e)
                            var itemType = doc.pageItems[iii];
                            if ( doc.pageItems[iii].converted == false) {
                                if(!String(errors).search("- Legacy text found ") == 0)
                                    errors.push("- Legacy text found ");   
                            else if(doc.pageItems[iii].textRange.overprintFill == true || doc.pageItems[iii].textRange.overprintStroke == true) {
                                if(!String(errors).search("- Text over print found " ) == 0)   
                                    errors.push("- Text over print found for - " + doc.pageItems[iii].contents);
                    break;
    // Checks for illegal fonts
        fontArray=readFontList();
            var noOfText = doc.textFrames.length;
            for ( i = 0; i < noOfText; i++ ) {
                var CS3Text = doc.textFrames[i];
                var parentLayer = CS3Text.layer.name;
                // ENH-88 Removed the condition which checks for work layer when checking fonts
                if ( CS3Text.textRange.length >0) {
                // Check if illegal font
                    var fontFound = CS3Text.textRange.characterAttributes.textFont.name;
                    if (fontExist(fontFound , fontArray) == false) {
                        errors.push("- Illegal font " + fontFound + "  " + CS3Text.contents);
            } and so on.......
    After the validation, I save it like this :-
    dest = new File(app.activeDocument.path + '/' + newName);
                // INT-922
                var initialModifiedDate= File(dest).modified;
                if(suffix == "pdf")
                    //saveFileToPDF(dest);
                    doc.saveAs(dest, options);
                }else
                    //exportFileToAI (dest);
                    doc.saveAs(dest, options);

  • Why do windows resize after connecting to video?

    When I plug my MacBook into a video display - my TV or an LCD projector - the windows of open programs resize, mainly get smaller (not full screen) and get stretch horizontally.  This makes it difficult to manage applications while on video, and makes them all look funny on the screen.  Is there a way to avoid this?  I don't see any point in why you would want it to do that.  It is just a big pain especially when making a public presentation.
    thanks for any help you can give.
    MacBook 2.1  Lion .1
    4mb RAM  120 gb disk

    Hi pandugadu,
    When you tried resetting your iPod (per the instructions in the Apple article), did the iPod sucessfully restart and display the Apple logo on its screen?
    If so, then let's try forcing your iPod into disk mode. For instructions, see:
    Putting iPod into disk mode
    With the iPod hopefully in disk mode, try connecting it to your computer, and see if it's recognized.
    If the iPod simply isn't responding and won't get off the "Do Not Disconnect" screen (even when its not connected to your computer), then you might want to try letting your iPod's battery drain down.
    Then, when it's finally dead on battery power, let it recharge through a power source, preferrably a wall charger.
    If your iPod simply isn't being recognized by iTunes (but it's not having a problem of freezing up, separate from iTunes), then check out the suggestions from these Knowledge Base articles, and see if they help:
    iPod missing in "My Computer" or in iTunes for Windows
    iPod is recognized by Windows but not iTunes
    iTunes 7 doesn't recognize iPod
    Fast user switching on a Windows computer is not supported for iPods
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    Any success after trying that?
    -Kylene

  • Windows slow after photoshop use

    I have windows XP, 4GB RAM, 160GB drive, Photoshop CS3. My computer is generally very fast with excellent performance.
    When I use Photoshop, running other programs concurrently becomes much slower, which of course I attribute to the large memory and processing needs of Photoshop. But after I'm done using Photoshop and close the program, thereafter I am often stuck with slower performance of the computer and any program I am using. Performance picks up again only if I reboot or log off/on.
    I suspect that Photoshop puts memory aside or does some other systems manipulation to enhance its performance, but does NOT reverse it when the program closes. Is that true?  How can I fix this problem?
    Thanks
    Mark

    When an application closes, everything is reclaimed by the system.  There is nothing to set aside, nothing hidden.
    My guess is that you have a couple of memory hungry apps running, and the OS is paging quite heavily.  That should resolve itself after using other apps for a few minutes.
    You may get better performance from installing more RAM, or dialing down the amount of RAM you give to Photoshop.

  • Why does my window resize after Firefox has loaded from being opened

    Firefox opens to the full screen at first, but as the tabs finish loading the window collapses to a half screen. I have tried resetting the advanced JavaScript settings to no avail.

    Does that also happen if you start Firefox with an blank page?
    Tools > Options > General > Startup: "When Firefox Starts": "Show a blank page"
    See also:
    *http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features
    *http://kb.mozillazine.org/JavaScript#Advanced_JavaScript_settings
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r32
    # Java Plug-in 1.6.0_11 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • When I try to log onto Icloud in Windows 7 64-bit using my Apple ID it says my Apple ID is valid but not an Icloud account.  I can't go anywhere with Icloud after that.

    When I try to log onto Icloud in Windows 7 64-bit using my Apple ID it says my Apple ID is valid but not an Icloud account.  I can't go anywhere with Icloud after that.

    Welcome to the Apple community.
    These types of messages often indicate a problem with the devices serial number, have you had your phone repaired at any stage or did you buy it second-hand.

  • Is Firefox going to support Windows XP after it's retired. Because apparently Google Chrome is saying it will. I'm happy using Firefox and was curious. Thanks!

    Wanted to know if Firefox will support Windows XP after it's retired.
    Read on the internet that apparently Google Chrome will support it.
    I don't like Google Chrome and will continue with Firefox but was hoping they will support Windows XP.
    If not, what type of problems would I expect to have?
    I was told that as long as I have a good virus program it would be okay.
    I have Avast which has worked fine for me.
    I do not do anything personal on my computer to worry about if someone would try to hack it.
    Only thing I really do alot of is go onto my writing groups in Yahoo. But it would be nice not to worry about Malware, etc. threats like that and having to run my scans everyday.
    I'm not at a point where I can purchase a new computer or afford to go to Windows 7 which is still being updated.
    Heard Windows 8 is a nightmare and apparently a new version which is more user friendly Windows 9 won't be out til later this year or early next year.
    Thanks!

    yes, continuing support in this case means that you will get all feature and security updates to firefox as you're used to and in case there are bugs in firefox just for your operating system they should be fixed too (though i suppose the priority assigned to xp specific bugs will be turned down over time).

  • I m using window vista32 after itunes upgrade.. itunes crash .. Problem signature:

    i m using window vista32 after itunes upgrade.. itunes crash ..
    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          iTunes.exe
      Application Version:          11.1.4.62
      Application Timestamp:          52ddbf7a
      Fault Module Name:          ntdll.dll
      Fault Module Version:          6.0.6000.16386
      Fault Module Timestamp:          4549bdc9
      Exception Code:          c0000005
      Exception Offset:          00062086
      OS Version:          6.0.6000.2.0.0.768.3
      Locale ID:          16393
      Additional Information 1:          a183
      Additional Information 2:          96f68295953afa2675d1551e001cfa2f
      Additional Information 3:          5630
      Additional Information 4:          5482da5e28e2dc79b1d40bd90d8c9b

    Hello there, jasibrar.
    The following Knowledge Base article offers up some great steps for troubleshooting your issue:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    This additional article may prove useful to you as well:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I had a problem with my itunes so i had went on itunes website and reinstall itunes for windows and after it complete it said that the feature yoy are trying to use is on a network resource that is unavailable i need help please!!!!!!!!!

    had a problem with my itunes so i had went on itunes website and reinstall itunes for windows and after it complete it said that the feature yoy are trying to use is on a network resource that is unavailable i need help please!!!!!!!!!

    first, head into your Add/Remove programs and uninstall your QuickTime. if it goes, good. if it doesn't, we'll just attend to it when we attend to itunes.
    next, download and install the revo uninstaller http://http://www.revouninstaller.com/revo_uninstaller_free_download.html. use it to clear any existing itunes and/or QuickTime installation configuration information from the PC.
           next download itunes. it worked for me hope this is helpful!!
        oonce you get into the revo uninstallergo thru to delete itunes hit uninstall on the itunes icon then you will go thru to it will tell u the same nmessage about the feature and network hit cancell then go thru and hit scan (make sure bthe advance scan button is pushed) this will take awhile but go thru the list and hit everything associated with itunes. hit delete then install itunes again. it worked for me hope it works for you!

  • Installing LR on a Mac computer after having used the license on a Windows PC

    Hey guys,
    I just got my copy of LR yesterday after having used the trial version for a while. I'm using LR on a Windows computer, but I'm considering switching to an iMac some time from now. Will I still be able to use the same copy of LR on that computer, perhaps after uninstalling the software from my Windows pc?

    And no need to uninstall. Lightroom doesn't use the Photoshop method of keeping track of your installs. You are on the honour system here, and you're allowed two installs, anyway.
    Hal

  • Unable to open Popup Window after transporting using NWDI

    Hi
    I am using Nw04 SP19. I have created a window using createWindow() and createModalWindow() too. The Window opens if we use direct deployment into  the server, whereas afer we transport thru NWDI the window dosent open and gives null pointer exception.
    Even creating ConfirmationDialog has the same problem.
    The Issue occurs after Assembly is Done in NWDI i.e after SCA files created ( just thought this info is useful).
    Any comments on this is appreciated.
    Thanks
    With Wishes
    Krishna kanth

    You say its urgent
    So urgent, so oh oh urgent
    Just wait and see
    How urgent my love can be
    Its urgent

  • Months ago I tried to uninstall itunes from Windows 7 after an update failed. I couldn't do it because two files, ShellStreams.resources and ShellStreams.dll were in use. Any suggestions, please?

    Months ago I tried to uninstall itunes from Windows 7 after an update failed. I couldn't complete it because two files (ShellStreams.resources and ShellStreams.dll ) were in use. I'm ready to try again. Any Suggestions, please.

    See Troubleshooting issues with iTunes for Windows updates for tips on repairing the iTunes installation. One of the tools mentioned there, Unlocker, should be able to force delete the files that you are having trouble removing.
    tt2

  • Scrolling and windows resizing

    Is there a way to turn off the feature where if you scroll up or down with your mouse positioned over a windows title bar it resizes the window. This "feature" works with both a standard mouse using a scrollwheel and also when using a touchpad with two finger scrolling.

    The only third party program that I use which modifies the mouse is Sizeup and I have rigorously gone through its setting to determine if it was causing this behaviour. Also the behavior persists even when I shut down sizeup so I don't think it is the cause.
    edit:
    I would also add that this behaviour only appeared after I upgraded to 10.8. While I do have a lot of third party programs running and alot of them were updated when mountain lion was released so it is theoretically possible that this is behaviour is comeing from an external source I have no idea why any of the other programs I have running would affect window resizing.

  • Dynamic resizing in JDialog using setSize not working properly on solaris

    can anyone help..
    Dynamic resizing in JDialog using setSize is not working properly on solaris, its work fine on windows.
    i have set Jdialog size to setSize(768,364),
    when i dynamically resizing it to setSize(768,575); it doesn't get change but when i move dialog using mouse it gets refreshed.
    this problem is only happening on solaris not on windows.

    Hi,
    It's only an approach but try a call of validate() or repaint() after re-setting the size of your dialog.
    Cheers, Mathias

Maybe you are looking for