Cs4 dreamweaver suddenly crashes when selecting code/split view

i have looked around and found this issue in older posts from 2008 but have not found a resolution. i've had dw cs4 for mac for a several months and all of a sudden it started crashing when i select code/split view.
i have:
deleted prefs
deleted config folder and .dat file
started up in safe mode and new user mode
no other issues with any other adobe apps or crashing in general
have plenty of memory
got rid of extensions
i feel like it is a corrupted file that is doing it unfortunately i dont have my original disk on hand to reinstall right now (purchased cd instead of download). UGH!
i'm running: snow leopard / 10.6.4 / 2x2.66 ghz dual core intel xeon / 7gb memory
here are the first few lines of the same error code:
Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
Crashed Thread:  19
Thread 0:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib             0x940d2099 szone_free_definite_size + 654
1   libSystem.B.dylib             0x940d1ba8 free + 244
2   com.apple.carbonbundletemplate 0x1e85431d js_FinalizeStringRT + 31
3   com.apple.carbonbundletemplate 0x1e835694 js_GC + 2156
4   com.apple.carbonbundletemplate 0x1e8359bc js_ForceGC + 67
5   com.apple.carbonbundletemplate 0x1e8592b1 js_DestroyContext + 150
6   com.apple.carbonbundletemplate 0x1e80bdc8 JS_DestroyContext + 25
7   com.apple.carbonbundletemplate 0x1e801237 JS_LangParser::DestroyJSEngine() + 43

Have you done a complete uninstall, clean up, and then reinstall? - Sounds like that's the only thing you haven't tried, so I'd try that next.  Yeah, I know... a real pain. The sort of thing we on the PC side have to deal with far more often unfortunetly  ;-/
Lawrence Carmer - *Adobe Community Professional*
http://www.Cartweaver.com
Complete Shopping Cart Application for
Dreamweaver, available in PHP and ColdFusion
Stay updated - http://blog.cartweaver.com

