Debug Mode Crashing Flash

I have an application which reads in several pages of XML
data.
When I try to de-bug the application, Flash locks and then
crashes out.
I am getting no compile errors & I can make a successful
deploy of the application. So in short everything works but just
not in de-bug mode?.
The only success I have had is to chop down the XML to half a
page and then I can de-bug. This is not ideal as I need all the
information from these XML files.
Any ideas folks?

Resolved.
Turns out the flashbug firebug addon is the cause of the problem.
The addon created a mm.cfg file to configure the debug player which affects ALL browsers.
It uses a preload swf:
PreloadSwf=C:\Users\user\AppData\Roaming\Mozilla\Firefox\Profiles\ekizin8e.default\extensi ons\[email protected]\chrome\content\flashbug\profiler.swf
This profiler.swf is probably buggy which is why a select few swfs crash.
Renaming mm.cfg or removing it fixes the issue, however, now I am on the hunt for another flash debugger for firebug

Similar Messages

  • Debug mode crashes Data Services ?

    Hi,
    I have installed BO Data Services XI 3.2 (ver. 12.2.0.1) on Windows Server 2003.
    Every time I run the job in debug mode Data Services crashes with error:
    SYS-170101  21.10.2009 10:59:03     |Session job_test
    SYS-170101  21.10.2009 10:59:03     System Exception <ACCESS_VIOLATION> occurred. Process dump is written to <C:\Program Files\Business Objects\BusinessObjects
    SYS-170101  21.10.2009 10:59:03     Data Services\log\BODI_MINI20091021105901_5720.DMP> and <C:\Program Files\Business Objects\BusinessObjects Data
    SYS-170101  21.10.2 009 10:59:03     Services\log\BODI_FULL20091021105901_5720.DMP>
    SYS-170101  21.10.2009 10:59:03     Process dump is written to <C:\Program Files\Business Objects\BusinessObjects Data
    SYS-170101  21.10.2009 10:59:03     Services\log\BODI_MINI20091021105901_5720.DMP> and <C:\Program Files\Business Objects\BusinessObjects Data
    SYS-170101  21.10.2009 10:59:03     Services\log\BODI_FULL20091021105901_5720.DMP>
    SYS-170101  21.10.2009 10:5:03     Call stack:
    SYS-170101  21.10.2009 10:59:03     001B:009E96D6, DataFlowDef::preOptProcessing()1366 byte(s), x:\src\compiler\dataflow.cpp, line 12420005 byte(s)
    SYS-170101  21.10.2009 10:59:03     001B:009 E8C56, DataFlowDef::optimize()0102 byte(s), x:\src\compiler\dataflow.cpp, line 030+
    SYS-170101 21.10.2009 10:59:03      001B:009EF3EA, CompoundStep::optimize()0026 byte(s), x:\src\compiler\step.cpp, line 04590025 byte(s)
    SYS-170101  21.10.2009 10:59:03     001B:007BAD07, AE_Main_Process_Options()32023 byte(s), x:\src\xterniface\actamainexp.cpp, line 3542+
    SYS-170101  21.10.2009 10:59:03     001B:007BEE01, AE_Main()1505 byte(s), x:\src\xterniface\actamainexp.cpp, line 08110030 byte(s)
    SYS-170101  21.10.2009 10:59:03     001B:00402AE9
    SYS-170101  21.10.2009 10:59:03     Registers:
    SYS-170101  21.10.2009 10:59:03     EAX=00000000  EBX=02C4CFB0  ECX=02BFE728  EDX=02C4F890  ESI=033C40B8
    SYS-170101  21.10.2009 10:59:03     EDI=00000008  EBP=02CB3668  ESP=00212674  EIP=009E96D6  FLG=00210202
    SYS-170101  21.10.2009 10:59:03     CS=001B   DS=0023  SS=0023  ES=0023   FS=003B  GS=0000
    SYS-170101  21.10.2009 10:59:03     Exception code: C0000005 ACCESS_VIOLATION
    SYS-170101  21.10.2009 10:59:03     Fault address:  009E96D6 01:002536D6 C:\Program Files\Business Objects\BusinessObjects Data Services\bin\acta.dll
    Thanks
    Georg

    Do you use any DQ transform or Data_Transfer?  If so, this is a bug that we will fix for later release.

  • Embedding Flash swf in Google Site displays NaN output but works in Debug mode

    Hello,
    I am loading a text file with three variables into a flash file (CS5). The flash file then calculates and prints the three values based on some calculations. I am storing the text file as an attachment on the google page in which I am embedding the swf file. What's weird is that the flash file plays correctly in debugging mode (i.e., prints the 3 variables correctly), but as soon as I upload the swf to the Google site page (as an attachment in the same location as the text file), the flash file outputs NaN. I am stuck as to why the file works in debug mode in Flash, but not when it's uploaded to the google site page. I have tried storing the text file on SharePoint and referencing it from there, but I get the same results when viewing the swf on the Google site page.
    Is it because the google site page is using SSL?
    I am fairly new to flash, so any help would be appreciated.
    Thanks!
    Lori
    Variables.txt stores this: "current=6950&goal=7175&low=6950"
    Here is the code in my flash file:
    _global.getPercent = "";
    myvars = new LoadVars();
    myvars.load("variables.txt");
    myvars.onLoad = function(success){
              l = Number(myvars.low);
              c = Number(myvars.current);
              g = Number(myvars.goal);
              getPercent = (c-l)/(g-l);
              if (getPercent > 0) {
                        colorshow._height = (getPercent*colorshow._height);
              } else {
                        colorshow._height = 0;

    I have this in front of the trace:
    myvars.onLoad = function(success){
    When I put in the full URL to the attachment on the Google page (i.e., something similar to "myvars.load("https://sites.google.com/a/..../home/department-sites/sales/variables.txt,");" - instead of just "myvars.load("variables.txt");", it doesn't work. So right now its set to just "variables.txt" and the swf file is in the same root location as the variables.txt file on the Google page. I also have a copy of the variables.txt file in the same local directly in which I am running the flash file for testing. So I think when I run it in debug mode, its referencing the variables.txt file in the local directory, rather than the one stored as an attachment on the Google page.
    That's what seems so weird...it runs locally in debug mode...but not when I embed it on the Google page. I can also get it to work if I explicity define the variables in the flash file, rather than rely on the external text file. That's the only time I can get it to work on the Google page.
    Thank you for your help!

  • Firefox thinks Adobe Flash Plugin has crashed when running in debug mode! How do i get arround this?

    When testing my flex application in debug mode, my debug session is closed every time because Firefox thinks the flash plug-in has crashed.
    == This happened ==
    Every time Firefox opened
    == Firefox was updated with plugin-crash redundancy

    You can also set the pref dom.ipc.plugins.timeoutSecs to -1 to disable the timeout.

  • Flash player crashes when I launch swf in debug mode

    Not sure whether this is a bug on the player side or flash builder side, but when I export and debug the flash player crashes.  This means I cant trace and debug.
    Please help.  Can I trace without using debug mode?

    The web site I was trying to open was http://www.jaylenosgarage.com  The add was for Sprint phone service about half way down the page, on the right.  I was using this site as a test site. It allso didn"t work on the Adobe site. The page was the one you receive after you finish installing the upgrade.

  • JVM crash when using debug mode in eclipse

    Hi,
    I get a SIGSEGV every time I use debug mode in Eclipse. Sometimes after a few breakpoints, sometimes when I start the debug view.
    Have Eclipse helios and JRE 6.0_21-b06 but have also tried 1.6.0_03-b05 with same result.
    The log file (hs_error_pidxxx.log) gives the following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xff23259c, pid=2917, tid=2
    # JRE version: 6.0_21-b06
    # Java VM: Java HotSpot(TM) Server VM (17.0-b16 mixed mode solaris-sparc )
    # Problematic frame:
    # C [libc.so.1+0x3259c] strncmp+0x348
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0003d800): JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    O0=0x00000001 O1=0x00000000 O2=0x00000001 O3=0x00000000
    O4=0x00000102 O5=0x0125d898 O6=0xfe37d3b8 O7=0xe1dd104c
    G1=0x00105000 G2=0x00007b00 G3=0x00000000 G4=0xe2947b08
    G5=0xfee6e2e8 G6=0x00000000 G7=0xfe3e0200 Y=0x00000000
    PC=0xff23259c nPC=0xff2325a0
    Top of Stack: (sp=0xfe37d3b8)
    0xfe37d3b8: 00000000 e1ebec00 ff2c1bd0 e1ebec00
    0xfe37d3c8: 011966e8 00000001 fee2e000 00001cc4
    0xfe37d3d8: 1d69c014 e2963fec 00000001 00000108
    0xfe37d3e8: 0000006e 0000006e fe37d3f8 e2947bd4
    0xfe37d3f8: e2963ff4 014e2b38 e2963ffc 00000000
    0xfe37d408: fee2e000 011afd80 01da6f38 e2963fec
    0xfe37d418: fe37d484 0125da90 0125dab8 00000002
    0xfe37d428: 00000000 e2974f88 fe37d488 e2350fd4
    Instructions: (pc=0xff23259c)
    0xff23258c: 91 ee 00 00 b4 a6 a0 01 0a bf ff e1 01 00 00 00
    0xff23259c: f8 0e 40 18 fa 0e 40 00 b2 06 60 01 80 a7 00 1d
    Stack: [0xfe300000,0xfe380000], sp=0xfe37d3b8, free space=1f4ff23259ck
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libc.so.1+0x3259c] strncmp+0x348
    C [libpangoft2-1.0.so.0.501.1+0x7bdc]
    C [libswt-pi-gtk-3650.so+0x50fdc] Java_org_eclipse_swt_internal_gtk_OS__1pango_1context_1list_1families+0x74
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+472954808
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+0
    j org.eclipse.swt.internal.gtk.OS.pango_context_list_families(I[I[I)V+10
    j org.eclipse.swt.graphics.Device.getFontList(Ljava/lang/String;Z)[Lorg/eclipse/swt/graphics/FontData;+53
    j org.eclipse.jface.resource.FontRegistry.filterData([Lorg/eclipse/swt/graphics/FontData;Lorg/eclipse/swt/widgets/Display;)[Lorg/eclipse/swt/graphics/FontData;+67
    j org.eclipse.jface.resource.FontRegistry.createFont(Ljava/lang/String;[Lorg/eclipse/swt/graphics/FontData;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+32
    j org.eclipse.jface.resource.FontRegistry.getFontRecord(Ljava/lang/String;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+53
    j org.eclipse.jface.resource.FontRegistry.get(Ljava/lang/String;)Lorg/eclipse/swt/graphics/Font;+2
    j org.eclipse.jface.resource.JFaceResources.getHeaderFont()Lorg/eclipse/swt/graphics/Font;+5
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createTitleLabel(Lorg/eclipse/swt/widgets/Composite;Ljava/lang/String;)Lorg/eclipse/swt/widgets/Label;+36
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createControl(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+99
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.verifyInput(Lorg/eclipse/ui/IEditorInput;)V+95
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+96
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+361
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorReference.getEditor(Z)Lorg/eclipse/ui/IEditorPart;+2
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+233
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+27
    j org.eclipse.ui.internal.WorkbenchPage.access$11(Lorg/eclipse/ui/internal/WorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+8
    j org.eclipse.ui.internal.WorkbenchPage$10.run()V+29
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+59
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZI)Lorg/eclipse/ui/IEditorPart;+7
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility$1.run()V+41
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/ui/IWorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;)Lorg/eclipse/ui/IEditorPart;+26
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)Lorg/eclipse/ui/IEditorPart;+201
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.display(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+3
    j org.eclipse.debug.ui.DebugUITools.displaySource(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+5
    j org.eclipse.debug.internal.ui.elements.adapters.StackFrameSourceDisplayAdapter$SourceDisplayJob.runInUIThread(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+24
    j org.eclipse.ui.progress.UIJob$1.run()V+53
    J org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
    J org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z
    J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    V [libjvm.so+0x15e33c]
    V [libjvm.so+0x797afc]
    V [libjvm.so+0x217704]
    V [libjvm.so+0x215d8c]
    C [libjava.so+0x10bfc] Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x18
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+746878888
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
    v ~StubRoutines::call_stub
    V [libjvm.so+0x15e33c]
    V [libjvm.so+0x2012dc]
    C [java+0x3ab8]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+0
    j org.eclipse.swt.internal.gtk.OS.pango_context_list_families(I[I[I)V+10
    j org.eclipse.swt.graphics.Device.getFontList(Ljava/lang/String;Z)[Lorg/eclipse/swt/graphics/FontData;+53
    j org.eclipse.jface.resource.FontRegistry.filterData([Lorg/eclipse/swt/graphics/FontData;Lorg/eclipse/swt/widgets/Display;)[Lorg/eclipse/swt/graphics/FontData;+67
    j org.eclipse.jface.resource.FontRegistry.createFont(Ljava/lang/String;[Lorg/eclipse/swt/graphics/FontData;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+32
    j org.eclipse.jface.resource.FontRegistry.getFontRecord(Ljava/lang/String;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+53
    j org.eclipse.jface.resource.FontRegistry.get(Ljava/lang/String;)Lorg/eclipse/swt/graphics/Font;+2
    j org.eclipse.jface.resource.JFaceResources.getHeaderFont()Lorg/eclipse/swt/graphics/Font;+5
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createTitleLabel(Lorg/eclipse/swt/widgets/Composite;Ljava/lang/String;)Lorg/eclipse/swt/widgets/Label;+36
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createControl(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+99
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.verifyInput(Lorg/eclipse/ui/IEditorInput;)V+95
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+96
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+361
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorReference.getEditor(Z)Lorg/eclipse/ui/IEditorPart;+2
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+233
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+27
    j org.eclipse.ui.internal.WorkbenchPage.access$11(Lorg/eclipse/ui/internal/WorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+8
    j org.eclipse.ui.internal.WorkbenchPage$10.run()V+29
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+59
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZI)Lorg/eclipse/ui/IEditorPart;+7
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility$1.run()V+41
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/ui/IWorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;)Lorg/eclipse/ui/IEditorPart;+26
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)Lorg/eclipse/ui/IEditorPart;+201
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.display(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+3
    j org.eclipse.debug.ui.DebugUITools.displaySource(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+5
    j org.eclipse.debug.internal.ui.elements.adapters.StackFrameSourceDisplayAdapter$SourceDisplayJob.runInUIThread(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+24
    j org.eclipse.ui.progress.UIJob$1.run()V+53
    J org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
    J org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z
    J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x016fec00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=300, stack(0xd8f00000,0xd8f80000)]
    0x01a5dc00 JavaThread "org.eclipse.jdt.debug: JDI Event Dispatcher" daemon [_thread_blocked, id=292, stack(0xd9000000,0xd9080000)]
    0x00a3bc00 JavaThread "Timer-2" daemon [_thread_blocked, id=291, stack(0xd9700000,0xd9780000)]
    0x00a41000 JavaThread "Packet Send Manager" daemon [_thread_blocked, id=290, stack(0xd9100000,0xd9180000)]
    0x01f73c00 JavaThread "Packet Receive Manager" daemon [_thread_in_native, id=289, stack(0xd9200000,0xd9280000)]
    0x00e2a400 JavaThread "Timer-1" daemon [_thread_blocked, id=287, stack(0xd9a00000,0xd9a80000)]
    0x0094c000 JavaThread "ServerConnection" [_thread_in_native, id=285, stack(0xd9800000,0xd9880000)]
    0x0094bc00 JavaThread "Process monitor" daemon [_thread_blocked, id=284, stack(0xd9300000,0xd9380000)]
    0x00895c00 JavaThread "Input Stream Monitor" daemon [_thread_blocked, id=283, stack(0xd9400000,0xd9480000)]
    0x01fef800 JavaThread "Output Stream Monitor" daemon [_thread_in_native, id=282, stack(0xd9600000,0xd9680000)]
    0x00a8b000 JavaThread "Output Stream Monitor" daemon [_thread_in_native, id=281, stack(0xd9900000,0xd9980000)]
    0x011dbc00 JavaThread "process reaper" daemon [_thread_in_native, id=280, stack(0xd9500000,0xd9580000)]
    0x01059800 JavaThread "Worker-24" [_thread_blocked, id=261, stack(0xd9c80000,0xd9d00000)]
    0x01059000 JavaThread "Worker-23" [_thread_blocked, id=260, stack(0xde580000,0xde600000)]
    0x02176000 JavaThread "Worker-22" [_thread_blocked, id=248, stack(0xddd00000,0xddd80000)]
    0x01ff0800 JavaThread "Worker-21" [_thread_blocked, id=247, stack(0xda280000,0xda300000)]
    0x00c41c00 JavaThread "Worker-20" [_thread_blocked, id=245, stack(0xdd700000,0xdd780000)]
    0x0268bc00 JavaThread "Worker-19" [_thread_blocked, id=243, stack(0xde000000,0xde080000)]
    0x0141e800 JavaThread "Worker-18" [_thread_blocked, id=242, stack(0xdda00000,0xdda80000)]
    0x019aec00 JavaThread "Worker-16" [_thread_blocked, id=227, stack(0xddf00000,0xddf80000)]
    0x0143b800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=223, stack(0xddb00000,0xddb80000)]
    0x01022800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=219, stack(0xdde00000,0xdde80000)]
    0x00a58800 JavaThread "Worker-12" [_thread_blocked, id=211, stack(0xde680000,0xde700000)]
    0x018c5400 JavaThread "pool-1-thread-5" [_thread_blocked, id=187, stack(0xd9d80000,0xd9e00000)]
    0x013cdc00 JavaThread "pool-1-thread-4" [_thread_blocked, id=186, stack(0xda380000,0xda400000)]
    0x002a4c00 JavaThread "pool-1-thread-3" [_thread_blocked, id=185, stack(0xddc00000,0xddc80000)]
    0x0282b400 JavaThread "pool-1-thread-2" [_thread_blocked, id=184, stack(0xd9e80000,0xd9f00000)]
    0x018c6400 JavaThread "pool-1-thread-1" [_thread_blocked, id=183, stack(0xd9f80000,0xda000000)]
    0x00973000 JavaThread "Timer-0" daemon [_thread_blocked, id=75, stack(0xdd800000,0xdd880000)]
    0x00ab8000 JavaThread "Thread-39" daemon [_thread_blocked, id=74, stack(0xdd500000,0xdd580000)]
    0x00dc1400 JavaThread "Worker-6" [_thread_blocked, id=73, stack(0xdd900000,0xdd980000)]
    0x004db000 JavaThread "Thread-32" daemon [_thread_in_native, id=66, stack(0xda4d0000,0xda4e0000)]
    0x011eb000 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=43, stack(0xdd400000,0xdd480000)]
    0x003e6400 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=27, stack(0xde100000,0xde180000)]
    0x007c6c00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=26, stack(0xde200000,0xde280000)]
    0x001ce800 JavaThread "Java indexing" daemon [_thread_blocked, id=24, stack(0xde380000,0xde400000)]
    0x00191400 JavaThread "Worker-0" [_thread_blocked, id=21, stack(0xe2580000,0xe2600000)]
    0x01235400 JavaThread "Worker-JM" [_thread_blocked, id=20, stack(0xe2380000,0xe2400000)]
    0x007ff400 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=19, stack(0xe2480000,0xe2500000)]
    0x0074e000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=17, stack(0xe2680000,0xe2700000)]
    0x00390000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=16, stack(0xe2780000,0xe2800000)]
    0x005c9800 JavaThread "State Data Manager" daemon [_thread_blocked, id=15, stack(0xe2880000,0xe2900000)]
    0x00124800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=13, stack(0xe2a80000,0xe2b00000)]
    0x00122400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=12, stack(0xe2b80000,0xe2c00000)]
    0x00110c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=11, stack(0xe2c80000,0xe2d00000)]
    0x00118000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=10, stack(0xe2d80000,0xe2e00000)]
    0x00107c00 JavaThread "Finalizer" daemon [_thread_blocked, id=9, stack(0xe2e80000,0xe2f00000)]
    0x00106400 JavaThread "Reference Handler" daemon [_thread_blocked, id=8, stack(0xe2f80000,0xe3000000)]
    =>0x0003d800 JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    Other Threads:
    0x00103c00 VMThread [stack: 0xe3080000,0xe3100000] [id=7]
    0x0012ec00 WatcherThread [stack: 0xe2980000,0xe2a00000] [id=14]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 40704K, used 18973K [0xf6000000, 0xf9400000, 0xfb800000)
    eden space 29568K, 59% used [0xf6000000,0xf714b120,0xf7ce0000)
    from space 11136K, 11% used [0xf7e40000,0xf7f7c5c8,0xf8920000)
    to space 10432K, 0% used [0xf89d0000,0xf89d0000,0xf9400000)
    PSOldGen total 90112K, used 71968K [0xeb400000, 0xf0c00000, 0xf6000000)
    object space 90112K, 79% used [0xeb400000,0xefa48298,0xf0c00000)
    PSPermGen total 73728K, used 71408K [0xe3400000, 0xe7c00000, 0xeb400000)
    object space 73728K, 96% used [0xe3400000,0xe79bc298,0xe7c00000)
    Dynamic libraries:
    0x00010000      /proj/atelteadm/tools/jdk1.6.0_21/bin/java
    0xff3a0000      /lib/libthread.so.1
    0xff370000      /proj/atelteadm/tools/jdk1.6.0_21/bin/../jre/lib/sparc/jli/libjli.so
    0xff350000      /lib/libdl.so.1
    0xff200000      /lib/libc.so.1
    0xff390000      /platform/SUNW,Sun-Fire-V445/lib/libc_psr.so.1
    0xfe400000      /proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc/server/libjvm.so
    0xff1d0000      /lib/libsocket.so.1
    0xff1f0000      /usr/lib/libsched.so.1
    0xff1b0000      /lib/libm.so.1
    0xff180000      /usr/lib/libCrun.so.1
    0xff160000      /lib/libdoor.so.1
    0xff080000      /lib/libnsl.so.1
    0xfef80000      /lib/libm.so.2
    0xff050000      /lib/libscf.so.1
    0xff140000      /lib/libuutil.so.1
    VM Arguments:
    jvm_args: -Xms128m -Xmx256m -XX:MaxPermSize=128m
    java_command: /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar -os solaris -ws gtk -arch sparc -showsplash -launcher /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix/eclipse -name Eclipse --launcher.library /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher.gtk.solaris.sparc_1.1.0.v20100503/eclipse_1307.so -startup /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar -exitdata 74000027 -install /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix -nl en_US -showlocation -vm /proj/atelteadm/tools/jdk1.6.0_21//bin/java -vmargs -Xms128m -Xmx256m -XX:MaxPermSize=128m -jar /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/usr/local/opt/apssystem/aps_9.1/bin:/proj/aps/bin:/home/ehollis/.afs/0/rbin:/home/ehollis/.afs/0/pbin:/env/seli/bin:/home/ehollis/.afs/0/ibin:/usr/atria/bin:/usr/afsws/bin:/usr/bin:/usr/X/bin:/usr/dt/bin:/usr/openwin/demo:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin:/usr/sbin:/sbin:/usr/ucb:/opt/seli/bin:/opt/sge/seli/etegrid/bin:/opt/sge/seli/bctgrid/bin:/usr/ucb:.
    LD_LIBRARY_PATH=/proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc/server:/proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc:/proj/atelteadm/tools/jdk1.6.0_21/jre/../lib/sparc:/app/gtk+/2.2.2/lib:/usr/sfw/lib/mozilla/
    SHELL=/bin/tcsh
    DISPLAY=:16.0
    HOSTTYPE=sun4
    OSTYPE=solaris
    MACHTYPE=sparc
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x87b320], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x87b320], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGXFSZ: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x759ae8], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Solaris 10 10/08 s10s_u6wos_07b SPARC
    uname:SunOS 5.10 Generic_142900-13 sun4u (T2 libthread)
    vm_info: Java HotSpot(TM) Server VM (17.0-b16) for solaris-sparc JRE (1.6.0_21-b06), built on Jun 22 2010 01:34:33 by "" with Workshop 5.8
    Any clues anyone?

    get a SIGSEGV every time I use debug mode in EclipseSo if you create a hello world program and then debug it, it crashes?
    If yes then the causes would be
    1. The VM(s) binaries are corrupted. Plural as it depends on how you run Eclipse.
    2. Something else installed on your system at the OS level (or at least always running) is corrupt or is corrupting the OS.
    3. A hardware failure.

  • Itunes  11.4.0.18 crashing when clicking on app store  Itunes is getting crash when clicked on app store. I tried to get some information for this crash and got the above message in debugging mode. Please fix this if required but i am unable to open

    Itunes  11.4.0.18 crashing when clicking on app store
    Itunes is getting crash when clicked on app store. I tried to get some information for this crash and got the above message in debugging mode. Please fix this if required but i am unable to open app store.

    Click here and follow the instructions to change the iTunes Store country.
    (97125)

  • Debug mode (EP6 SP 2) crashs from time to time

    hi folks,
    we got a very well running portal ep6 sp2 which
    we use for iview development. the developers use
    pdk and eclipse and we start the portal in debug
    mode.
    what happens is that from time to time it gets
    unpossible to connect to the debug port. it is not
    possbible to debug an iview from eclipse. the
    connection to the debug port is not possible anymore.
    the only solutions i got is a portal restart to ensure
    that our developer can use the debug port. but that
    takes too much time. does anybody know what leads to that
    phenomenon? and how can we reanimate the portal to be
    debugged without a complete restart?
    i really appreciate any help,
    maik

    Hi Tracy,
    Has it ever been shut off from AC power for any length of time?
    I'm thinking a dead or weak PRAM Battery may cause the boot mode to change.
    Unless of course it might be a sticky Shift key.
       1. Access the command line by either opening Terminal remotely, or by logging into the computer from another via SSH.
       2. Execute the following command in Terminal or on the command line:
          sudo nvram boot-args="-x"
          (If you want to start in Verbose mode as well, use sudo nvram boot-args="-x -v" instead )
       3. After using Safe Boot, to return to a normal startup, execute this command in Terminal or the command line:
          sudo nvram boot-args=""

  • App working fine in debug mode but not otherwise on iPad

    Hi everyone,
    Sorry if I am putting this question in wrong section, this seems to be the most relative location to ask question.
    My Problem:
    I have developed an app using Adobe Air and starling. App is working perfectly when I run on Flash Builder (debug and run both). When deploying on iPad at one particular location, it is either not getting TouchPhase.ENDED or some code is crashing.
    I tried to debug while running app on iPad and its working absolutely fine. But when I create the ipa file normally i.e. without debug mode, at a particular location code is not working.
    Please help me out in this regard, asap. I need to deliver it.
    Please!!!!
    Thanks
    Waqar Iqbal

    Hi,
    I know one case, but don't know if have a solution.
    See Registering Add-on in 2004
    Best Regards.

  • CS5.5 file crashes Flash on opening

    Hi,
    I've got an iMac and a MacBook Pro both running 10.6.8 and Flash CS5.5.
    I've built some files on the iMac using Flash CS5.5, but when I try and open them on the MB Pro the file crashes Flash on opening. The problem for me right now is the iMac is at my office and I'm offsite using the MB Pro. I tried re-installing Flash CS5.5 but that didn't fix the problem. Is there anything I can do to try and debug or figure out why this is happening. Other files and new files are fine in CS5.5 on the MB Pro, just this specific file that I need to work on :-) is crashing.
    I'm pasting the Crash Report in here with the hope that someone from Adobe can understand what's going on and tell me the problem / fix for it. It's looking like I'm going to have to leave the site and go back to my office, which is a pain and looks kind of un-professional in my opinion.
    Process:         Adobe Flash CS5.5 [725]
    Path:            /Applications/Adobe Flash CS5.5/Adobe Flash CS5.5.app/Contents/MacOS/Adobe Flash CS5.5
    Identifier:      com.adobe.flash
    Version:         11.5.0.325 (11.5.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [172]
    Date/Time:       2011-07-18 12:48:42.186 -0500
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          220442 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  3209 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      2DEB8EB2-4DFD-4FD1-83B3-85736FAE2059
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    Java information:
    Exception type: Bus Error (0xa) at pc=0000000023340ac8
    Java VM: Java HotSpot(TM) Client VM (20.1-b02-384 mixed mode macosx-x86)
    Current thread (0000000033002000):  JavaThread "main" [_thread_in_native, id=-1608428224, stack(00000000bf800000,00000000c0000000)]
    Stack: [00000000bf800000,00000000c0000000]
    Java Threads: ( => current thread )
      0000000033244400 JavaThread "Thread-3" [_thread_blocked, id=-1338343424, stack(00000000b02a8000,00000000b03a8000)]
      0000000036081800 JavaThread "Code Model Worker" daemon [_thread_blocked, id=-1304035328, stack(00000000b2360000,00000000b2460000)]
      0000000036081000 JavaThread "Code Model Worker" daemon [_thread_blocked, id=-1305092096, stack(00000000b225e000,00000000b235e000)]
      0000000036075000 JavaThread "FelixPackageAdmin" daemon [_thread_blocked, id=-1306148864, stack(00000000b215c000,00000000b225c000)]
      0000000036073800 JavaThread "FelixStartLevel" daemon [_thread_blocked, id=-1307205632, stack(00000000b205a000,00000000b215a000)]
      000000003680a400 JavaThread "FelixDispatchQueue" [_thread_blocked, id=-1308262400, stack(00000000b1f58000,00000000b2058000)]
      00000000331d6000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=-1310375936, stack(00000000b1d54000,00000000b1e54000)]
      0000000036801000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=-1311432704, stack(00000000b1c52000,00000000b1d52000)]
      0000000036800000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=-1312489472, stack(00000000b1b50000,00000000b1c50000)]
      0000000036004400 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=-1313546240, stack(00000000b1a4e000,00000000b1b4e000)]
      00000000331ce000 JavaThread "Finalizer" daemon [_thread_blocked, id=-1314603008, stack(00000000b194c000,00000000b1a4c000)]
      00000000331cd000 JavaThread "Reference Handler" daemon [_thread_blocked, id=-1315659776, stack(00000000b184a000,00000000b194a000)]
    =>0000000033002000 JavaThread "main" [_thread_in_native, id=-1608428224, stack(00000000bf800000,00000000c0000000)]
    Other Threads:
      00000000331ca400 VMThread [stack: 00000000b1748000,00000000b1848000] [id=-1316716544]
      00000000331df800 WatcherThread [stack: 00000000b1e56000,00000000b1f56000] [id=-1309319168]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation   total 14784K, used 0K [0000000040100000, 0000000041100000, 0000000041100000)
      eden space 13184K,   0% used [0000000040100000, 0000000040100000, 0000000040de0000)
      from space 1600K,   0% used [0000000040f70000, 0000000040f70000, 0000000041100000)
      to   space 1600K,   0% used [0000000040de0000, 0000000040de0000, 0000000040f70000)
    concurrent mark-sweep generation total 49152K, used 9268K [0000000041100000, 0000000044100000, 0000000048100000)
    concurrent-mark-sweep perm gen total 22104K, used 13261K [0000000048100000, 0000000049696000, 000000004c100000)
    Code Cache  [0000000033801000, 00000000339da000, 0000000035801000)
    total_blobs=980 nmethods=832 adapters=90 free_code_cache=31644864 largest_free_block=192
    Virtual Machine Arguments:
    JVM Args: -Djava.awt.headless=true -Xmx128m
    Java Command: <unknown>
    Launcher Type: generic
    Physical Memory: Page Size = 4k, Total = 8192M, Free = 17592186043592M
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ...ia.Flash Player.authplaylib 0x23340ac8 ExternalPlayer_Initialize + 1898520
    1   ...ia.Flash Player.authplaylib 0x232a0274 ExternalPlayer_Initialize + 1241028
    2   ...ia.Flash Player.authplaylib 0x232a0e72 ExternalPlayer_Initialize + 1244098
    3   ...ia.Flash Player.authplaylib 0x23320b01 ExternalPlayer_Initialize + 1767505
    4   ...ia.Flash Player.authplaylib 0x23297611 ExternalPlayer_Initialize + 1205089
    5   ...ia.Flash Player.authplaylib 0x23297b19 ExternalPlayer_Initialize + 1206377
    6   ...ia.Flash Player.authplaylib 0x2329b8c9 ExternalPlayer_Initialize + 1222169
    7   ...ia.Flash Player.authplaylib 0x232815c3 ExternalPlayer_Initialize + 1114899
    8   ...ia.Flash Player.authplaylib 0x232190a3 ExternalPlayer_Initialize + 687603
    9   ...ia.Flash Player.authplaylib 0x2321a7b3 ExternalPlayer_Initialize + 693507
    10  ...ia.Flash Player.authplaylib 0x2321a929 ExternalPlayer_Initialize + 693881
    11  ...ia.Flash Player.authplaylib 0x23223ace ExternalPlayer_Initialize + 731166
    12  ...ia.Flash Player.authplaylib 0x22edf83f 0x22cfa000 + 1988671
    13  ...ia.Flash Player.authplaylib 0x230002d7 0x22cfa000 + 3171031
    14  ...ia.Flash Player.authplaylib 0x23000757 0x22cfa000 + 3172183
    15  ...ia.Flash Player.authplaylib 0x2302a1f2 0x22cfa000 + 3342834
    16  ...ia.Flash Player.authplaylib 0x2302b9d6 0x22cfa000 + 3348950
    17  ...ia.Flash Player.authplaylib 0x23030a3f 0x22cfa000 + 3369535
    18  ...ia.Flash Player.authplaylib 0x23080bd8 0x22cfa000 + 3697624
    19  ...ia.Flash Player.authplaylib 0x23081279 0x22cfa000 + 3699321
    20  ...ia.Flash Player.authplaylib 0x231a7924 ExternalPlayer_Initialize + 222836
    21  com.apple.CoreFoundation      0x926a5a6b __CFRunLoopRun + 8059
    22  com.apple.CoreFoundation      0x926a33f4 CFRunLoopRunSpecific + 452
    23  com.apple.CoreFoundation      0x926a3221 CFRunLoopRunInMode + 97
    24  com.apple.HIToolbox           0x970cad60 RunCurrentEventLoopInMode + 392
    25  com.apple.HIToolbox           0x970cab17 ReceiveNextEventCommon + 354
    26  com.apple.HIToolbox           0x9725308e _AcquireNextEvent + 54
    27  com.apple.HIToolbox           0x97248d40 RunApplicationEventLoop + 228
    28  com.adobe.flash               0x0102372a non-virtual thunk to CFileDialogImpl::~CFileDialogImpl() + 4302
    29  com.adobe.flash               0x00ffc12d CTimerImpl::~CTimerImpl() + 279
    30  com.adobe.flash               0x00ffc1d9 CTimerImpl::~CTimerImpl() + 451
    31  com.adobe.flash               0x002657c2 devtech_private::Buffer<unsigned short>::Grow(unsigned long) + 1506
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x9174e382 kevent + 10
    1   libSystem.B.dylib             0x9174ea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x9174df59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x9174dcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x9174d781 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x9174d5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x91727b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x917556f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9179e05f pthread_cond_wait + 48
    3   com.adobe.amt.services        0x11625274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services        0x1161e074 C_EULA_SetState + 2166
    5   com.adobe.amt.services        0x116252da C_AMTUISwitchSuppressUpdates + 16966
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib             0x917650d6 recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib             0x91784eab recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib 0x271772d7 Invoke + 54887
    3   ServiceManager-Launcher.dylib 0x27176376 Invoke + 50950
    4   ServiceManager-Launcher.dylib 0x27175227 Invoke + 46519
    5   ServiceManager-Launcher.dylib 0x27175279 Invoke + 46601
    6   ServiceManager-Launcher.dylib 0x27175303 Invoke + 46739
    7   ServiceManager-Launcher.dylib 0x2716f706 Invoke + 23190
    8   ServiceManager-Launcher.dylib 0x2716f8ef Invoke + 23679
    9   ServiceManager-Launcher.dylib 0x271704cf Invoke + 26719
    10  ServiceManager-Launcher.dylib 0x271705cd Invoke + 26973
    11  ServiceManager-Launcher.dylib 0x271739b8 Invoke + 40264
    12  ServiceManager-Launcher.dylib 0x27173c61 Invoke + 40945
    13  ServiceManager-Launcher.dylib 0x2717428f Invoke + 42527
    14  ServiceManager-Launcher.dylib 0x2717448c Invoke + 43036
    15  ServiceManager-Launcher.dylib 0x2716611a Login + 1654
    16  ServiceManager-Launcher.dylib 0x271676f7 Login + 7251
    17  ServiceManager-Launcher.dylib 0x271749fb Invoke + 44427
    18  ServiceManager-Launcher.dylib 0x27176f49 Invoke + 53977
    19  libSystem.B.dylib             0x91755259 _pthread_start + 345
    20  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib             0x9174d412 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x9174d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x9174d5c6 start_wqthread + 30
    Thread 12:  Java: Exception Handler Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libSystem.B.dylib             0x91793c78 mach_msg_server + 520
    3   libjvm.dylib                  0x2b9100eb jio_snprintf + 43803
    4   libjvm.dylib                  0x2b90ff80 jio_snprintf + 43440
    5   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 13:  Java: Gang worker#0 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 14:  Java: Gang worker#1 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 15:  Java: Gang worker#2 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 16:  Java: Gang worker#3 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 17:  Java: Gang worker#4 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 18:  Java: Gang worker#5 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 19:  Java: Gang worker#6 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 20:  Java: Gang worker#7 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 21:  Java: Gang worker#0 (Parallel CMS Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2bbdda92 JVM_RaiseSignal + 739594
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 22:  Java: Gang worker#1 (Parallel CMS Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2bbdda92 JVM_RaiseSignal + 739594
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 23:  Java: Concurrent Mark-Sweep GC Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb8293c JVM_RaiseSignal + 366516
    4   libjvm.dylib                  0x2bb7669b JVM_RaiseSignal + 316691
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b9be0c9 JVM_Close + 13205
    8   libjvm.dylib                  0x2b9be031 JVM_Close + 13053
    9   libjvm.dylib                  0x2b929d73 jio_vsnprintf + 25090
    10  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    11  libSystem.B.dylib             0x91755259 _pthread_start + 345
    12  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 24:  Java: VM Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb8293c JVM_RaiseSignal + 366516
    4   libjvm.dylib                  0x2bb7669b JVM_RaiseSignal + 316691
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b990564 JVM_Lseek + 149378
    8   libjvm.dylib                  0x2b990214 JVM_Lseek + 148530
    9   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    10  libSystem.B.dylib             0x91755259 _pthread_start + 345
    11  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 25:  Java: Reference Handler
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x33801374 0 + 864031604
    12  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    13  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    14  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    15  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    16  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    17  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    18  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    19  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    20  libSystem.B.dylib             0x91755259 _pthread_start + 345
    21  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 26:  Java: Finalizer
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33988040 0 + 865632320
    10  ???                           0x33801374 0 + 864031604
    11  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    12  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    13  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    14  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    15  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    16  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    17  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    18  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    19  libSystem.B.dylib             0x91755259 _pthread_start + 345
    20  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 27:  Java: Surrogate Locker Thread (Concurrent GC)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90eba4 jio_snprintf + 38356
    7   libjvm.dylib                  0x2b9ad9d7 JVM_IsPrimitiveClass + 5991
    8   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    9   libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    10  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    11  libSystem.B.dylib             0x91755259 _pthread_start + 345
    12  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 28:  Java: Signal Dispatcher
    0   libSystem.B.dylib             0x91727b36 semaphore_wait_trap + 10
    1   libjvm.dylib                  0x2b9ae209 JVM_IsPrimitiveClass + 8089
    2   libjvm.dylib                  0x2b9adbf4 JVM_IsPrimitiveClass + 6532
    3   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    4   libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    5   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 29:  Java: C1 CompilerThread0
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90eba4 jio_snprintf + 38356
    7   libjvm.dylib                  0x2b9b4d30 JVM_Write + 288
    8   libjvm.dylib                  0x2b9af368 JVM_IsPrimitiveClass + 12536
    9   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    10  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    11  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    12  libSystem.B.dylib             0x91755259 _pthread_start + 345
    13  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 30:  Java: Low Memory Detector
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b9b0cf6 JVM_IsPrimitiveClass + 19078
    8   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    9   libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    10  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    11  libSystem.B.dylib             0x91755259 _pthread_start + 345
    12  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 31:  Java: VM Periodic Task Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb8293c JVM_RaiseSignal + 366516
    4   libjvm.dylib                  0x2b9b2eae JVM_IsPrimitiveClass + 27710
    5   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 32:  Java: FelixDispatchQueue
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x33803e31 0 + 864042545
    12  ???                           0x33803e31 0 + 864042545
    13  ???                           0x3380430d 0 + 864043789
    14  ???                           0x33801374 0 + 864031604
    15  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    16  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    17  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    18  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    19  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    20  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    21  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    22  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    23  libSystem.B.dylib             0x91755259 _pthread_start + 345
    24  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 33:  Java: FelixStartLevel
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 34:  Java: FelixPackageAdmin
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 35:  Java: Code Model Worker
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2bb8280f JVM_RaiseSignal + 366215
    4   libjvm.dylib                  0x2ba148d0 JVM_SocketAvailable + 246
    5   ???                           0x3380b9d9 0 + 864074201
    6   ???                           0x33803e31 0 + 864042545
    7   ???                           0x33803e31 0 + 864042545
    8   ???                           0x3380430d 0 + 864043789
    9   ???                           0x33804473 0 + 864044147
    10  ???                           0x33803f97 0 + 864042903
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 36:  Java: Code Model Worker
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2bb8280f JVM_RaiseSignal + 366215
    4   libjvm.dylib                  0x2ba148d0 JVM_SocketAvailable + 246
    5   ???                           0x3380b9d9 0 + 864074201
    6   ???                           0x33803e31 0 + 864042545
    7   ???                           0x33803e31 0 + 864042545
    8   ???                           0x3380430d 0 + 864043789
    9   ???                           0x33804473 0 + 864044147
    10  ???                           0x33803f97 0 + 864042903
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 37:  Java: Thread-3
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb82a6b JVM_RaiseSignal + 366819
    4   libjvm.dylib                  0x2b9e8315 JVM_Sleep + 246
    5   libjvmlinkage.dylib           0x26241a68 JVM_Sleep + 72
    6   ???                           0x3380b9d9 0 + 864074201
    7   ???                           0x33803e31 0 + 864042545
    8   ???                           0x3380430d 0 + 864043789
    9   ???                           0x33801374 0 + 864031604
    10  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    11  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    12  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    13  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    14  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    15  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    16  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    17  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    18  libSystem.B.dylib             0x91755259 _pthread_start + 345
    19  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 38:
    0   libSystem.B.dylib             0x9174d412 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x9174d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x9174d5c6 start_wqthread + 30
    Thread 39:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x917819c5 nanosleep$UNIX2003 + 188
    2   com.adobe.flash.flbridge      0x2acb985b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.flash.flbridge      0x2acb3de3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.flash.flbridge      0x2acb9968 ScObjects::Thread::go(void*) + 168
    5   libSystem.B.dylib             0x91755259 _pthread_start + 345
    6   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 40:
    0   libSystem.B.dylib             0x91727b42 semaphore_wait_signal_trap + 10
    1   libSyst

    Thanks! I sent some files.
    I'm thinking it's related to a font embedded and used dynamically from the Library. I rebuilt one of the .flas a layer at a time and I'm sure it's the embeded font (in the library). There are 2 test .flas 1 with the  embedded font and 1 without.
    Oddly enough, 1 of the times I was testing a layer at a time the file opened without crashing and then the other 2 real .flas also opened without crashing, but when I quit Flash and tried to open them a again I got the same crash issue and the files wouldn't open.
    I haven't tried yet, but I'm going to see if it crashes using a different font. The font is one of Adobe's and used as branded element in the design so I can't really change it for production use, but it would be worth it to test.
    Thanks,
    Dave

  • FlashBuilder 4.7 will not run in Debug mode with BlackBerry 10 simulator

    We have developed an app that has been released both for Apple and Android working well.
    When trying to do the same for BlackBerry it was rejected because it did not start at all.
    The App that runs fine on the BlackBerry simulator in the "run configurations mode".
    However when I try to run it in Debug mode it will not start at all. Just flashes and simulator goes back to main menu.
    The debugger will after a while time out since it cannot connect to the app running on the simulator.
    BlackBerry 10 Simulator runs under vmWare Fusion.
    Anyone seen this before?

    Hi, Silence04. Welcome to the Discussions.
    You had serious disk directory corruption. That can also cause corruption in OS files: while Disk Utility or DiskWarrior may fix the directory, if the directory corruption resulted in OS files being damaged — as it appears to be in this case — then you can't avoid an Archive and Install. For important tips on this, see my "General advice on performing an Archive and Install" FAQ. Perform the steps therein in the specified order.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Is there a debug mode for Presenter SWF published to a custom LMS?

    I've implemented a simple LMS interface (API_1484_11) in JavaScript on the page that loads the SWF generated by Presenter. The SWF is playing fine, and it appears to call the API_1484_11.Initialize() method, but then doesn't call any of my Commit(), GetValue(), or SetValue() methods. Weird thing is that is used to work fine, and I can't figure out what I changed that would break it.
    In my Presenter presentation, the Quiz Manager settings have these reporting options:
    - LMS set to SCORM (Manifest set to 2004 type)
    - Report data set to quiz results and slide views
    - Pass or fail set to report complete/incomplete
    - Score set to report as percent
    - Level set to report interactions and the score
    Is there any way to tell the SWF to run in a debug mode so it will provide some sort of information or feedback about what it is doing regarding the LMS interface?

    Ugh. So I quit out of my browser and restarted, and now the Presenter Flash is communicating with my mini-LMS interface properly. After Initialize() it calls getValue() and asks for cmi.location, cmi.score._children, etc. values. I think I've seen this happen before, where if I accidentally have two windows with a Presenter Flash object in them, they both stop working with the LMS API until I quit and restart my browser. (I'm on a Mac with Firefox but have seen this on Windows with IE, too, I think.)
    But still, I'm wondering if there are any debugging tricks with the Presenter Flash object... or any API documentation for it?

  • Edit code while in debug mode in CC

    Hi,
    I have just upgraded to Flash CC, and can no longer edit code while in debug mode. It appears the code window becomes read only while debugging. This is problematic because I often find it very useful to copy in variable names from data visible in the variables display portion of the call stack. This is very helpful if I have made a typo in my variable names, or if I am reading out data from a network request and I don't know the variable names ahead of time. Is there a way to unlock the code window so it does not become read only during debugging?
    -David

    Hi Amy,
    I appreciate that you are trying to help, and from a purely coding standpoint see the advantages to Flash Builder IDE over the Flash Professional IDE. Although personally I am a Visual Studio kinda guy... However I am working with a fairly large code base, (we are a small game studio that has been working with flash cs4, 5, and 5.5 for the past 5 years) and while nobody that works for me is crazy enough to put code on the timeline, we do have a significant amount of UI elements, dialogs, and layouts that are designed in the Flash editor with logic in classes that extend those elements. Now correct me if I am wrong, but it is my understanding that you cannot build FLA files from flash builder let alone have them link with the classes that are set to extend them in Flash Professional. The move to CC actually gives us access to Flash Builder - something that previously was an additional $500 a seat. While it may make sense for us to use in the future, for now I am faced with the issue of the new Flash CC has removed the ability to edit the code while debugging. I was hoping there was a setting or a hidden option to turn this very unnecessary change off, I wasn't really asking for a critique of my IDE choice.
    -David

  • Code runs fine in debug mode but hangs when compiled in release mode

    I am struggling with the following problem. I have code which runs fine when it is executed in debug mode. However, when I compile it in release mode and run the executable, the code freezes and does not work. The code acquires images from a Hamamatsu camera. In the debug mode I am able to continuously acquire images. However, in the release version, the code hangs after acquiring the first image.
    I am using LabWindows/CVI version 7.
    I would greatly appreciate if I can get any help/suggestions in resolving this problem?
    Thanks!
    Regards,
    Sripad
    Solved!
    Go to Solution.

    Sripad:
    If you search this forum for "debug release crash" or "release version crash" or similar phrases, you'll find that this is a pretty common question.  Look through the other posts you find here to see if anything is applicable to you.
    The debug version does some things like padding variables so you can sometimes overrun your declared variable space without overwriting the next variable.  In the release, the variables are packed, so if you overrun one, you are overwriting another.  Just one possible difference.
    You can do some things in your release code to see where things get lost, like (temporarily using printf statements after multiple statements at the start and end of your loop to try to identify that failing line of code.
    Look through other threads to find other ideas.

  • Lm3s8962 cannot enter debug mode

    Hello,
    I am developing an application on my luminary lm3s8962 with labview for ARM, I have an home made PCB with this ARM and sensors.
    I have 2 PCB's of the same.
    My problem is,
    instead of a 8 MHz crystal I have a 8 MHz oscillator (single ended) so I see that my RTC is not good, I can see this with GPS timing.
    but using timer0 with interval 1 sec and update a counter works good!?
    I tried to make some changes in the startup file with the clock configuration:
            ; set the system clock to run at 50 MHz
            ; SysCtlClockSet(SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL |
            ;                SYSCTL_XTAL_8MHZ | SYSCTL_OSC_MAIN);
            LDR        R0, =0x01C00380
            BL        SysCtlClockSet
    Looking in the SysCTL I see other crystal values, like 16 MHz. used value: #define SYSCTL_RCC_XTAL_16MHZ   0x00000540  // 16.0 MHz (USB), instead of 0x380
    I know this is not supported, but I want it to give it a try.
    I build it and flash it, but now my debugger says:
    Cannot enter memory and cannot enter debug mode.
    I did some reading on the internet and it says that because 16 MHz is not supported it goes into deep sleep.
    I don't know if this true..
    My other PCB works fine, this one is not flashed with the wrong clock.
    my question is:
    first priority:
    Can I prevent that my program starts up in my arm, so I can flash it with the good clock configuration. OR
    Can I erase the flash (with out ULINK2) in some way, so that no program starts  up and I can flash my ARM.
    second priority:
    Maybe someone knows how I can get the right RTC with my 8 MHz oscillator, I need a correct clock in ms.
    Thank you in advance,
    Wouter
    Wouter.
    "LabVIEW for ARM guru and bug destroyer"

    Hi Wouter,
    The questions about the flashing can be found via the following link.
    http://www.keil.com/support/man/docs/ulink2/ulink2_su_flashdownloadcfg.htm
    (right click on the target and click on Show Keil uVision)
    About the hardware configuration you can better ask uVision, since they know more about Hardware.
    Maybe this link helps.
    http://www.keil.com/support/man/docs/rlarm/rlarm_ar_config.htm
    Regards,
    Bas van Dijke
    NI Netherlands

Maybe you are looking for