CS4 & CS5 focus stealing when debugger writes to output panel

I have an incredibly frustrating problem going back to CS4.  I'm running on Win7 with dual monitors.  After hours, days, or weeks while running a FLA through the debugger, the IDE gets into a bad state.  Any time the debugger outputs text into the output panel (via trace), the IDE will 'steal' focus from whatever app I'm in. So if i'm writing an email, it will suddenly jump focus to CS5.  If there's a lot of debug trace spew, it's impossible to work.  It steals focus from flash player itself too, so the app continuously 'loses focus and I have to go find it again.
The other symptom associated with this is if the FLA I'm debugging hits an exception/crash, the flash IDE AND flash player freeze.  I must close the player in order to get the IDE to respond again.
Non-solutions (these don't work)
1. Restarting IDE
2. Cold boot
3. System restore to an older version
Solutions:
Usually, uninstalling and reinstalling the IDE solves this.  ***
***However, recently, not even reinstalling the IDE solves this. I even tried using adob'e "cleanup tool" prior to reinstall.  I had to reinstall my entire Win7 OS.  This was 2 days ago, and today, the problem already came back.  I haven't found any information on this anywhere after extensive searching.
My system is a cookie cutter win7 installation with latest system updates, plus this software:
Eclipse for PHP debugging
Xampp171 (apache, mysql, phpmyadmin)
utorrent
skype
chrome w/ default flash player
explorer w/ debug flash player
Any light shed on this issue would be very highly appreciated.
Thanks ahead!

Yeah... I think CS5 thinks it's doing things correctly.
It tries to keep the proportions the same as the original composition.
I did an experiment where I scaled the the same circle in the output module to 100x360. CS5 writes AR info in the file that tries to still keep the 16:9 proportions - the result looks horrible.
I usually work with widescreen PAL footage (PAR 1,46). 720x576.
We send a scaled down version to clients for preview purposes, so we scale the 720x576 image to 640x360. Crop 4 pixels from the top and bottom to make the height 352 (dividable by 16, better for compression)
Now the scaled down clip has jagged edges from the CS5 aspect ratio correction. If there were no AR info written in the file, the result would look perfect, like it was in CS3 and CS4.
Is there a way to turn it off in CS5?

Similar Messages

  • Cs4/Cs5 PS - Menu bar drives me nuts

    Is that possible to eliminate that gap between the top menu bar and the top screen edge?
    It's very irritating that when I move my mouse to the top edge I cannot unfold menus with a click. I have to move the pointer down
    a bit. It's like shooting ducks and hinders work.
    I saw that in Cs4 trial  but hoped it would be brought back to normal in cs5 when finally I want to upgrade.
    Hope I'm missing some settings...
    Joey33

    Yes Jesper, couldn't be further from truth - the area at the top alongside the edge is for functionalities reserved for windows, not necessarily for unfolding menus.
    However, previous versions (at least the ones I've been using 7-9) allowed for 3 modes of workspace - 1 stnd and 2 full screen (with and without menu bar).
    The difference with CS4/Cs5 is that when working in mode 2 - full screen + menu bar, you can NO LONGER access/unfold menus by clicking at the very edge of the screen.
    Since I've grown used to that for years, it's really frustrating and odd that it has been changed. Apart from keyboard shortcuts I do use menu a lot and now
    the workflow is hindered indeed.
    It was simultaneous with the 'application frame' introduced in CS4 - probabaly then this dead area in full screen mode appeared.
    To be precise and well-understood - it is an issue in FULL SCREEN PLUS MENU BAR.
    Regards,
    Joey33

  • Problem to write urdu paragraph in PhotoShop cs4,cs5,cs6.

    Hi All,
    Calling out for help from #Pakistan here
    I want to write #urdu paragraph in Photoshop cs4,cs5 and cs6 or in any support version. please guide me with tutorial. have serious problem in this regard.
    Cheers in advance (I hope)
    Shahbaz
    online urdu video tutorial - Online IT Tutor

    nope... this is a known issue for users. Hopefully will be resolved soon (not holding my breath though). Some people have suggested resetting pram, uninstalling flash, quitting Safari, updating java, installing third party mouse driver software etc... but for me nothing has worked yet.
    I have 2 monitors and this happens quite a lot, but ONLY on my iMac monitor. If i move the mouse cursor to my second screen it's visible there, move it back to my iMac screen and it disappears.
    My workaround is to hover over the dock to claim my cursor back, but that is really just an annoying thing to do every 5 mins.
    I am convinced this is a OSX issue but the two companies are just pointing fingers which will not result in any fix any time soon.
    Thinking about selling my two Apple machines because of this bug.

  • When i write in photoshop cs5 the error

    when i write in photoshop cs5 the error is (img)
    Why this error please help me

    This error is generally caused by a incompatible/incomplete/corrupt font. When you select the type tool, Photoshop reads all of your available fonts to generate a WYSIWYG list. To test if a bad font is the cause of this error, go to Preferences > Type and disable the Font Preview. If the Type tool now works without error, then we know a font is the root issue.
    If on Windows, uninstall (drag font files out of the Fonts folder) and reinstall (drag font files into the Fonts folder) your most recent fonts. The files will be verified on reinstall and most likely one or more will give an error. If on Mac, validate your fonts with Fontbook.

  • Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.

    Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.  Has there been a fix or patch to this issue or do I have to convert back to CS4 to open the file?

    Having the same problem in CS6.  I can tell you that converting back to CS4 will NOT solve the problem.  It seems when support for backward compatibility is discontinued, there's just no way to get
    any help at all?  Absolute failure to provide any user support so far...

  • [CS4/CS5] ScriptUI focus event (Win/Mac)

    Hi friends,
    I'm looking after a way to control the focus of EditText widgets within a Dialog but I'm totally confused by the event loop logics —especially in Mac OS.
    The basic task I need to achieve is to attach a validation mechanism to an EditText. When the user has entered a wrong field and the change event occurs, I want to display an alert box, then re-activate the field. The problem is that both the change event and the alert box interfer with focus attribution. I think that user or system focus/blur events are stacked so that any command that attempts to focus back to the original widget cannot work while the stack is not empty.
    Here is a simple test to illustrate my problem. The script is supposed to display an alert when the user change a field, then it tries to focus back to the corresponding field through myWidget.active = true. This does not work.
    var     u,
         w = new Window('dialog',u,u,{xname:'Window'}),
         e1 = w.add('edittext', u, "",{xname:'EditText (1)'}),
         e2 = w.add('edittext', u, "",{xname:'EditText (2)'}),
         eInfo = w.add('edittext', [0,0,300,400], "",{xname: 'EditText (Info)', multiline:true}),
         b = w.add('button',u,'Clear', {xname:'Button'});
    e1.characters = e2.characters = 20;
    var anyEvent = function(ev)
         var tg = ev.target;
         eInfo.text += (tg.properties.xname + ' -> ' +
              ev.type.toUpperCase() +
              (tg.active ? '  (active)':'  (non active)') +
              '\n');
    var changeEvent = function(ev)
         eInfo.text += ('\n--- BEFORE Breaking Alert\n');
         alert("Breaking alert");
         // Trying to FOCUS back on ev.target
         eInfo.text += ('\n--- BEFORE Active=true\n');
         ev.target.active = true;
         eInfo.text += ('--- AFTER Active=true\n');
    // Event 'inspector'
    w.addEventListener('change', anyEvent);
    w.addEventListener('focus', anyEvent);
    w.addEventListener('blur', anyEvent);
    // Events
    w.addEventListener('change', changeEvent);
    b.onClick = function(){eInfo.text = '';};
    w.show();
    I tried various strategies to address this problem by using event timestamps and/or dispatching custom new UIEvent('focus'...), but nothing works conveniently.
    In addition I got odd behaviours in Mac OS. The below screenshot shows a piece of a ScriptUI dialog —using a custom framework, so don't be surprised by the skin! What is weird is that in a particular state *two* EditText controls have the focus ring at the same time:
    I didn't know such a thing could happen. I probably did not understand anything about the 'focus' paradigm.
    Any help from an expert would be greatly appreciated. Thanks a lot!
    @+
    Marc

    Harbs. wrote:
    It does seem to change the focus, but you are still left with a cursor sometimes (which does not work).
    The one that has the focus rect allows input and .active = true seems to work fine. (Mac 10.6 CS5)
    Harbs
    Well, this is not so clear to me. My beta-tester —also Mac CS5— reports unpredictable behaviors. It also depends on how the user change the focus: using the TAB key and clicking into another field are not equivalent. (It seems that the change-focus-by-click event is more complicated to counteract...)
    But generally, on Mac platforms, we cannot be sure that setting myEditText.active = true gives the focus back to myEditText when other user events are running. The problem is that the active property is not always 'reliable'. We found that (under unstable circumstances) e1.active might returns true while e2 actually owns the focus ring! Somehow, Mac systems can dissociate the 'active' control and the focus... I don't know.
    My assumption is that the focus has a high level priority in the Mac event loop and that it closely mirrors the user interaction, while the active property is an abstract thing featured by the ScriptUI layer. The purpose of ScriptUI is to wrap OS events and widgets in a single scripting interface for both Mac and Win, but ScriptUI is nothing but a bridge. I suppose that "myWidget is active" and "myWidget has the focus" means exactly the same thing in Windows, so ScriptUI can easily target the focus through the active property in Win environment. But Mac OS doesn't work the same way.
    Interestingly when we set an EditText as borderless in Windows, we entirely remove the default widget appearence. On the contrary, a borderless EditText in Mac still reserve an additional region for the focus and there is no way to hide the focus ring when the control receives the inputs.
    In addition, I posted above a screenshot where two EditText instances have the focus ring at the same time. I'm not a Mac user but I was told that this is not a normal situation. Then playing with the active property in ScriptUI can really disrupt the focus behavior on Mac platforms...
    My first idea was to study more closely event triggering and to use a timestamp-based routine to keep the control of the focus. So I sent the following script to my beta-tester:
    var     u,
         w = new Window('dialog',u,u,{xname:'Window'}),
         e1 = w.add('edittext', u, "aaa",{xname:'(1)'}),
         e2 = w.add('edittext', u, "",{xname:'(2)'}),
         eInfo = w.add('edittext', [0,0,300,400], "",{xname: '(Info)', multiline:true}),
         cForce = w.add('checkbox', u, "Force default value on error"),
         b = w.add('button',u,'Clear', {xname:'(Button)', name:'ok'});
    e1.characters = e2.characters = 20;
    var fgTarget = null,
         fgTimeStamp = +new Date,
         fgAlerting = null,
         fgNonValid;
    var blurEventHandler = function(ev)
         if( fgAlerting ) return;
         var d = +new Date - fgTimeStamp;
         if( 100 < d )
              eInfo.text = '';
              fgTarget = ev.target;
              fgTimeStamp = +new Date;
              fgAlerting = null;
              fgNonValid = isNaN(fgTarget.text);
         d += ' ms';
         eInfo.text += (ev.target.properties.xname + ' is losing the focus  ' + d + '\n');
         fgTarget.active = true;
         if( fgNonValid )
              eInfo.text += ('  Re-activate ' + fgTarget.properties.xname +
                   ' from '+ ev.target.properties.xname + '\n' +
                   '  w.active=' + w.active + '\n' +
                   '  e1.active=' + e1.active + '\n' +
                   '  e2.active=' + e2.active + '\n') ;
              if( null===fgAlerting )
                   fgAlerting = true;
                   eInfo.text += '--- ALERT ---\n';
                   alert("Please enter a numeric value or let the field empty.");
                   fgAlerting = false;
                   if( cForce.value ) fgTarget.text = '50';
                   fgTimeStamp = +new Date;
    e1.addEventListener('blur',blurEventHandler);
    e2.addEventListener('blur',blurEventHandler);
    var anyEventHandler = function(ev)
         eInfo.text += (ev.target.properties.xname + ' -> ' + ev.type + '\n');
    e1.addEventListener('mousedown',anyEventHandler);
    e1.addEventListener('mouseup',anyEventHandler);
    e1.addEventListener('keydown',anyEventHandler);
    e1.addEventListener('keyup',anyEventHandler);
    e2.addEventListener('mousedown',anyEventHandler);
    e2.addEventListener('mouseup',anyEventHandler);
    e2.addEventListener('keydown',anyEventHandler);
    e2.addEventListener('keyup',anyEventHandler);
    b.onClick = function(){eInfo.text='';}
    e1.active = true;
    w.show();
    This script gives unstable results. ScriptUI does not always report every event that actually occurs.
    But as a general rule, what the user has done supersedes what the script can do.
    Any help from ScriptUI / Mac gurus would be highly welcome.
    @+
    Marc

  • From When Adobe CS3, CS4, Cs5, CS5.5 and CS6 will loose activation support like cs and cs2

    From When Adobe CS3, CS4, Cs5, CS5.5 and CS6 will loose activation support like cs and cs2

    Nobody can tell you that. CS2 activation was turned off because of bugs in the software that made it too difficult to maintain. so far no such thing has been the case with the otehr versions. Either way, if and when that time comes surely Adobe will let you know and provide a solution...
    Mylenium

  • Hi I have a Creative Suite CS5 Master Collection. I want to upgrade to CSS but when I write all the required fields to obtain the special price, I have an Error Message. Is there a phone where I can have a response?

    Hi I have a Creative Suite CS5 Master Collection. I want to upgrade to CSS but when I write all the required fields to obtain the special price, I have an Error Message. Is there a phone where I can have a response?
    I´m from Mexico
    Thanks a lot

    Under this address, CC has been purchased in July  21st, 2014, that is the reason it is not allowing further purchase as under one Adobe ID, only one subscription of CC( Individual, single app, Team) can be activated & used.
    Regards
    Rajshree

  • InDesign (CS4) takes focus back after switching to other program: very annoying

    I am getting more and more annoyed by the fact that InDesign keeps taking back the focus after closing a document. I am working in InDesign (Mac OS X 10.6.4), I close the document and switch to (for instance) the Finder and suddenly I am back in InDesign again. It happens DAILY that I am doing something thinking I am NOT in InDesign anymore while I am there (again). For instance, it happens quite frequently that I want to open a Photoshop file and that I suddenly notice I am not in Photoshop but back in InDesign again. Even worse: it also happens that I get a dialoge and press No and find out I just closed another InDesign document which I didn't save yet because I thought I was in another program already...
    In short: very annoying. What is causing this...? Why does InDesign keep focus? When I go to the Finder, I want to stay there and I do NOT want InDesign to become active automatically!
    Anyone knows what is causing this and, more important, if there is a way to get rid of this annyoing behaviour?

    I guess you mean when you have InDesign document open and you cmd-tab to let say Photoshop the Indesign document window is still accessible by one click even if Photoshop menu is active on the top.
    This is solved in CS5 by "Application Frame" option.
    What concerns the CS4 I do believe that this behaviour is simply how Apple OSX handles the document's windows, Not much you can do unless you will minimize all documents before switching to another app.

  • Deploy; JDev grabs focus back when done.

    Is there any way to make JDEV not grab focus back when a deployment is complete?
    ISSUE: A deployment takes minutes. I use my PC to do other things while deployment ( and compiling ) is going on... like email, write on this board, etc.
    I can do this without performance pain cuz I'm running a dual processor.
    While I'm busy typing away JDEV suddenly completes the deployment, grabs focus.. and stuff I'm typing furiously into email gets dropped into wherever the cursor was last sitting in the JDEV source editor!
    For that matter, I've had deployments fail when I'm doing other things... If I deploy and do NOTHING on that PC while deployment is occurring.. it happily completes.
    My only course at the moment is to sit and stare at the screen during deployments.. twiddling my fingers ( no JDEV manuals to read through off my shelf grin ). I'm almost to the point where I need a second computer to avoid losing an hour a day of "work" outside of JDEV.
    JDEV isn't the only critter who does this sorta thing, but it'd be nice if it shared the sandbox more politely.

    Yes, there is a way to do this:
    1) Select your deployment profile.
    2) Right click and select "Properties..."
    3) Go to the "Project" tab.
    4) Click the "Advanced..." button.
    5) Under the "General" tab, UNCHECK "Redirect messages to the message view".
    This will cause messages to be accumulated in a text area that is within the modal dialog. Once you dismiss the dialog you will no longer have access to the deployment messages that were produced. But, JDeveloper will not steal the focus back when deployment finishes in this case, because that dialog stays up until you explicitly close it.
    Concerning your second issue with deployment failing while you're doing something else, can you provide additional details on what kind of deployment profile you are deploying, how you invoke deployment, and what the failure messages are?
    Hope this helps.
    --joj (JDeveloper Deployment)
    null

  • CS6 Beta Modifies CS4 & CS5 Bridge File Associations (W7 Pro 64Bit SP1)

    Symptoms:
    After installing CS6 including bridge CS6 onto a W7 pro 64Bit Machine with SP1.
    The File associations in the existing copies of CS4 and CS5 bridge are updated to make the CS6 Beta the default programme for opening the majority of file types from either CS4 or CS5 bridge.
    When right clicking ona file from CS4/5 bridge only the option of opening in CS6 is presented
    Expected Bahaviour:
    I expected that CS6 would be the default programme launched from CS6 bridge but that CS4/CS5 would remain the default programmes launched from their own versions of bridge.
    Setting CS6 as the default file association in previous versions of bridge makes no sense at the Beta stage, as it interupts a clean migration back to existing workflow.
    I would also question the value in not preserving the existing file associations in prior versions of bridge in the final CS6 release, as there are cases when it might be desirable to go back to a previous version of CS, in which case opening that version of bridge and launching directly into the prior versions of CS is very desirable.
    Is there anyway to quickly restore the previous associations in CS4/CS5 bridge and be sure that they are exactly the same as prior to the CS6 beta install ?

    Sorry for the noise. I misunderstood your depth of knowlege and what you had tried. I also committed the sin of not testing the procedure all the way through because I did not want to change the association on my computer. I get the same behavior.
    Guess for .jpg
    Registry shows for .jpg:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpg\UserCho ice  Progid = Applications\Photoshop.exe
    HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\Photoshop.exe\shell\open\command  (Default) = "C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe" "%1"
    UserChoice seems to be added when I made the association choice. Note that it points into Applications with a non-version specific Photoshop.exe. Within HKLM\....\Applications there is only one Photoshop.exe -- no version -- and that entry points to CS6.
    I believe that explains why the browsed to association is CS6. It does not explain why it would be set up that way. Probably has something to do with Windows special handling of certain file extensions. Beyond my depth and tells me I am not going to find a solution.

  • Illustrator/Photoshop CS5.5 crashes when I'm in the font menu

    Hi there, I've seen another discussion about this, but unfortunately it didn't solve my problem. I'm running Yosemite and Illustrator CS5.5 (I've had some similar problems in PS too). When I go into the font menu in Illustrator, I'll start scrolling and it crashes. Sometimes I don't even get to scroll before it crashes. Admittedly I've downloaded a lot of fonts lately, so I thought it might be a corrupt font. Sure enough, I found a couple of bad ones, and some sketchy ones, and I removed them. Then I went and cleared my font caches using Onyx. Neither of these things seem to help. I know I'm not the only one who is having this problem. Any help would be greatly appreciated!

    bexicon,
    Did you try item 1) in 5) of the list? That implies moving all the fonts out, then see, then move half the fonts in again, or something similar, to find every substandard font that might hide somewhere.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • HT4796 After migrating all of my adobe software (Cs4, cs5, etc.) to my new imac, the software won't open due to many errors. Any help on this?

    After migrating all of my adobe software (Cs4, cs5, etc.) to my new imac, the software won't open due to many errors. Any help on this?

    Welcome to the Apple Support Communities
    Adobe software is conflictive when you use Migration Assistant because their applications don't work properly after migration. If you keep the DVDs or the installers of your software, use them to reinstall all your Adobe applications and they should start working correctly

  • How can you tell what version of Illustrator (Ver. 10, CS4, CS5, CC Ver.17, etc.) saved artwork is in?

    Our company needs to save artwork we create in Illustrator in different versions depending on our various client's needs. Is there anyway to know what version of Illustrator (Version 10, CS4, CS5, CC Version17, etc.) saved artwork is in? When we view preferences it just shows the current version of the application not the version the individual artwork is saved at. Any advise would be extremely helpful. Thanks.

    If you are on a Mac there's always Get Info

  • CS5 closes automatically when opening or saving a file.

    It was working perfectly fine over the weekend and then Monday I open illustrator and try to open a drawing I was working on and it closes on me everytime. Now I can't open or save files without it closing itself. I would uninstall and reinstall it but i lost my code. Please Help! I have to make vector images for a couple of clients of mine!

    MXWoods,
    In addition to what Monika said, something unpleasant has obviously happened.
    Probably, either you have changed something (added plugins, have something else running, or the like), or your preferences have become corrupt, or there is a temporary affliction.
    Sometimes it is just a matter of restarting (up to thrice).
    As you can see below, reinstalling is far down the following general list.
    You may try the following (you may have tried/done some of them already) and see whether it helps (the following is a general list of things you may try when the issue is not in a specific file; 3) and 4) are specifically aimed at possibly corrupt preferences):
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder Other options (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

Maybe you are looking for