Freezing while opening files

Greetings,
I have run into an unusual problem. I can no longer open
files either on my local machine or remote server without
Dreamweaver CS3 freezing. I am using OS X Leopard - 10.5.2. A week
or so ago I was able to open my .asp files just fine. Now,
Dreamweaver simply freezes when I try and open them - either
locally or remotely. I tried deleted the preferences file and
removing site information from Manage Sites with no luck. I can
create and open new files, but cannot open the existing files.
I copied the files in question to a PC and opened them just
fine using Dreamweaver 8.02. I just don't know enough about the
technical aspects to properly troubleshoot this problem.
By the way, I am able to access, open and edit my files from
the remote server using my PC and version 8.02.
Any ideas?

As long as there's a problem in the recovery folder you will continue to have a problem on startup. Move the contents of the Recovery folder to a new location, like the desktop, and launch ID, then try to open the files using File > Open...
Other users report problems from time to time with CS3 and CS4 files opened in CS5 (and presumably 5.5), some of which do not show up until major editing has been completed. I recommend exporting the documents from CS3 to .inx and open the .inx in CS5.5.

Similar Messages

  • Why does reader freeze while opening some pdf files and others open instantaneously?

    I use pdf files created from CamScanner and shared from DropBox.  In DropBox, many times (over 50%) while opening the PDF the process freezes and the error message is Adobe Reader is not responding.  If you close the program, and re-open the file, it opens fine.  I have saved these files to my computer and the same issue occurs.  The files are 100-500kb, so I do not think size is the issue.  I have reinstalled Reader (11.1.10) and there is no improvement.

    This appears to have reduced the time to load a document.  Thanks Jimb      From: Anubha Goel <[email protected]>
    To: jimb70395944 <[email protected]>
    Sent: Friday, March 20, 2015 4:37 AM
    Subject: You have been mentioned by Anubha Goel in Re: why does reader freeze while opening some pdf files and others open instantaneously? in Adobe Community
    |
    You have been mentioned
    by Anubha Goel in Re: why does reader freeze while opening some pdf files and others open instantaneously? in Adobe Community - View Anubha Goel's reference to you  Hey jimb70395944, Please try disabling protected mode under 'Edit> Preferences> Security (Enhanced)' and uncheck 'Enable Enhanced Security' option.Then, try again and let me know.  Regards,Anubha
    Participate in the conversation by replying to this email
    To stop receiving these messages whenever you are mentioned, go to your preferences and disable notifications for direct social actions. |

  • I want to edit properties of the interface windows opened while "Open File", "Save Page As" and interface opened during Downloading of any file.

    I am doing a small project on dedicated web client where in user automatically logs in non-root user and Firefox automatically starts.
    I am using Fedora 14 kernel 2.6.35.12-88.fc14.i686 and Firefox 3.6.16.
    I have installed only Gnome in my computer with no Nautilus or other file browser on it.
    I want to edit properties of the interface windows opened while "Open File", "Save Page As" and interface opened during Downloading of any file.
    Please guide me for this.

    First, I sent an email to the author of PhotoME to inform him of the serious issues his addon caused with Firefox latest versions.
    Now, for those of you who do not have the PhotoME addon and yet experience the same problem that I had and that I described above, I suggest the following strategy.
    As PhotoME did cause these problems with Firefox latest versions, I am pretty covinved other addons probably might cause these problems too. Therefore, adopt the following method.
    Test one addon at a time to see if this particular addon is behind your Firefox issues like the ones I had.
    So, disable one addon only at a time. Then close your Firefox and restart it from scratch and see if you still have your Firefox problems. You must restart the Firefox browser from scratch. If you still have these Firefox problems, re-enable the disabled addon, restart your Firefox (again!) and repeat the same method for every single addon that you have.
    Try to be selective by choosing first addons that are more likely to cause your Firefox problems such as not very well-known or not very popular addons (like it was the case for the PhotoME addon).
    If this method works or if it does not work, report it on this web page so that others can be helped with your comments.
    I hope this method will help you because I was really upset that I had these Firefox problems and I first thought it was the fault of Firefox, only to discover later that this PhotoME addon was the culprit and had caused me such upset.

  • Loadjava Error while opening file: –resolve  Exception java.io.FileNotFound

    Dears,
    I'm having Oracle 11gr2 on Windows 2008r2. I have very strange issue while trying to load ordinary Java source. I get error that loadjava can't open file. I'm using the following command in loading:
    %ORACLE_HOME%\dbhome_1\BIN\loadjava -thin -user ORAMQ/***@localhost:1521:DEVAR -verbose -fileout %C:\temp\loadjava-9-MQReasonCodeResolver.java.log C:\src\MQReasonCodeResolver.java –resolve-----
    I got the following error in the verbose file out:
    arguments: '-user' 'ORAMQ/***@localhost:1521:DEVAR' '-thin' '-verbose' '-fileout' 'C:\temp\loadjava-9-MQReasonCodeResolver.java.log' 'C:\src\MQReasonCodeResolver.java' '–resolve'
    creating : source MQReasonCodeResolver
    loading  : source MQReasonCodeResolver
    Error while opening file: –resolve
        Exception java.io.FileNotFoundException: –resolve (The system cannot find the file specified)
    creating :  –resolve
    The following operations failed
         –resolve: opening file-----
    The code is very simple and doesn't have any issue:
    import java.lang.reflect.Field;
    public class MQReasonCodeResolver
        public MQReasonCodeResolver()
        public static final String MQ_EXCEPTION_CLASS = "com.ibm.mq.MQException";
        public static final String RC_FIELD_PREFIX = "MQRC_";
        public static final String RC_VALUE_FIELD = "reasonCode";
        public static String resolve( Exception mqex )
            if ( !canResolve( mqex ) )
                return mqex.getClass().toString() + mqex.getMessage();
            Class class1 = mqex.getClass();
            try
                Field field = class1.getField( RC_VALUE_FIELD );
                Object key = field.get( mqex );
                Field[] fields = class1.getFields();
                for ( int i = 0; i < fields.length; i++ )
                    Field ff = fields;
    String name = ff.getName();
    if ( name.startsWith( RC_FIELD_PREFIX ) && ff.get( null ).equals( key ) )
    return mqex.getMessage() + " " + name;
    catch ( Exception ex )
    return "unknown";
    public static boolean canResolve( Exception exx )
    Class class1 = exx.getClass();
    while ( Exception.class.isAssignableFrom( class1 ) )
    if ( MQ_EXCEPTION_CLASS.equals( class1.getName() ) )
    return true;
    class1 = class1.getSuperclass();
    return false;
    I load other classes and no issue, even jar files, I don't know what is the problem with this file? Also, it is strange is creating class and loading it has no issue, but the issue comes when resolve.
    Can anyone help?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi:
    Put your -resolve flag at the beginning of the list of arguments.
    Latest arguments should be files to be uploaded by loadjava.
    Best regards, Marcelo.

  • Mac Apps freeze while opening

    Hi,
    My Mac Applications are freezing while opening. Mail, Safari, Calculator, Textedit, Preview, and Mac Help Viewer all freeze up either upon opening or as soon as I try to interact with them. Other apps like Photoshop, Illustrator, MSN Messenger, IE, and Word work just fine.
    I have used Disk Warrior to reapair the HD and I have used Disk Utility to reapair permissions. I don't know what else to try.
    Any suggestions?
    Powerbook G4   Mac OS X (10.3.9)  

    Try things in Dr.Smokes Apps. Fail to Launch thread.
    Cheers!
    DALE

  • AE freezes while Opening Project

    Been working on a project these past two days. Nothing over the top complicated in it. Animating text/solids with an audio bed.
    However this morning, while loading up the project, it froze at 33%. Had to Force Quit, try again. Nothing. I've actually taken the project file, brought it to another computer, which opened fine, then saved it as a new project, then brought it back to my computer which only let it work for about another hour - until giving me another freeze while working in the project.
    I tried resetting my preferences, Purged the memory, brought to the other computer to transfer into a new file again. No go. Keeps freezing at 33%. Please Help
    Nick

    What Michael said - more info. Could be anything from some CoDec in your footage that differs across systems to the usual graphics card and driver issues to something being bad with your MediaCache....
    Mylenium

  • Why does my entire computer freeze while opening or using After Effects or Premiere Pro CS5?

    Just built a computer to meet all requirements for Adobe, Autodesk 3ds Max, and UDK, for school.
    Specs;
    Motherboard - ASRock X79 Extreme 4-M, Socket 2011 - Micro ATX - 4 DDR3 1600/1333/1066/800 - 3 PCI-E 3.0 x 16 - 7.1 CH HD Audio - PCIE GLAN - 3 SATA3 - eSATA3 - 4 SATA2 - 4 USB 3.0 - 10 USB 2.0
    Processor - Intel Core i7 Processor - i7-3820 LGA 2011
    Processor fan - Intel Thermal Solution RTS2011 AC
    RAM - Ballistix by Crucial - 2x  8GB Tactical PC3 - 12800 CL8 1.5 VW/XMP = 16GB RAM
    SSD - Crucial M4 SSD 128GB - Comptatibility with 6Gb/s & backward compatible with SATA 3Gb/s
    HDD - Seagate Barracuda 1TB - 7200 RPM up to 32mb cache
    Power Supply - Cooler Master Extreme Power Plus 700W
    Graphics Card - EVGA - NVIDIA GeForce GTX480 - DirectX11 - CUDA - OpenCL Support - PhysX Technology - OpenGL 4.1 (so says the box it came in; but if I'm not mistaken I think the command prompt had shown OpenGL 3 or 3.2)
    Disc Driver - LG DVD/CD RW... It is an OEM, Windows claims it is updated.
    I use an external component - USB Microsoft Wireless Mouse & Keyboard 2000.
    I have, as far as software goes...
    Windows 7 64-bit SP1
    Adobe Creative Suite 5, student version or what have you.
         - I do have several plugins installed as well for After Effects only.
    Autodesk 3ds Max 2012
         -I have several maxscripts as well as a couple plugins for 3ds Max.
    UDK 2-2012 & 3-2012
    NVIDIA PhysX Lab 1.1
    NVIDIA Texture Tools 2
    NVIDIA plugin for Photoshop
    xNormal
    ConTEXT
    UnCodeX
    Quicktime
    AVG Free
    Malwarebytes
    7-Zip
    Java
    Sculptris
    As for anything else giving me issues I haven't noticed anything besides a previous Graphics Card wasn't supported very well at all with 3ds Max, it would freeze while using the material editor which was fixed with replacing a GTX550 ti with a more compatible GTX480. Thought maybe the upgrade would also solve the fact that almost everytime I go to start up and/or use After Effects or Premiere Pro CS5 my whole system freezes. Whether or not I'm doing anything, it occasionally happened during "Scrubbing" the timeline, but also during the splash load up screen. Would take the time to wait for several minutes but nothing would change. Hard reboot was needed. After countless hours of searching online I stumbled upon what is called an "Unlock" for Premiere Pro/After Effects to allow accelerated GPU and CUDA cores. Simple procedure, seems as if things go faster... When it is working. But still, I encounter freezes on my entire system. It isn't a crash back to Windows or anytihng. Just a complete freeze on the entire system. I have not extensively used other Adobe programs besides Photoshop quite briefly just so I could open menus and force a freeze within 5 minutes and noticed nothing wrong. Which in AE & PP just running through any of the menu windows can quickly cause a sudden freeze.
    note* I have alternated shutting off and turning on OpenGL as well as multiprocessing. Doesn't matter, it really doesn't seem to change much of anything.
    Alas, I am absolutely sure, after checking and re-checking 80+ hours over the past 2 weeks that yes, everything is updated as far as each individual program, software or hardware will allow me to update them. I have reinstalled Windows as well as each program up to 3 times, and 1 system (restore?) I had Windows dump everything, started from scratch, backed up nothing. To reinstall everything from scratch, while not installed several "Utilities" or software components from stuff like the Motherboard and its XFAST USB/LAN or whatever, thinking maybe it was cluttering up anything.
    Please, if anyone has any ideas upon this and could give me advice, whether you notice any other incompatibilities or anything. Any and all advice would be greatly appreciated. Thank you.
    note* I do not have a wired Keyboard or mouse to disable the USB plugin and attempt that route.. at least not yet, its on my list of things to do. Also, I did run Memtest86+ during a boot and it claims that everything there had passed 100%. I am not "overclocking" anything either. I just wanted something I could work smoothly on, that would have decent rendering capabilities. I used to use my girls' laptop which was an HP with 3GB RAM and never experienced crashes or freezes and I could use AE, PPro, 3ds Max with some lag but not any issues. Rendering took forever on it, but I usually avoided that 'cuz it would start heating up pretty fierce. Saved my rendering for school computers where I could. But either way, now I have this expensive piece and it is getting frustrating that I cannot work on it.
    note* Also, incase it does help, I have Windows as well as any major components installed onto the C: drive (aka SSD for my system) while all my secondary software, such as Adobe, Autodesk, etc. are all installed directly to my D: drive (or HDD) And everything is set up to go through Windows Firewall as well.

    Thanks all. I have just tried a few things, installing them onto the C drive as you all specified as not being one of them. I can understand it, but at the same time i have a classmate who has their software on a seperate drive and it runs smoothe. I'm on my second GPU in 2 weeks, unless I have terrible luck it seems doubtful being that I can run games and a majority of the software no problem. Through further testing around with a corded mouse and keyboard I've noticed the following...
    The computer freezes entirely only when I'm performing a "scrubbing" action or using a mouse. Left clicking, scrolling, or moving it around. Otherwise if I do not use the mouse and I make all my actions, such as "scrubbing" in AE via "Page Up & Down" keys, there's no freeze and it preloads the preview no problem.
    "Scrubbing" does not load a preview (the green bar doesn't load at all while scrubbing). But, also noticed no matter how smoothe everything is running in 3ds Max as well as PPro, once I start performing a "scrubbing" action with whatever timeline I use, it will definately freeze my whole computer, Windows and all. Hard reboot is neeed.
    With having gone through 2 GPU's, done a full memtest via Windows 7 and Memtest86+, there seems to be no issue with my memory or GPU. Like I said, I've run UDK without an issue. Whether the editor or game. The USB doesn't seem like it's the cause, I've used both wireless as well as wired keyboards/mouse. Still freezes, but now only when using a mouse to "Scrub".
    Is it possible my motherboard could be incompatible somewhere? I mean, really.. everything is brand new but 2 weeks of troubleshooting.
    And I do plan on trying to run my software off the C drive, I just wanted to make sure it wasn't something else, like I said, I've seen and used a computer where it all runs off the D drive and it runs perfectly, actually better on his computer than off the C drive at my schools. So if it is an issue would it lie within the fact that I'm using an Nvidia GPU? Considering my classmate is using a AMD/ATI Radeon or something like that.
    Again, to those who replied, your shared knowledge is greatly appreciated, thank you.

  • Windows CS3 Programs Freeze When Opening Files

    Windows CS3, all programs freeze when trying to open files by going through the file menu.
    Able to open files when navigating with windows explorer then right clicking on file and choosing "open with"
    Windows XP Professional SP3, 4 Gb Ram Quad Core Processor.
    Have uninstalled and reinstalled CS3 (Design Premium)
    Have deleted photoshop settings file and tried using photoshop.
    Any time I try to open a new file or existing file by going through the file menu the program freezes and must be terminated using the task manager.

    Erika,
    I wish you had posted that last night. LOL I'm glad it worked for you and I will tell anyone who has this problem to try that before they try my fix. I was starting to have other problems like inDesign corrupting images.
    Here's how I fixed it,
    I DO NOT RECOMMEND THIS UNLESS YOU ARE WILLING TO RISK HAVING TO REFORMAT YOUR PC.
    1. Backup entire pc
    2. Deactivate Creative Suite 3 (or whatever application you are having a problem with)
    3. Uninstall problem application or suite, then uninstall everything by adobe.
    4. Search PC for all folders and files with "adobe", no quotes, in the name.
    5. Delete all folders and files with "adobe", no quotes, in the name.
    6. Restart PC
    7. Run ccleaner and also run the registry fix.
    8. Restart PC.
    9. Backup registry.
    10. Scan registry for "adobe", no quotes. Delete every instance of "adobe", no quotes making sure the reference is truly "adobe" and not something else.
    11. Restart PC.
    12. Install adobe suite or application.
    13. Install any other adobe application you may need.
    Worked for me, but
    I DO NOT   RECOMMEND THIS UNLESS YOU ARE WILLING TO RISK HAVING TO REFORMAT YOUR PC.

  • DVD SP 2.05 hangs while opening file

    DVD Studio Pro 2.0.5 hangs while opening a project file that until recently worked fine.
    The "hang" seems to accur while DVD SP is opening the project's menus. The dialog box "Loading Project" appears and progresses until it reaches "Loading Menus", then it hangs until I click "Cancel", then DVD SP crashes.
    I trashed DVD SP's prefs, no success. I even tried to move the project's menu files offline, without success - DVD SP even hangs when the referenced assets are not available to it. All project files that are variations of the main file also hang, all at the same time. I don't think the project files are corrupted, more likely something wrong with DVD SP? Any ideas? Reinstall? I'm a little worried about the project files - lots of work is at stake...
    Thanks

    Previously when this has happened for folks it has been related to font management. If you have turned off a font that DVDSP uses as a default for the menus then it won't be able to create the menu when it loads. The solution is to turn on the fonts again.
    Are you using font management software?

  • Freezing while opening Indesign CS5.5 files

    I'm having difficulty opening CS5.5 files. I designed them in CS3. Then I got CS5.5 and opened them in that and saved them.
    Every time I try to reopen them they freeze up. More specifically, if I double click a CS5.5 Indesign file, it freezes up EVERY time.
    If a drag it to the Indesign CS5.5 icon in my dock, it freezes up consistently every other time--asking me if I want to postpone the recovery.
    My fonts libraries and caches are clean. I've run font nuke. I've installed Suitease Fusion 3.
    I was thinking that this might have to do with Helvetica Neue conflicts. My document utilizes this font.
    I've tured off open fonts automatically in fontbook and Suitcase Fusion 3.
    Any ideas?

    As long as there's a problem in the recovery folder you will continue to have a problem on startup. Move the contents of the Recovery folder to a new location, like the desktop, and launch ID, then try to open the files using File > Open...
    Other users report problems from time to time with CS3 and CS4 files opened in CS5 (and presumably 5.5), some of which do not show up until major editing has been completed. I recommend exporting the documents from CS3 to .inx and open the .inx in CS5.5.

  • ACR freezes while opening CR2 files

    Hello everybody,
    When I try to open CR2 files, ACR freezes
    I'm using Photoshop CS5.1 and ACR 6.4.1
    Any solution?

    What model camera?
    Can you reproduce this problem with, say, a CR2 file from your model camera that's already online somewhere?  If so, I'll be happy to try opening the same file.
    Chances are pretty good that the problem is on your specific machine, since Adobe does test out their stuff pretty well.  If that's the case, you might check to see if there are any display driver updates for your video card from the web site of the maker of same.  Video driver updates solve a lot of problems.
    -Noel

  • Libreoffice writer freezes 10 sec while opening file **SOLVED**

    I've got my arch linux system up to date and since few days, it takes about 10 sec to open a file using libreoffice (at least writer or calc).
    Even if i click on a file (using XFCE of KDE), it freezes about 10 sec and it opens the file.  I've tried many odt, doc, txt files with the same result.
    Does anyone have this problem??
    Last edited by danym (2014-01-14 02:04:10)

    I'll explain myself: Since english is not my native language, i cannot explain myself as clear as i want.
    After having trouble with native arch linux Libreoffice version, i decided to try something else.
    Running it with another user did the same.
    Running it as root did the same.
    I've tried Libreoffice from RPM and it acted the same.
    I've even tried version 4.2.0.2 from RPM and it acted the same.
    I've alsa had some minors issues with others apps, but it didn't bug me.
    Maybe i didn't have time to investigate anymore?  I've got a life and won't spend my time looking for a needle in straw poll!
    Since my system had many git and svn packages from AUR installed, i've decided it was time for a big cleanup.  I'm an enthusiastic linux user, and i like to try some unreleased apps.
    Sometimes, looking for a solution when you may be the cause of the problem is not the right thing to do.
    Since i consider myself as a linux veteran (using it since Mandrake 5.1 or 1999), i know what i was doing when i've decided to install it over.
    Many thing had evolved in 18 months and re-installing it was a nice thing to re-learn!
    Some people may be harsh on this forum because their own beliefs, i don't mind, but it would be more constructive to say nothing.
    The main reason i was asking the problem on the forum was this: does someone else has this problem or am-i messing with my system? 
    I now know the answer. 
    En passant, Arch Linux est une distribution excellente et comme utilisateur depuis 2004, je continue à croire qu'elle satisfait à mes besoins!
    S'il y a du monde qui n'ont rien à dire ici, alors qu'ils prennent une grande respiration et... passent à autre chose!

  • AE CS6 freezes while opening a project file

    Hi, I have been working on a project for past three days and this morning when I try to open the project, AE CS6 freezes at 66percent. And my MAC stops responding too. I need to force shut AE to get back in order.
    This is what I have already tried:
    - Renaming the project file. No go
    - Opening the project in another installation of AE. No go
    - Importing the file in another new project. No go
    Note that the last work I did in that project was using the dynamic link between AE and premier pro. I imported a premier pro sequence into AE, put it onto an AE composition and color corrected some footage. Then I imported the AE composition into PP and exported the final movie. This morning when I try to open the AE project where I imported the PP sequence, I am unable to do so.
    Could this be that the dynamic link has a bug that caused a memory issues?
    Please help me troubleshoot !!!
    Thanks
    Anshul

    Flush the caches from the prefs. And by all means learn how to use versioning, incremental saving and backups...
    Mylenium

  • Eclipse freezing while opening schema editor for .xsd files

    Hi,
    I've been trying to solve this problem but it looks like I can't.
    Every time I open an .xsd file with the schema editor eclipse freezes and I've to terminate it. I've even tried to install a different version of it, downloading from the site but I had no luck.
    I've found googling a couple of similar problems that were resolved by disabling something relate to printers on eclipse startup on command line but that wasn't my case. I guess it's something related to gtk but I'm not completely sure.
    Here's the error log about that:
    org.eclipse.e4.core.di.InjectionException: org.eclipse.core.commands.NotHandledException: There is no handler to execute for command org.eclipse.ui.edit.copy
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:231)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:212)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171)
    at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:276)
    at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:494)
    at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:545)
    at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:366)
    at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:313)
    at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:82)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1510)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1384)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1409)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1394)
    at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1421)
    at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:830)
    at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:3117)
    at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:758)
    at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:2064)
    at org.eclipse.swt.widgets.Control.windowProc(Control.java:5211)
    at org.eclipse.swt.widgets.Display.windowProc(Display.java:4433)
    at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method)
    at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:8401)
    at org.eclipse.swt.widgets.Display.eventProc(Display.java:1217)
    at org.eclipse.swt.internal.gtk.OS._gtk_enumerate_printers(Native Method)
    at org.eclipse.swt.internal.gtk.OS.gtk_enumerate_printers(OS.java:9460)
    at org.eclipse.swt.printing.Printer.getPrinterList(Printer.java:100)
    at org.eclipse.gef.ui.actions.PrintAction.calculateEnabled(PrintAction.java:45)
    at org.eclipse.gef.ui.actions.WorkbenchPartAction.isEnabled(WorkbenchPartAction.java:123)
    at org.eclipse.jface.commands.ActionHandler.isEnabled(ActionHandler.java:141)
    at org.eclipse.ui.internal.handlers.E4HandlerProxy.canExecute(E4HandlerProxy.java:59)
    at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:231)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:212)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.canExecute(HandlerServiceImpl.java:110)
    at org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerRendererFilter.updateElementVisibility(MenuManagerRendererFilter.java:216)
    at org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerShowProcessor.showMenu(MenuManagerShowProcessor.java:139)
    at org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerShowProcessor.menuAboutToHide(MenuManagerShowProcessor.java:101)
    at org.eclipse.jface.internal.MenuManagerEventHelper.showEventPostHelper(MenuManagerEventHelper.java:55)
    at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:476)
    at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:470)
    at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:500)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:255)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1385)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1409)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
    at org.eclipse.swt.widgets.Menu.gtk_show(Menu.java:678)
    at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:2023)
    at org.eclipse.swt.widgets.Display.windowProc(Display.java:4427)
    at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method)
    at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:8401)
    at org.eclipse.swt.widgets.Display.eventProc(Display.java:1217)
    at org.eclipse.swt.internal.gtk.OS._gtk_enumerate_printers(Native Method)
    at org.eclipse.swt.internal.gtk.OS.gtk_enumerate_printers(OS.java:9460)
    at org.eclipse.swt.printing.Printer.getPrinterList(Printer.java:100)
    at org.eclipse.gef.ui.actions.PrintAction.calculateEnabled(PrintAction.java:45)
    at org.eclipse.gef.ui.actions.WorkbenchPartAction.isEnabled(WorkbenchPartAction.java:123)
    at org.eclipse.jface.commands.ActionHandler.isEnabled(ActionHandler.java:141)
    at org.eclipse.ui.internal.handlers.E4HandlerProxy.canExecute(E4HandlerProxy.java:59)
    at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:231)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:212)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.canExecute(HandlerServiceImpl.java:110)
    at org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerRendererFilter.updateElementVisibility(MenuManagerRendererFilter.java:216)
    at org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerShowProcessor.showMenu(MenuManagerShowProcessor.java:139)
    at org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerShowProcessor.menuAboutToHide(MenuManagerShowProcessor.java:101)
    at org.eclipse.jface.internal.MenuManagerEventHelper.showEventPostHelper(MenuManagerEventHelper.java:55)
    at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:476)
    at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:470)
    at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:500)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:255)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1385)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1409)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
    at org.eclipse.swt.widgets.Menu.gtk_show(Menu.java:678)
    at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:2023)
    at org.eclipse.swt.widgets.Display.windowProc(Display.java:4427)
    at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method)
    at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:8401)
    at org.eclipse.swt.widgets.Display.eventProc(Display.java:1217)
    at org.eclipse.swt.internal.gtk.OS._gtk_enumerate_printers(Native Method)
    at org.eclipse.swt.internal.gtk.OS.gtk_enumerate_printers(OS.java:9460)
    at org.eclipse.swt.printing.Printer.getPrinterList(Printer.java:100)
    at org.eclipse.gef.ui.actions.PrintAction.calculateEnabled(PrintAction.java:45)
    at org.eclipse.gef.ui.actions.WorkbenchPartAction.isEnabled(WorkbenchPartAction.java:123)
    at org.eclipse.jface.commands.ActionHandler.isEnabled(ActionHandler.java:141)
    at org.eclipse.ui.internal.handlers.E4HandlerProxy.canExecute(E4HandlerProxy.java:59)
    at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:231)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:212)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.canExecute(HandlerServiceImpl.java:110)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.canExecuteItem(HandledContributionItem.java:831)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$2(HandledContributionItem.java:820)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$3.run(HandledContributionItem.java:216)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.updateItemEnablement(HandledContributionItem.java:243)
    at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$ToolItemUpdateTimer.run(HandledContributionItem.java:146)
    at org.eclipse.swt.widgets.Display.timerProc(Display.java:4178)
    at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method)
    at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:2244)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3222)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1023)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:917)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:587)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:542)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
    Caused by: org.eclipse.core.commands.NotHandledException: There is no handler to execute for command org.eclipse.ui.edit.copy
    at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:84)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    ... 138 more
    I hope anybody can help me with this
    Last edited by Eit (2012-11-28 11:50:50)

    bump, I'd rather not use a VM to run Eclipse

  • Lightroom freezes while opening certain catalogs

    While I was helped tremedously by the Adobe Tech Support to unfreeze my catalogs, the issue returns. In order to unfreeze, I have to move my preview folder to the desktop (or another folder) and reopoen the catalog. This recreates the previews and allows the catalog to work.k I've cleared the catalog cache, set the previews to medium, set the default to discrad 1:1 preview every thrty days, all in an attempt to avoid the "freeze." But, it still occurs. if I have to reopen the catalof after a time. The catalog has over 30000 images and is an integral tool in my research on fin whales in NY. What can I do to avoid this pain in the butt problem?
    Details: Lightroom 5.5; windows 8.1 pro; 12 GB ram; NVIDIA GeForce GTX 650 Ti graphics card; 860BG free out of 1.99TB...

    Hi Susan,
    The Adobe plugin in Internet Explorer is a bit different from the one in Firefox, however they're all made by Adobe and they usually come with Adobe Reader.
    When you open a PDF file in Firefox, it "calls" Adobe Reader to help it read the file. In this case, the Adobe Reader takes over, and it is responsible for freezing your browser.
    I suggest you try the last 4 solutions presented on the [[Opening PDF files within Firefox]] (start with "Re-install the plugin" through "Re-install Adobe Reader").
    Good Luck :D

Maybe you are looking for

  • Supplement​ary Service error: general error/ Call failed

    Hi, guys please help, am very frustrated as I am not able to make or receive any calls or sms's. Everytime I try, i receive an immediate message saying " supplementary service error. or "call failed". When everybody else calls me it goes straight to

  • Multiple invoice with one Debit note

    Dear Experts, Is it possible to create one single debit note with multiple invoices. If yes how. Thanks Shri..

  • Having trouble implementing Captivate simulation in an iFrame

    Hi all, hoping you can give me some pointers. I'm trying to implement Captivate scalable html5 simulations in a proprietary LMS that requires that I place it in an iFrame.  It works, but the scaling is not working properly.  Immediately upon loading,

  • Canon 6D raw plug-in

    How do you access, download and install the CS5 camera raw plug-in for Canon 6D camera?

  • TS1702 google calendar not working correctly after 8.0.2 update

    IPAD screen inconsistant with finger comands, lags, calender events jump all over the place when begininng to enter event. minutes on the left of the page have ?? question marks, no + to add events.  Also, I dont always have a volume icon when adjust