CS6 Serious Bug on Windows Dragging

I saw this problem a few day before and this is something that need to pay attention, the problem started when I had a multiple tab to do
a work, then I put some tabs windows and drag to the left to make my drawing more easier base on the reference on the left
and suddenly the tabs goes crazy and always started to move up
I've found the solution by autohide the taskbar, but it really not confortable because taskbar are usefull at the sametime

Known bug.  Adobe working on it.

Similar Messages

  • Am i the only one that see's serious bugs with Windows Search index on Windows 8.1 and Office 2013?

    So i originally had Windows 8 and Office 2013 installed. I noticed that alot of my emails in Outlook 2013 as well as contacts werent being indexed. I waited for windows 8.1 and did an upgrade hoping the 8.1 would fix the issue. It didn't.
    So i formatted my hard drive, installed fresh windows 8.1, and office 2013, and let it Windows Index run. I see 2 things happening.
    A.) The indexer never completes
    B.) the indexer takes up 40% cpu usage.
    I tried rebuilding, creating index from new location, nothing seemed to work. I decided to prevent the indexer from searching Office apps (outlook and onenote) and low and behold it completes indexing. 
    I decided to try and format again and see if there was some bug causing the issue. So this week I formatted once agian, loaded Windows 8.1, installed updates, and loaded office 2013. Once again, my indexer
    is stuck around 70k items and my processor usage on Searchindexer.exe is around 30-40%.
    Is this a known bug with 8.1 and office?
    Brad Nelson MCSE/DCSE/A+/Network+/WCSP

    Hi,
    I test in my environment, and Windows would finish the index, the CPU usage keeps in 29%, which my RAM is 8G.
    Can you tell us how you let the Windows Index run?
    Alex Zhao
    TechNet Community Support

  • Hi, I developed a web application using HTML5-Offline Application Cache mechanism. Inspite of deleting the cache as mentioned in the above steps, Firefox still maintains a copy of the page in it's cache. Also, a serious bug is, even though we delete all

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    Hi,
    I developed a web application using HTML5-Offline Application Cache mechanism. Inspite of deleting the cache as mentioned in the above steps, Firefox still maintains a copy of the page in it's cache. Also, a serious bug is, even though we delete all temp files used by Firefox, and open the previously cached page, it displays it correctly, but upon refreshing/reloading it again shows the previous version of the page maintained in the cache.
    == Troubleshooting information
    ==
    HTML5: Application Caching
    .style1 {
    font-family: Consolas;
    font-size: small;
    text-align: left;
    margin-left: 80px;
    function onCacheChecking(e)
    printOutput("CHECKINGContents of the manifest are being checked.", 0);
    function onCacheCached(e) {
    printOutput("CACHEDAll the resources mentioned in the manifest have been downloaded", 0);
    function onCacheNoUpdate(e)
    printOutput("NOUPDATEManifest file has not been changed. No updates took place.", 0);
    function onCacheUpdateReady(e)
    printOutput("UPDATEREADYChanges have been made to manifest file, and were downloaded.", 0);
    function onCacheError(e) {
    printOutput("ERRORAn error occured while trying to process manifest file.", 0);
    function onCacheObselete(e)
    printOutput("OBSOLETEEither the manifest file has been deleted or renamed at the source", 0);
    function onCacheDownloading(e) {
    printOutput("DOWNLOADINGDownloading resources into local cache.", 0);
    function onCacheProgress(e) {
    printOutput("PROGRESSDownload in process.", 0);
    function printOutput(statusMessages, howToTell)
    * Outputs information about an event with its description
    * @param statusMessages The message string to be displayed that describes the event
    * @param howToTell Specifies if the output is to be written onto document(0) or alert(1) or both(2)
    try {
    if (howToTell == 2) {
    document.getElementById("stat").innerHTML += statusMessages;
    window.alert(statusMessages);
    else if (howToTell == 0) {
    document.getElementById("stat").innerHTML += statusMessages;
    else if (howToTell == 1) {
    window.alert(statusMessages);
    catch (IOExceptionOutput) {
    window.alert(IOExceptionOutput);
    function initiateCaching()
    var ONLY_DOC = 0;
    var ONLY_ALERT = 1;
    var BOTH_DOC_ALERT = 2;
    try
    if (window.applicationCache)
    var appcache = window.applicationCache;
    printOutput("BROWSER COMPATIBILITYSUCCESS!! AppCache works on this browser.", 0);
    appcache.addEventListener('checking', onCacheChecking, false);
    appcache.addEventListener('cached', onCacheCached, false);
    appcache.addEventListener('noupdate', onCacheNoUpdate, false);
    appcache.addEventListener('downloading', onCacheDownloading, false);
    appcache.addEventListener('progress', onCacheProgress, false);
    appcache.addEventListener('updateready', onCacheUpdateReady, false);
    appcache.addEventListener('error', onCacheError, false);
    appcache.addEventListener('obsolete', onCacheObselete, false);
    else
    document.getElementById("stat").innerHTML = "Failure! I cant work.";
    catch (UnknownError)
    window.alert('Internet Explorer does not support Application Caching yet.\nPlease run me on Safari or Firefox browsers\n\n');
    stat.innerHTML = "Failure! I cant work.";
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729; .NET4.0E)
    == Plugins installed
    ==
    *-Shockwave Flash 10.0 r45
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Google Update
    *4.0.50524.0
    *Office Live Update v1.4
    *NPWLPG
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object
    Thanks & Regards,
    Kandarpa Chandrasekhar Omkar
    Software Engineer
    Wipro Technologies
    Bangalore.
    [email protected]
    [email protected]

    We have had this issue many, many times before including on the latest 3.6 rev. It appears that when the applicationCache has an update triggered by a new manifest file, the browser may still use only its local network cache to check for updates to the files in the manifest, instead of forcing an HTTP request and revalidating both the browser cache and the applicationCache versions of the cached file (seems there is more than one). I have to assume this is a browser bug, as one should not have to frig with server Cache-Control headers and such to get this to work as expected (and even then it still doesn't sometimes).
    The only thing that seems to fix the problem is setting network.http.use-cache to false (default is true) in about:config . This helps my case because we only ever run offline (applicationCache driven) apps in the affected browser (our managed mobile apps platform), but it will otherwise slow down your browser experience considerably.

  • Is this a security bug in Windows 8.1?

    I think I have discovered a serious security bug in Windows 8.1.
    Today I was using my (non-Admin) user account and with Internet Explorer I saved a file in the default Downloads folder (under This PC). The file was saved, but when I went to that folder, the file was not there! Now, I was about to downloaded
    it again, using IE, same as before, when I noticed in the Save dialog box that the file had indeed been downloaded, and that it was there, in the Downloads folder under This PC. Frustrated, I went to that very folder, but the file was nowhere
    to be found. I was really puzzled.
    Then, by chance, while logged in another account (namely the Admin account), I happened to go to the Downloads folder, and there was the file that I had downloaded using the other account.
    Obviously, what I described above represents a security problem: firstly because my private files may get saved by mistake into another person's account without me even realizing it, and secondly because I was able to access another person account
    (i.e. the Admin account) via the IE's Save dialog box, seeing the list of the files there, and possibly even accessing them (I have not tried the latter, though).
    Has anyone experienced anything like the situation I described?
    I must also say that I later tried to replicate this abnormal behavior, but for some unknown reason I couldn't. Anyway, I am sure that what I described above is an accurate account of how things went.

    Hi,
    Since I cannot repro your issue on my own computer, it cannot be a bug.
    I suggest we try to use another user account to see if there is the same issue happened.
    Please make sure your location of download folder is right:
    Right click Downloads folder, and choose Properties.
    Make sure the location is right under your user profile.
    If not, please click Location and click Restore default.
    If we still fail to solve you issue, please run Process monitor at the end of the downloading process to capture the actions, and upload the save log here for further research.
    You can also check if there is any weird actions at the end of downloading process.
    Process Monitor v3.05
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    How to use, please refer to this article:
    Using Process Monitor to capture system events
    http://www.sophos.com/en-us/support/knowledgebase/119038.aspx
    Keep post.
    Kate Li
    TechNet Community Support

  • Serious Bug Powerbuilder 12.5.2 build 5609 with Inheritance

    Hi ,
    I'm using Powerbuilder 12.5.2. build 5609. I think it is the latest release. I have three windows in my app.
    The Grandfather , the father and the child. Child window (w_child)  is inherited from the father (w_father) which inherits from the grandfather (w_grandfather).
    I have some events in my windows , clicked events with code etc.
    I made a change in the grandfather , regenerated the father and the child and my code in the child window was messed up!. And when I say messed up I mean that the code in my clicked event was disappeared or moved in other cases to other events.
    With Full build and incremental build didn't fix the bug.
    Using export and import FIXED the issue.
    BUT.....
    Why is this happening ? Of course this is a Powerbuilder BUG but  do I need to export and import my objects when I make a change to ancestors objects ?
    FYI using the edit source option I can see the code that it's there.
    Will this issue been fixed because this is a very serious BUG. Every time I want to make a change to ancestors should I need to export all objects and import them again ???
    thank you
    zkar

    Hi Andreas ,
    I don't know.
    But I tried the below scenario and found a different bug.
    Same hierarchy. Grandfather, Father and Child.
    Steps to reproduce.
    1. Go to Fathers screen and Add a button. Leave the name as it is. cb_1
    2. Go to Grandfather and add a button(didn't have any buttons yet). The name will be cb_1.
    If you try to open the Father's screen you will be prompted from Powebuilder with a messagebox which suggest to make the changes for you because there was a name conflict. OK fair enough.
    But.
    If you press OK and let powerbuilder handles this then this doesn't work.
    Anyway. This is a completely different thing from the original post . But I have just founded out trying to reproduce it to a new application.
    FYI. The application was at first in Powerbuilder 10 but we have Migrated succesfully to powerbuilder 12.5 and It was working fine until we ;ve changed the intermediate level of inheritance.
    The solution to my problem is export and import the intermediate level so don't search anymore. You will loose time trying to reproduce it.
    thank you

  • Firefox 4 stops opening new windows after browser window dragged to second display

    Firefox 4 stops opening new windows after browser window dragged to second display. It's weird. Behavior is fine until I drag any browser window to the attached second display, and after this point it stops opening new windows but will still open new tabs in the same window. Restart fixes it until I drag the window back to the second display.
    "Show all bookmarks" stops working too--won't open a new window.
    This is after clean reinstall with total deletion of any Firefox/Mozilla folders and the previously installed app and a restart of the computer.
    Mac OS X 10.6.7
    Firefox 4

    Pretty sure this is either:
    '''Bug 644733'''
    or
    '''Bug 609405'''
    (...and they may be reporting the same thing.)

  • A serious bug of render "PAL" timeline by "Media Encoder"

    I use premiere cc2014 at PC/Mac, I find a serious bug when I complete a job in a "PAL" setup time line (720x570 25fps (PAL) aspect ratio 4:3), if i export to a mpeg 2 file with same setup to "Media Encoder", the out put file become a "4:3" Pillarbox file (left and right become a black bar). But If I export file without using "Media Encoder", the file is prefectly same as the timeline setup. Since I always output timeline(s) in "batch", so I must need to use Media Encoder. Please help to fix that bug. P.S., I have try in CS5.5, CS6, there is no that bug in Media Encoder.

    Hi MRJay,
    I had a similar issue only when using 3rd party plugin (Creative Impatience) that would go all catywhumpus on Encoder Queue outputs...it would mess with certain images or text that were not necessarily matching the project proportions (e.g. crop them, or ignore 1/2 of my Feathered Crop, etc.)
    The solution was bizarre, and likely source-code default setting based...
    After going to Media-->Export and when in the Encoder interface--before Queueing-- find a section on your timline with the scroll controls where the graphic is, make sure you are in Source Tab (top left), goto Crop Proportions; Use the drop down tab to actually set the Output dimension to what your sequence is (you won't have to actually export with this setting) and then switch to the Output tab. Does it now appear correct? That's it...undo the Crop Prop. and output normally. Hope this helps...

  • WARNING: Serious bug in Netscape 6.01 browser

    All--
    I've just been bitten by a serious bug in the Netscape 6.01 browser, and
    want to let you know about it before it bites you too. Full bug details can
    be found at http://bugzilla.mozilla.org/show_bug.cgi?id=55055
    A short summary is that the back & forward buttons incorrectly resubmit form
    fields. For example, say I have this page flow:
    Page A -> Page B - (submit form) -> Page A -> Page C
    Use Back button to go from C back to A
    On backing up from C to A, Netscape tells me that there are posted form
    elements and asks if I want to resubmit them or cancel the back action.
    Because I'm backing up to A, it tries to resubmit the form fields from page
    B in order to show page A!
    What does this mean? It means that the Web application gets another hit to
    page B, as if the user had pushed a button on it again--even if this isn't
    allowed by the application. In other words, the back button becomes a
    serious threat to an application's consistency. Neither IE nor Opera do
    this, nor did any other version of Netscape.
    Please keep this behavior in mind if you are designing an application that
    could be used with Netscape 6. For those transactions that you need to
    ensure aren't executed more than once, you may want to set a hidden field on
    the page (page B) or otherwise keep track of a value that indicates whether
    the transaction has been executed or not. Another option might be to set an
    HTTP header indicating that the problematic page (page A) can't be cached by
    the browser (this differs from what one might do in the "normal" situation
    of telling the browser not to cache page B, so that backing up from page A
    to B wouldn't be possible).
    Todd

    Double tap with THREE fingers. Then go into Settings>General>Accessibility and turn zoom off.

  • Serious bugs in the SR400 gated photon counter LabVIEW drivers

    Hi
    I am developing an application with SR400 and came
    across what I think is a bug in the LabVIEW driver. Essentially, none
    of the VI's allow you to set the preset counters. For instance, if you
    call Read VI and choose mode A, B for preset T, there is no way to
    specify preset T, which means that the count period defaults to some
    factory default, not a situation you want. This might also explain some
    of the timeouts some people are getting to SRQs that come later.
    Further,
    if you look at the block diagram of Read VI, the line selector string
    is set to "CM 0" for two distinct choices of the count mode. This is a
    serious bug. I do not know who wrote this driver, but it does seem, at
    least to me, that they did a rather shoddy job of it. How this driver even got certification to be posted at IDN is something I cannot explain.
    Comments welcome from those that use LabVIEW with SR400 and have used this driver.

    Hi. Dwell time of 2ms is good for me. It would be great if you can send me this file to circumvent the 2000points/measurement. Also, If i understand it right, if I set the Gate to CW, then my gate should always be open for the count period, they why do I have to set the gate parameters at all. I want to change the integration time, but for some reason I am not able to change it in your setup 2.VI at all. I made some changes in setup 2.vi. I removed the setting for channel B as I am not going to use it and I integrated the readchannel.vi into this file. I am not sure if I made a mistake in doing this. Now, I am able to write some data to a file, but I not as I want. If it helps, I am uploading my modified VI file and an example data file (Gate A width is 0.992s, Gate A delay and delay step are 0, Gate A mode is CW, Dwell time is 0.002s).
    Attachments:
    SR400-V.vi.vi ‏125 KB

  • "In the Data Palette window, drag the Login to Portal portlet ..."?

    Hi;
    In http://e-docs.bea.com/workshop/docs81/doc/en/portal/samples/login.html?skipReload=true it says "In the Data Palette window, drag the Login to Portal portlet onto a placeholder on the page. "What does this mean and how do I do it?
    And the following line is "In the Property Editor window, set any relevant properties." - where is the property window and what properties do I want to set and to what value?
    thanks - dave

    Help please
    thanks - dave

  • Fixed 11.0 BUG, but had another more serious BUG in 11.1

    But no one found this BUG, \u200b\u200bI have a question, and also did not care for me, from time to time lay off 750 people this time, the 11.0 developer to cut, resulting in 11.1 H.264 encoding so bad. And 11.0 full immeasurably.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3005174 I guess because the fix this BUG, \u200b\u200bcaused. In fact, not good, if not repaired
    https://bugbase.adobe.com/index.cfm?event=bug&id=3047043 11.1 New BUG, \u200b\u200bbut did not care for me, this is a very serious BUG, \u200b\u200bif not found, then it will put an end to 11 series, but 11.0 is excellent, and I hope can be restored to 11.0 in 11.2 look like.

    But no one found this BUG, \u200b\u200bI have a question, and also did not care for me, from time to time lay off 750 people this time, the 11.0 developer to cut, resulting in 11.1 H.264 encoding so bad. And 11.0 full immeasurably.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3005174 I guess because the fix this BUG, \u200b\u200bcaused. In fact, not good, if not repaired
    https://bugbase.adobe.com/index.cfm?event=bug&id=3047043 11.1 New BUG, \u200b\u200bbut did not care for me, this is a very serious BUG, \u200b\u200bif not found, then it will put an end to 11 series, but 11.0 is excellent, and I hope can be restored to 11.0 in 11.2 look like.

  • AI CS6 thumbnail views in windows explorer

    Does anyone at Adobe think it might be a good idea to enable AI CS6 thumbnail views in windows explorer again, uh, I mean, we're GRAPHICS DESIGNERS, and we, uh, need to browse IMAGE FILES in AI and PS. I know there are $19.95 third-party apps out there, but we're paying good money (thousands of $ over the next few decades) to get the BEST SOFTWARE ON EARTH, neh? I thought my brand new Windows 7 machine was bro-ken when all I saw was dumb-icons boo...

    Lol.  Adobe has known about this stupid problem for about 4 years.  Since Vista x64 started gaining popularity.  Acrobat 8.x was the first version where people really started scratching their heads wondering why & when the problem would be fixed.  Then came Acrobat 9.   And now "X".  Still not fixed, well, I'm sure next year we'll have Acrobat 11, so keep holding your breath.

  • Regrading full windows drag in remoteapp

    Hi,
    I've set up the "disable full window drag:i:1" setting in the rdp file for a remoteapp program, but it does not work.
    Using windows 7, RDP 7.1 (haven't upgraded to 8.0).
    Doesn't this setting work for remoteapps?
    Thanks

    Hi,
    That's what i did in the first place:
    "..I've set up the "disable full window drag:i:1"
    setting in the rdp file for a remoteapp program, but it does not work."
    What works is the following:
    On the client computer, go to "System"->"Adjust the appearance and performance of Windows" and disable the "Show windows contents while dragging".
    But like i said the earlier response, that disables it for all windows, both local and remoteapp. So basically, I'm asking, is it possible to do it for only the remoteapp windows?
    As you can see in the 2nd post you added in your response, he also had to set it up on the client.
    Regards,

  • Serious bug for 8.1.7 solaris Sparc download file

    I have downloaded the 8.1.7 solaris.cpio.gz file from the OTN page. I found a serious bug from the OUI program,that is when
    I run the "runInstaller" command ,It apperrs that ./runInstaller : syntax error in line 1 unexpected "(".
    Did anyone find this ? This is a seious problem for this install program , hope OTN to explain this situation. Thanks a lot!!

    If you go to http://metalink.oracle.com, patches & updates is one of the options in the navigation bar.
    Justin

  • Bug in windows installer

    The windows installer for jmf seems to overwrite the CLASSPATH instead of appending, which you would expect.
    /Esben

    "wpqs" wrote
    There seems to be a bug in Windows 7 when setting the Environment Path Variable from Control Panel - System - Advanced System Settings - System Variables - select Path - click Edit - opens The Edit System Variable dialog box
    The Edit System Variable dialog box displayed the same collection of path strings (each terminated by ';') as I get when I opened a command prompt window and type 'path'. However, it was not possible to add a new path string (c:\wills\bin;) after the last
    string. I presumed that the collection of path strings was too long so I removed a few of the path strings. Unfortunately, I still couldn't type my new path string.
    BUG1: I would appear that length validation for text control in the Edit System Variable dialog box is not set to the same length as the max length for the collection of path strings.
    BUG2: I was eventually able to enter my new path string after deleting some more path strings, but I hit further problems after saving my new path variable (press OK) as it seemed to delete some path strings at the start of the collection. For example %SystemRoot%\system32.
    Therefore, I was unable to reopen the dialog box from Control Panel.
    https://msmvps.com/blogs/erikr/archive/2007/09/17/maximum-length-of-environment-variables-windows.aspx
    may help :)
    Noel Paton | Nil Carborundum Illegitemi |
    CrashFixPC | The Three-toed Sloth

Maybe you are looking for