Similar Messages

  • DW CS5 crashes when switching to split view

    I have just checked other comments in the forum but none seem to really fit the issue. The moment I use the code for a page and switch to split view, DW crashes. It works perfectly with smaller HTMLs (e.g. HTML emails) but starts playing up as soon as I try to work on the code for a page.
    Any solutions.. ?
    Thanks!

    This is a long standing bug, that for some reason Adobe can't seem to fix. It started with CS4, and remains in CS5.  Typically when looking at certain .aspx pages, when switching from design view to split view Dreamweaver will crash. Anyway, thanks to some investigation back in CS4, and a keen Dreamweaver user (jplaguna) we can all get back to working normally.  I thought I would repost this for anyone struggling with the issue.
    The problem is with Dreamweaver's "Translators" - whatever those are?  Anyway, you simply rename that folder and your problems go away.
    Sorry to hear that you've been having this problem. I'm glad that you found a way to work around the problem.
    Translators are the code that recognizes certain pieces of server-side code so that you can select and manipulate them in DW. Turning them off disables features like Server Behaviors. Also, you can be more strategic by simply renaming the Translator for ASP.Net here:
      c:\Program Files\Adobe\Adobe Dreamweaver CS4\configuration\Translators\ASP.Net.htm
    Rename it to something like:
      ASP.Net.disable_htm
    Then you'll need to restart DW. This will disable the Translator for only ASP.Net, not all of the other Server Models.
    Can you post a .zip file with a page that causes the crash? I didn't see one in the original forum thread.
    Hope this helps,
    Randy Edmunds
    Dreamweaver Development
    Adobe Systems, Inc.

  • Dreamweaver CS5 crashes when selecting a DIV

    Hello,
    I have had Dreamweaver CS5 for quite a while now and recently it has been crashing everytime i select a DIV in html.
    I can work fine when coding in CSS or PHP but as soon as i select a DIV it crashes and closes.
    Anyone had the same issue or can suggest a possible fix?
    Many thanks,
    Pete.

    Is your XP fully patched (SP3) and up-to-date?

  • DW CS3 Crashes When Switching from Design View to Code View

    The page opens in code view, and when I try to switch to
    either split or design view, the application freezes.

    read my reply
    Date: Thu, 30 May 2013 20:27:49 -0700
    From: [email protected]
    To: [email protected]
    Subject: dreamweaver cs6 crashes when switching from design to live view
        Re: dreamweaver cs6 crashes when switching from design to live view
        created by Preran in Dreamweaver - View the full discussion
    Hi,
    Can you try the solutions mentioned in this document?
    http://helpx.adobe.com/dreamweaver/kb/crash-live-view-dreamweaver-cs5. html
    Thanks,
    Preran
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5367198#5367198
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5367198#5367198
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5367198#5367198. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • JVM crashes when selecting non-default printer in ReportViewer in NATIVE dialog.

    On ReportViewer frame i have the print button active.  If i click the print button (Native dialog) and select a printer other than default printer, the JVM crashes.  Any idea how to fix it?
    Thanks

    I wanted to provide little history of what I am trying to achieve.  Currently, I have the following code:
    PrinterJob printJob = PrinterJob.getPrinterJob();
            if (printJob.printDialog()) {
                String printerName = printJob.getPrintService().getName();
                String printJobName = printJob.getJobName();
                PrintReportOptions printOptions = redirectPrinter(printerName, printJobName);
                sendReportOutputAndClose(reportClientDoc, printOptions);
    I want to capture the number of copies user selects from the dialog.  When I do printJob.getCopies(), it always returns 1.  Not sure how to get that # of copies user selected.  I also wanted to the dialog to be in Native mode because I don't want to give access to modify Margins and other page properties which are part of COMMON dialog mode.  If I create the dialog printJobAttribute.setDialog(JobAttributes.DialogType.NATIVE); then VM crashes when selecting a non-default printer but I am able to get the number of copies.  The key is I need to use NATIVE dialog and get the number of copies.  One option is to display in COMMON dialog mode and then hide the "Page Setup" and "Appearance" tabs.  Can this be done ?  I am new to Java and Crystal so any suggestions would help.

  • JVM crashes when selecting a CLOB in a OracleCallableStatement

    Hi all:
    We have a lot of places in our codebase where we "batch" a no. of
    selects using the OracleCallableStatement for better performance (i.e.
    save multiple roundtrips to the db). Recently we upgraded to Oracle
    8.1.7 and converted the LONG column in one of our tables to CLOB. Once
    we did that, every place in the system where we use a "batch" select
    (using refcursor) the JVM crashes (no stack trace, just the infamous Dr.
    Watson on NT and SIGBUS SEGV on Solaris)
    We are running wl510 sp10 , driver is weblogic oci (oci817_8).
    Here is a sample code
    cstmt = (OracleCallableStatement)con.prepareCall(
    "BEGIN \n"
    + " OPEN ? FOR SELECT A, B, C FROM TAB1 where ..;\n"
    + " OPEN ? FOR SELECT X, Y, Z FROM TAB2 where ..;\n"
    + " END;");
    cstmt.registerOutParameter(1, Types.OTHER);
    cstmt.registerOutParameter(2, Types.OTHER);
    cstmt.execute();
    rs = cstmt.getResultSet(1);
    Is there an update or patch for the driver which resolves this issue?
    thanks much,
    mohan

    I wanted to provide little history of what I am trying to achieve.  Currently, I have the following code:
    PrinterJob printJob = PrinterJob.getPrinterJob();
            if (printJob.printDialog()) {
                String printerName = printJob.getPrintService().getName();
                String printJobName = printJob.getJobName();
                PrintReportOptions printOptions = redirectPrinter(printerName, printJobName);
                sendReportOutputAndClose(reportClientDoc, printOptions);
    I want to capture the number of copies user selects from the dialog.  When I do printJob.getCopies(), it always returns 1.  Not sure how to get that # of copies user selected.  I also wanted to the dialog to be in Native mode because I don't want to give access to modify Margins and other page properties which are part of COMMON dialog mode.  If I create the dialog printJobAttribute.setDialog(JobAttributes.DialogType.NATIVE); then VM crashes when selecting a non-default printer but I am able to get the number of copies.  The key is I need to use NATIVE dialog and get the number of copies.  One option is to display in COMMON dialog mode and then hide the "Page Setup" and "Appearance" tabs.  Can this be done ?  I am new to Java and Crystal so any suggestions would help.

  • Photoshop CS6 crashes when selecting tools

    Hi, I'm having the same problem as a few other members (Photoshop CS6 occasionally crashes when selecting tools)  and have updated the driver on my HD5770 card to the latest version (8.961.0.0) as this is the recommended fix. Unfortunately this hasn't fixed the problem.
    Here is the error report from the most recent crash.
    This is very irritating as I inevitably lose some of my work when the application crashes.
    What else do you suggest as a fix?
    Steve

    I installed 12.3 and restarted my computer. This did not solve the problem.
    I've reinstalled Photoshop twice as well with no developments.
    Then, I found this thread: http://forums.adobe.com/message/4289204
    My card (Radeon X 1300 / X 1550) is not listed in the "Tested video cards for Photoshop CS6" section.
    If I go to Edit->Preferences->Performance, and mouse-over the "Graphics Processor Settings" section, it says "Photoshop detected an error in your display driver. Update or reinstall the driver and check Use Graphics Processor to retry".
    Is there any way around this?

  • Dreamweaver cs6 crashes when switching from design to live view

    dreamweaver cs6 crashes when switching from design to live view

    read my reply
    Date: Thu, 30 May 2013 20:27:49 -0700
    From: [email protected]
    To: [email protected]
    Subject: dreamweaver cs6 crashes when switching from design to live view
        Re: dreamweaver cs6 crashes when switching from design to live view
        created by Preran in Dreamweaver - View the full discussion
    Hi,
    Can you try the solutions mentioned in this document?
    http://helpx.adobe.com/dreamweaver/kb/crash-live-view-dreamweaver-cs5. html
    Thanks,
    Preran
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5367198#5367198
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5367198#5367198
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5367198#5367198. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • InDesign CC crashes when selecting text

    Hello folks!
    I have a serious issue here on my Windows 7 64bit notebook:
    InDesign CC (and also CS6 before) keep crashing when selecting text.
    I was still on CS6 when this failure appeared first. The strange thing is, it happens not always. When InDesign is opened new it will not crash instantly (most times). After some selecting random text a few times InDesign will crash with the well known "InDesign doesn't work anymore" message. There seems no pattern while selecting text (like special characters, certain fonts, whatever).
    Tried to use CC – no luck! still crashing.
    After some research in the forum I read, that this is very rare issue only occuring if there are more than 1 Windows accounts with both InDesign running. Indeed I made new account shortly before the first time this happened.
    But sadly even after I completely wiped the second account, all my InDesigns (CS5, CS6, CC), all prefs, and also all fonts (as recommend in a thread with people havong trouble with just the type-tool itself) and all registry thingies the problem remains. Why?
    Please help, it really kills the productivity.
    Thanks in advance for everything!

    Well, wonky extension seems like a good idea, but can be withdrawed because I haven't installed one.
    The font issue is also equally probable. As already mentioned: The interesting aspect here is, that both InDesign CS6 and CC will crash. It happened the first time when Windows decided to blue screen and f*** up my account (I wasn't able to log in anymore, I had to made a new one). I once read in another thread that there is a problem occuring when having multiple Windows accounts with InDesign running. Re-installing InDesign didn't help. Font problem after all?
    I have installed at the moment:
    MainType
    NexusFont
    Typograf
    and some small others, like: dp4 Font Viewer or FontViewOk

  • Elements 13 crashes when selecting Print

    Elements13 crashes when selecting Print from the File menu.
    Rebuilding the Preferences file will bring the Print menus back, but only temporarily.
    No error message, Windows advises the program must be shut down.
    Win 7, 16GB RAM, Elements 6 on the same computer works fine.

    Hi ,
    You are going through File menu > Print or File menu > Order Prints .
    Meanwhile go to Edit menu > Preferences >> Adobe partner services .
    Click "Refresh Button"
    Click "Reset Account"
    and "Clear On-line Serves data" also.

  • InDesign CS4 - Windows 7 crashes when Edit Original

    Ever since I upgraded to Windows7 my InDesign CS4 will frequently crash when I click in an image to edit the original, usually the image is a psd. I did not experience this problem using Windows XP CS3. Since I upgraded both my Adobe suite and my operating system at the same time I am not sure who is the culprit.
    Has anyone else had this happen? Any ideas as to what is causing this?
    It certainly gets frustrating trying to get work done with this going on.

    I don't remember anyone else reporting this, and a forum search seems to bear this out, so this isn't a common problem and is likely to be something specific to your system. Are you getting an error message?

  • Dreamweaver CC crashes when I click on + sign in Transition panel. It only happens in a document cre

    Dreamweaver CC crashes when I click on + sign in Transition panel. It only happens in a document created from template. The panel works seamlessly otherwise in in both original (index) and template documents. If you had any idea why... thanks, yours Peter

    Certainly: Its Win7 and DW CC seems to be LS20. I have reinstalled DW CC and the same problem occurs.
    In detail:
    I create a template from my Index page with editable region.
    Then I create a new document from the template.
    Now the transitions work, are editable - only adding a new one crashes DW.
    Next I will have CS6 and CC both reinstalled, and hope for the best.
    Thank you for your help.
    TPeter

  • My CS4 Illustrator keeps crashing when I try printing or changing typefaces, help?

    My CS4 Illustrator keeps crashing when I try printing or changing typefaces, help?
    I've already tried reinstalling and that worked few a few days but now continues to crash.

    Matt,
    Did you reinstall using the full three step way?
    Uninstall (ticking the box to delete the preferences), run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    You may also have a look at items 1) and 11) in Other options (follow the link with that name)

  • Imovie crashes when i try to view the video full screen or export it. How do i fix this?

    iMovie crashes when i try to view the project full screen and export it. How do i fix this?

    Close out of the camera app, double tap the home button and completely close out of the app.
    Then do a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    Then check your camera roll again.

  • Why is my keynote crashing when i try to view in the light table?

    My Keynote presentation crashes when I try to view it in the light table view, and the whole system has to be restarted. The file is not huge, only 54 slides, mostly graphics and video plus a little bit of text. It is under 1GB in size, which I can usually manage without issue. Has anyone else encountered this problem? Does anyone know of a solution or a workaround? I'd be so grateful for any help. Thanks!

    Try this maintenance routine which has solved quite a few issues:
    1
    Close all applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    go to;   Applications > Utilities > Disc Utility > First Aid > Repair Disc Permissions
    when this is completed restart the Mac normally
    6
    Reinstall Keynote using the original discs or logging into the Mac App Store and installing from there.
    Post back to let others know if this helped

Maybe you are looking for

  • How to see Shared Members in Smart View on Ad-hoc Analysis mode

    Hi All, We are using Hyperion Planning v 11.1.1.3. For the alternate hierarchy we have created shared members. But in Smart View we are unable to see Shared members hierarchy in Ad-hoc analysis mode. Is this limitation in Hyperion Planning? Or Is the

  • Screen sharing and video chatting

    When i am video chatting with someone and i start sharing a screen with them the video chat goes away i can still talk with them but if i stop sharing the screen the call/video chat i started is ended is there any way to continue the video chat after

  • Possible 10.1.2.1 bug

    I have a problem with a 10.1.2.1 generated uix application. I have a master-detail table relationship, lets say Departments -> Employees and have generated corresponding pages (both with table layout style). This generates a DepartmentTable.uix page

  • Movie and art work not showing up on ATV

    1 of the movies in iTunes (and plays in iTunes as well) is not showing up on my ATV. Also I am having a problem with numerous movie artwork that I just set up that shows up in iTunes but not on the ATV. Any ideas why they won't sync?

  • A sequence of failures

    Desk top 6.0 reinstalled following waht looked like a failry harmless corruption. Clean uninstall and reinstall as per instructions. On reinstallation I get "The application loader wizard requires the Blackberry Devcie Manager to be installed." on a