OutOfMemoryError when compiling my app with Ant

I'm having a hard time compiling my application using Flex 3 Ant tasks. When I compile it in Flex Builder, using the default compiler, everything works fine. But when I try to build it from the command line, I always get the following error:
[mxmlc] Error: Java heap space
[mxmlc] java.lang.OutOfMemoryError: Java heap space
I have already tried setting the following in FlexBuilder.ini and ANT_OPTS
-Xms768m-Xmx1024m-XX:MaxPermSize=256m-XX:PermSize=64m
Still giving the same error. Please let me know your suggestions.
-Thanks in Advance.

The FlexBuilder.ini has nothing to do with running a command line Ant build. Try specifying the jvmargs inside the <mxmlc> task. Example"
<mxmlc ...>
<jvmarg line="-Xmx512m"/>
</mxmlc>
Jason San Jose
Software Engineer, Flash Builder

Similar Messages

  • Compiling Flex Apps With ANT Problem

    Hi guys,
    I thought i'd have a go at using ANT to compile my applications into a single war file that I could then use to deploy. So far so good, until I got to the last bit. Within the root of my application i have the actionscript source file and underneath that I have an assets folder where all my images and css files live. E.g. app_root/asrc/assets/stylesheets/default.css. Now the ant task i've used to succesfully compile everything else looks like this;
         <target name="mxcompile">
            <mxmlc
                file="${asrc}/Main.mxml"
                output="${dest}/Main.swf"
                actionscript-file-encoding="UTF-8"
                keep-generated-actionscript="true"
                incremental="true"
                context-root="SOSBetaAdmin"
                services="WEB-INF/flex/services-config.xml"
                allow-source-path-overlap="true">
                <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                <source-path path-element="${FLEX_HOME}/frameworks"/>
                <source-path path-element="${asrc}/assets/stylesheets"/>
                <!-- List of SWC files or directories that contain SWC files. -->
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="../bundles/{locale}" />
                </compiler.library-path>
                <!-- include dependencies -->
                <compiler.library-path dir="." append="true">
                    <include name="libs" />           
                </compiler.library-path>
            </mxmlc>
        </target>
    However when i run it i get the following error;
    Error: Problem finding external stylesheet: assets/stylesheets/default.css
    Its there, its definately there and whats more Flex builder doesn't have a problem with it. So why does running the compiler as an ANT task cause this issue? Am I missing something?

    I think your problem is that you are missing another source-path tag.  Assuming your assets directory is immediately beneath directory asrc, you'll want to add the following line to your build.xml file:
    <source-path path-element="${asrc}"/>
    Hope that helps.
    Joe

  • Compile AIR application with Ant (WindowedApplication could not be found)

    I'm trying to compile my AIR application with Ant, using the mxmlc Ant Task. It seems to compile fine, and I get a .swf, but when I try to run it with ADL, I get the message "Class mx.core::WindowedApplication could not be found." It looks like the AIR libraries aren't being included properly.
    Here's my mxmlc task:
    Class mx.core::WindowedApplication could not be found.
    <mxmlc
         file="${MAIN_MXML}"
         output="${DEPLOY_DIR}/MyApp.swf"
         compatibility-version="3"
         locale="en_US"
         static-rsls="true"
         debug="${DEBUG_FLAG}"
         optimize="true"
         link-report="${DEPLOY_DIR}/report.xml"
         configname="air">
         <load-config filename="${FLEX_HOME}/frameworks/air-config.xml" />
         <library-path dir="${FLEX_HOME}/frameworks/libs" append="true">
              <include name="*.swc" />
         </library-path>
         <library-path dir="${FLEX_HOME}/frameworks/libs/air" append="true">
              <include name="*.swc" />
         </library-path>
         <library-path dir="${FLEX_HOME}/frameworks/locale" append="true">
              <include name="{locale}" />
         </library-path>
         <source-path path-element="${SRC_DIR}" />
    </mxmlc>
    Any idea why this is happening? I've tried not including the load-config section and not including the library paths, but it's always the same result - it can't find WindowedApplication.
    Thanks!

    Hi, Guys!
    I ran into the same problem when i tried to write an ant-script to compile the asDocs for my project.
    After reading shades post i added the air-config (This resolved the WindowApplication couldn't be found error, because it adds all the air libs i guess)
    but lead to the problem that the flex vector-class wasn't found. As Vector is flashplayer 10.0.0 i also
    used the target-player parameter (This fixed that nicely).
    But now i got the problem that i get lots of this error msgs: DepartmentItemRendererClass.as(11):
    Error: The private attribute may be used only on class property definitions.
    I guess the problem now is that ant doesn't understand that the AS-Classes producing that errors are not used as
    standalone-classes. To divide my mxml and AS-Code i import external AS-Classes to my MXML
    like that <mx:Script source="ascodeClass.as" />
    Is there a solution allowing me to use this pattern and still compile my asDoc with ant?
    It confuses me a little, because Ant-Scripts worked to compile the project.
    Thanks in advance!
    Florian
    My Ant-Script producing that error:
    <project name="Red bull BPT 2.0: Generate ASDoc" basedir=".">
        <description>
           Creates the ASDoc for Red Bull BPT 2.0
        </description>
        <property file="FlexbuilderASDocAntTask.properties" />
        <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
        <target name="cleanAndCreateASDoc"
                depends="cleanASDoc, compileASDoc"
                description="Cleans and creates Actionscript-Documentation"
                />
            <!-- Delete the existing output folder and files and then regenerate the output folder -->
                <target name="cleanASDoc">
                    <echo>Deleting ASDoc Directory...</echo>
                        <!--Delete the folder specified for the Asdoc.dir variable-->
                        <delete dir="${Asdoc.dir}" failOnError="false" includeEmptyDirs="true" />
                        <echo>Deleted ASDoc Directory</echo>
                        <echo>Creating ASDoc Directory...</echo>
                        <!--Creates the folder specified for the Asdoc.dir variable-->
                        <mkdir dir="${Asdoc.dir}" />
                    <echo>Created ASDoc Directory</echo>
                </target>
            <!-- Run the ASDoc executable and generate the ASDocs to the new output folder -->
                <target name="compileASDoc">
                    <echo>ASDoc Compiling...</echo>
                        <exec executable="${AsDocs.executable}" failonerror="true">
                        <!--THIS SEEMS TO SOLVE THE WINDOWEDAPPLICATION AND FOLLOWING VECTOR ERROR -->   
                            <arg line="-load-config ${FLEX_HOME}/frameworks/air-config.xml" />
                            <arg line="-target-player 10.0.0" />
                        <!--THIS SEEMS TO SOLVE THE WINDOWEDAPPLICATION AND FOLLOWING VECTOR ERROR -->
                        <!--Main title for the top of all ASDoc pages-->
                            <arg line="-main-title '${Main.title}'" />
                        <!--Prefix Title of the window-->
                            <arg line="-window-title '${Window.title}'" />
                        <!--Defines the output directory for the ASDoc-Files-->
                            <arg line="-output '${Asdoc.dir}'" />
                        <!--Footer added to each ASDoc page-->
                            <arg line="-footer '${Footer.text}'" />
                        <!--Adding the source folders the ASDoc should be created from (Start)-->
                            <arg line="-doc-sources '${ModuleBaseDir}/source'" />
                        <!--Adding the source folders the ASDoc should be created from (End)-->
                        <!--Adding the folders for external Libraries needed to compile the application(Start)-->
                            <arg line="-external-library-path '${ModuleBaseDir}/libs'" />
                        <!--Adding the folders for external Libraries needed to compile the application(End)-->
                        </exec>
                    <echo>ASDoc Compile Complete!</echo>
        </target>
    </project>

  • Compiling own app with -X02 makes external dll core dump.

    Hello,
    I have a C++ app that calls a function w/in an external shared library. The external dll does not have debug symbols and is probably optimized. When my app is compiled with -xO2 or higher, I get a core dump (no mapping at the fault address) deep within the external dll. When I am compiling my app with -xO1 or with debug info, I do not get the core dump within the external dll.
    My questions are:
    1. Does this mean that there is a bug w/in my code or within the external dll's code?
    2. If not error in either, is there any way to overcome this core dump without lowering the level of optimization (and thus slowing down the app)
    Here is a stack trace I got by attaching dbx to my app:
    t@1 (l@1) signal SEGV (no mapping at the fault address) in num2qword at 0xfd320248
    [1] num2qword(0x345cfd8, 0xffffff85, 0x63ad0, 0xfd323ba0, 0xa800, 0xa8d8), at 0xfd320248
    [2] evalexpr(0xffbf7f58, 0x345cee8, 0x1, 0x0, 0xfd27e558, 0xfd3230d0), at 0xfd323ba0
    [3] eval_expr_full(0x328e388, 0x345d04c, 0x345cfd8, 0xfd27e558, 0x1, 0x0), at 0xfd3249e8
    [4] cm_eval_expr(0x328e388, 0x345d04c, 0x5800, 0x5944, 0xb400, 0xb400), at 0xfd1eea68
    [5] cm_optredeem_can_redeem(0x328e388, 0x345d1e0, 0x16ddec, 0x5c00, 0x0, 0x345d1e4), at 0xfd21620c
    [6] cm_optredeem_condition(0x328e388, 0x345d1e0, 0x0, 0x0, 0x0, 0x135eb29), at 0xfd2162d8
    [7] cm_maybe_execute_optredeem(0x328e388, 0x345d1e0, 0x0, 0x0, 0x0, 0x1), at 0xfd216568
    [8] cm_pay_1_period(0x328e388, 0xfd3ba364, 0x345d1e0, 0x345d52c, 0xfd383c98, 0x0), at 0xfd21ab5c
    [9] cm_payloop(0x328e388, 0x1, 0x0, 0x324df00, 0x0, 0x3), at 0xfd21ae08
    [10] icmo_cashflows(0x0, 0x0, 0x168, 0x328b7b0, 0x0, 0x328b7b0), at 0xfd2d1700
    [11] CMOInstrument::getICMOCashFlow(0x1627b28, 0xfd48bdb8, 0x570, 0x2b1c, 0x2800, 0x400), at 0xfd442410
    [12] NE_CMOAnalytics::value(0x39b71e0, 0x98, 0xfd48bdb8, 0xe, 0xffbfc268, 0x2e93b08), at 0xfd42d560
    [13] NumericExpression::value(0x1643800, 0x1667b48, 0x1667b48, 0x2eabde0, 0x2eabde0, 0x0), at 0xc13410
    [14] NE_CMOPriceTimesBalance::value(0x2b02078, 0x2ead230, 0x1667b48, 0x2eabea0, 0x2eac06c, 0xfd48ec8c), at 0xfd42da9c
    [15] NumericExpression::value(0x1643800, 0x1667b48, 0x1667b48, 0x2eabea0, 0x2eabea0, 0x0), at 0xc13410
    [16] ExchangeableModuleBase::evaluateExpression(0x31259c4, 0x15e4400, 0x0, 0x2eabea0, 0x1667b48, 0x2e93b08), at 0x746e54
    [17] ExchangeableModuleBase::evaluateExpressions(0x31259c4, 0x2f3d7c8, 0x746ca0, 0x1, 0x164c800, 0x15c8414), at 0x746c68
    [18] ExchangeableModuleBase::recalc(0x31259c4, 0x0, 0xffffffc8, 0x164c800, 0x0, 0x746c40), at 0x746c10
    [19] ExchangeableModule::recalc(0x31258d4, 0x15e5730, 0x15c81ac, 0x164c800, 0x7fe8c0, 0x0), at 0x4a8ff4
    [20] BatchInstrument::commandDispatch(0x15fd850, 0x1ac, 0x1, 0x619b2c, 0xc, 0x2ebbbc0), at 0x619ce0
    [21] Callback(0x2eee48c, 0x3, 0x5, 0x1, 0xffbfccf0, 0xffbfcd6c), at 0xe652f0
    [22] CallExtRtn(0xffbfe1d0, 0x2, 0x1, 0xffffdffe, 0x1, 0xfcd0fc86), at 0xe727d4
    [23] PcodeExecute(0x2eee8ac, 0xef5c18, 0x1, 0x15b9750, 0xef5c18, 0x4), at 0xeab848
    [24] ExpStartThread(0x2eee48c, 0x0, 0x0, 0x1, 0x1, 0x0), at 0xe6e1e0
    [25] BasicScriptCodeObject::executeThread(0x2ebb070, 0x2eee48c, 0x0, 0x2ebb074, 0x2eeed68, 0x0), at 0xa0fcb0
    [26] BasicScriptCodeObject::run(0x2ebb070, 0x0, 0x0, 0x0, 0x0, 0x2ebb070), at 0xa0fe24
    [27] BasicScriptManager::loadAndExecInitScriptFile(0x2d7eb08, 0x1, 0xa, 0x0, 0x1, 0x2eef5f0), at 0x587f80
    [28] main(0x32db9b8, 0xffff3400, 0x308b998, 0x0, 0x1c1fd20, 0x1c0db58), at 0x438c6c
    [10] icmo_cashflows(...) is the call to the external dll. From 9 and up to 1 the source code is not visible to me..
    OS/CC Versions:
    CC: Sun C++ 5.5 Patch 113817-05 2004/01/13
    SunOS: 5.9 Generic_117171-05 sun4u sparc SUNW,Sun-Fire-880
    compilation options:
    -dalign -xarch=v8plusa -xlibmopt -D__solaris_sparc__ -errtags=yes -errwarn=wnoretvalue,wnoelseretvalue +w2 -erroff=doubunder,reftotemp,notemsource,hidef,hidevf,wbadlinkage_w,noexthrow,noextry,notused -DLIC_MGR -DUSE_SMART_HEAP -DUSE_SH_ALLOC -template=wholeclass -instances=explicit -features=no%except -features=rtti -Drindex=rindex -Dindex=index   -DADD_DYNAMIC_SYMBOLS     -KPIC   -DNDEBUG   -mt   -xO1 ( -xO2 .. -xO5 or -fast give above noted core dump)
    Thanks in advanice,
    Alex

    From the symptoms you describe, it is possible that the shared library contains a bug, but it is more likely that the problem is in your code, passing bad data to the shared library.
    The problem might be a compiler bug, but I think an error in your code is more likely.
    For example, your code as written might have undefined behavior that works by accident when compiling without optimizing, but fails when the compiler improves the runtime code.
    Some examples:
    1. A classic MT programming error is failing to declare a variable volatile when it is shared by more than one thread. In each thread, the compiler assumes it can remember the value of the variable and not reload it between references.
    2. "x = ++x + b;" Modifying a variable twice in an expression withtout sequence points has undefined behavior -- compiler optimization can affect the result.
    3." foo(x, x+=3);" the order of evaluation of function arguments is unspecified, so the actual values passed to foo could depend on optimization.
    With C++ 5.5, you get some warnings from system headers that you can't do anything about, which I suspect is why you have disabled some warnings. Unfortunately, you might be disabling warnings that you need to see. That is, some of the disabled warnings could point to invalid code that results in the program crash.
    I suggest using w instead of w2 (to avoid uninteresting warnings), and fix your code to eliminate the warnings you get.
    In the current compiler, C++ 5.7 in Sun Studio 10, we have made some adjustments to warnings to make w and w2 more useful. You should consider upgrading.You can get a 60-day free trial version here:
    http://www.sun.com/software/products/studio/index.xml
    Also get the current patches for it here:
    http://developers.sun.com/prodtech/cc/downloads/patches/index.html

  • Error when compiling iOS app

    I have tried to start learning iOS development, however whenever i try to compile my app i always get a load of errors with the 4.2 frameworks
    this is the errors i keep getting
    http://pastebin.com/raw.php?i=kavS0zNA
    does anyone know what i have done wrong?

    Please use the confidential forums created for this purpose: 
    iOS 5 beta

  • When i download Apps with Wifi they stay in "Wait" and when download with 3G they Have not problem

    My Appstore doesn't work good. When i want download or update my apps with all wifi Connection i Can't do it.
    Instead with 3G i haven't problem. Why?
    I'm Italian. I Have an iPhone 4S

    Try This...
    Close All Open Apps...  Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Multiple mailboxes when using mail.app with google in IMAP.

    Hello,
    I have just started using mail.app with IMAP and my google mail account appears to be in two place. The mail.app has the following interface in the left pane.
    MAILBOXES, REMINDERS, RSS and GMAIL all in grey. Below the MAILBOXES i have got the following folders, inbox, sent and trash and below the GMAIL, i have got a replication of the structure in my google account.
    which set of folders should i be using?
    when i deleet the mail in the MAILBOXES it does not seem to delete it in All Mail folder under GMAIL.
    IS the synchronisation between the mails in the mail.app and the google server on a periodic basis. can i force the synchronisation?

    Mail works fine with Exchange 2003. This is how our accounts are configured:
    Incoming Mail Server:your exchange server.domain.com.au
    eg. server2.bunnings.com.au
    Username: domain\User alias\Full username
    eg. bunnings\bobs\bob.smith
    SMTP: smtp.bunnings.com.au
    Web Access Server: webmail.bunnings.com.au
    You can then setup the LDAP options under the composing tab to get the email list from your Exchange server.
    And no i do not work for Bunnings!
    Good Luck!

  • Ostringstream 10; hangs when compiled and build with -mt option.

    I've written a very simple program to test the use of the stl class ostringstream. The program write an integer to the ostringstream object. In a multithreaded environment (compiled and build with the -mt option), that operation hangs and never returns, whilst it works fine if the program is compiled and build without the -mt option.
    Here is the program :
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <sstream>
    int main() {
    std::ostringstream buffer;
    printf("before writing integer to ostringstream\n"); fflush(stdout);
    buffer<< 10;
    printf("after writing integer to ostringstream.\n"); fflush(stdout);
    printf("exiting.\n"); fflush(stdout);
    return 0;
    Compilation and build :
    CC -mt test.cpp -o test
    Do you any idea why the program hangs at buffer << 10; in a multithreaded environment ?
    (I have tried to write a string instead of a integer, then it works).
    Thanks a lot

    Hi, I've tried your code with Solaris 7 with Forte Developer 6.2, and it seems to work fine. I get the following output:
    before writing integer to ostringstream
    after writing integer to ostringstream.
    exiting.
    My compiler version is:
    CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-03 2001/10/19
    -Moazam

  • Error creating files. Compilation failed... when publishing iOS app with AIR 3.1 and Flash 11.5.1

    Hello, I'm running Windows 7. I'm using Flash 11.5.1 (that's CS5.5 updated once) and AIR 3.1 to make an iPhone app.
    I can export the app perfectly fine with either Ctrl+Enter or F12.
    I added all the required things with AIR for iOS settings, such as a p12 certificate and icon files.
    I then hit publish. After I hit publish, I got this error:
    Error creating files.
    Compilation failed...
    I tried dragging the window to see if there was anything hidden behind the elipses. What can I do to fix this problem?

    note sure if I'm much help other than to CONFIRM it is working for me by using the sdk WITHOUT the compiler. Check out adobe's little note: "Note : Flex users will need to download the original AIR SDK without the new compiler."
    I am using FB 4.7 with AIR 3.6 and seems to compile correctly for iOS.
    Maybe try reinstalling flash builder?
    I honestly don't know if the JRE has anything to do with it... I'm using 1.7 ....to see what JRE you're using, open the Java Control Panel (I right click my java orange icon and hit properties), select the Java tab, then hit "View..."

  • Compile build.xml with Ant for web service with annotations

    Hi Friends,
    I have a web service with annotations, using javax.annotation.PostConstruct, and javax.annotation.PreDestroy.
    I have a build.xml to create a EAR for this web service.
    When I run the ant task, the build complete successfully but the .war file cannot be deployed on the WLS server. Taking a closer look, I see that the required files such as, webservices.xml, weblogic.xml, weblogic-webservices.xml, Provision.wsdl files are not generated.
    Following is the build.xml file:
    <?xml version="1.0" encoding="windows-1252" ?>
    <project default="jwsc">
    <property file="build.properties"/>
    <property name="weblogic.jar.classpath"
    value="C:/bea_jDev/wlserver_10.3/server/lib"/>
    <property name="oimclient.jar.classpath"
              value="C:/_data/Project_Dc/OIM_jars" />
         <property name="com.jar.classpath" value="C:/JDeveloper/mywork/Service_Test/lib" />
    <taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask">
    <classpath>
    <path id="weblogic.classpath">
    <pathelement path="WEBLOGIC_HOME"/>
    <fileset dir="${weblogic.jar.classpath}">
    <include name="**/*.jar"/>
    </fileset>
    </path>
    </classpath>
    </taskdef>
    <target name="all" depends="clean,build-service,deploy"></target>
    <target name="build-service">
         <jwsc srcdir="${src.home}" destdir="ear_directory" >
    <classpath>
    <path id="oim.classpath">
    <pathelement path="OIM_HOME"/>
    <fileset dir="${oimclient.jar.classpath}">
    <include name="**/*.jar"/>
    </fileset>
    <fileset dir="${com.jar.classpath}">
    <include name="**/*.jar"/>
    </fileset>
    </path>
    </classpath>
    <jws file="${jws.home}" type="JAXWS" />
    </jwsc>
    </target>
    <target name="deploy">
    <!--add wldeploy task here -->
    </target>
    <target name="clean">
    <delete dir="output" />
    </target>
    </project>
    Can you please point out what else is to be done and where exactly am I going wrong in writing the build.xml file.
    Let me know if some else information is required.

    This is what I get when I run the ant task:
    Buildfile: C:\JDeveloper\mywork\ProvisioningService_Test2\Provision\resource\build.xml
    build-service:
    [jwsc] JWS: processing module /com/fox/provision/webservice/endpoint/impl/ProvisionEndPointImpl
    [jwsc] Parsing source files
    [jwsc] Parsing source files
    [jwsc] 1 JWS files being processed for module /com/.../provision/webservice/endpoint/impl/ProvisionEndPointImpl
    [jwsc] [JAM] Warning: failed to resolve class org.apache.xmlbeans.XmlObject
    [jwsc] [JAM] Warning: failed to resolve class com.bea.xml.XmlObject
    [jwsc] [JAM] Warning: failed to resolve class javax.xml.rpc.holders.Holder
    [jwsc] JWS: C:\..\...\..\...\code\ProvisioningService\src\com\...\provision\webservice\endpoint\impl\..EndPointImpl.java Validated.
    [jwsc] Processing 1 JAX-WS web services...
    [jwsc] warning: Specified AnnotationProcessorFactory, 'com.sun.istack.ws.AnnotationProcessorFactoryImpl', not found on search path.
    warning: No annotation processors found but annotations present.
    2 warnings
    [jwsc] Compiling 2 source files to C:\DOCUME~1\....\LOCALS~1\Temp\_lsgijm
    [jwsc] Building jar: C:\..\...\..\...\code\ProvisioningService\src\com\...\provision\webservice\deploy\ear_directory\com\fox\provision\webservice\endpoint\impl\...EndPointImpl.war
    [jwsc] Created JWS deployment outputFile: C:\..\...\..\...\code\ProvisioningService\src\com\...\provision\webservice\deploy\ear_directory\....\...\provision\webservice\endpoint\impl\..EndPointImpl.war
    [jwsc] [EarFile] Application File : C:\..\...\..\...\code\ProvisioningService\src\com\.....\provision\webservice\deploy\ear_directory\META-INF\application.xml
    [AntUtil.deleteDir] Deleting directory C:\DOCUME~1\....\LOCALS~1\Temp\_lsgijm
    BUILD SUCCESSFUL
    Total time: 7 seconds
    Due to some limitations, I edited the path in the build.xml files.
    Please let me know what can be done. Thanks.
    Edited by: user9112073 on Nov 22, 2011 9:52 PM

  • Compiling custom controls with ant

    Need help figuring out which ant task I need to compile custom controls (.jcs files).
    I’ve read several posts about using wlwBuild and workshop.core.Compile but these
    tools don’t satisfy my needs when it comes to automating and integrating anthill,
    cvs, junit… I’m also not so keen on the idea of keeping a .work file synced between
    all developer’s IDEs and the staging/production build machines. I’d really like
    to have a nice clean ide independent ant script build my project. It seems BEA
    somewhat anticipated this when they created genxmlbean to compile XMLBeans and
    JwsCompile for web services, but I have not found a similar ant task that I can
    use to compile projects with custom controls (.jcs files) created in workshop.
    Alternatively if there’s a way in workshop to compile and package an application
    to a production worthy ear that does not include all the extra .workshop ejbs
    used for debugging, that would get me by for now. Any advice would be appreciated.

    Thanks for your advice. Unfortunately, I've been down that path and the generated
    build script uses wlwBuild and the .work file to create the ear, which I'm trying
    to avoid.
    "David Karr" <[email protected]> wrote:
    >
    It may help to know that you can generate an Ant build script from Workshop
    (for
    either a project or application), which when executed from the command
    line, will
    do everything required to build the project or application. You can even
    tell
    Workshop to always use the build script when building the project. You
    can't do
    this for the application, however. You have to go into the project/application
    properties to find this.
    "Ed Barnes" <[email protected]> wrote:
    Need help figuring out which ant task I need to compile custom controls
    (.jcs files).
    I’ve read several posts about using wlwBuild and workshop.core.Compile
    but these
    tools don’t satisfy my needs when it comes to automating and integrating
    anthill,
    cvs, junit… I’m also not so keen on the idea of keeping a .work file
    synced between
    all developer’s IDEs and the staging/production build machines. I’d
    really like
    to have a nice clean ide independent ant script build my project. It
    seems BEA
    somewhat anticipated this when they created genxmlbean to compile XMLBeans
    and
    JwsCompile for web services, but I have not found a similar ant task
    that I can
    use to compile projects with custom controls (.jcs files) created in
    workshop.
    Alternatively if there’s a way in workshop to compile and package an
    application
    to a production worthy ear that does not include all the extra .workshop
    ejbs
    used for debugging, that would get me by for now. Any advice wouldbe
    appreciated.

  • How to get rid of Registration Wizard screen when compiling VB6 app?

    I have inherited a VB6 application that uses CR 10.  I have a fresh Win XP w/SP2 installation, I have a fresh Visual Studio 6 w/ SP5 installation.  And I have a brand new copy, supplied by SAP of CR 10.  When I compile the VB6 app I get multiple instances of the CR Registration Wizard with my serial number  already filled in and grayed out.  But I can't get rid of these registration nags.  I've found no solution in the knowledge base.  Any help is appreciated.

    Go to the Download page and install all of the available patches.
    Then check the Life Cycle page, CR 10 has been out of support for 4 or 5 years now. If you fully supported product then purchase CR 2008 or wait a little for CR 2010/2011.
    Thank you
    Don

  • Exception in javascript library when testing Mail app with IE9/ Safari

    Hi,
    I have almost finished my mail app, but a strange issue that only appears with IE9 prevents me from successfully completing the verification process and therefore I can not publish my app.
    The issue is very similar to this post, which could unfortunately not have been answered so far:
    'OSF is undefined' script error in o15apptofilemappingtable.js
    file when Mail App launched
    I have tested the app successfully with the following browsers: Chrome (40.0.2214.111 m), Firefox (35.0.1), IE 11 and IE 10.
    In IE9 I first get:
    App
    Error Something
    went wrong and we couldn't start this app. Please try again later or contact your system administrator.
    When
    I then click "retry" I get:
    App
    Error This
    app may not load properly, but you can still try to start it.
    After
    I click start the app works. The debug console of IE indicates that there is a problem in the o15apptofilemappingtable.js file:
    SCRIPT438: Object doesn't support property or method 'GetContext' o15apptofilemappingtable.js, line 11 character 110934
    The problem should be the call to: "window.external.GetContext()" in the file mentioned above.
    Important to mention is, that when I build and deploy the sample mail project that ships with Visual Studio it just works fine (this is a difference to the other thread from above). There must be something special with my code but even after days of research
    I can absolutely not figure out what it is. In contrast to the sample mail app, my project is an ASP.NET MVC application by the way (if that is important).
    To isolate the problem I tried several things:
    * I have removed all other javascript libraries to make sure that there are no conflicts between them.
    * I removed all javascript code except the Office.initialize= ...
    code to be sure that there isn't a problem with my custom javascript code. 
    But whatever I tried it doesn't help and basically I am fishing in troubled waters as I do not have an idea what the real problem is and why it is only happening on IE9.
    Best regards
    Stefan

    Hi,
    in the meantime I noticed that I also get this problem with Safari.
    I started to debug the office api and could isolate the problem further. 
    Please forward the following information to the responsible microsoft engineer as it contains valuable information to fix the problem.
    The Exception I get happens becaus of a call to window.external.GetContext() in in the o15apptofilemappingtable.js.  The calls happens because in the function OSF.InitializationHelper.prototype.getAppContext, the value of this._hostInfo.isRichClient
    is true. Looks like in IE9 and Safari the api thinks it is running in the desktop version of outlook (but of course it is not and therefore the call to window.external fails -> I guess only available/set in desktop environment).
    The api thinks of running as rich client becaus the XdmInfoValue does not exist in o15apptofilemappingtable.debug.js line 155 (it is undefined). I am not a javascript specialist and don't know what xdm stands for (cross domain? X-Document?) but however:
    the xdm part which should be passed in the window.location as a hash value is not set in IE9/ Safari.
    At this position I lose the scent and don't know where the xdm part is passed/added to the url. Perhaps in the osfruntime.js? Unfortunately I couldn't find a debug version of this file.
    Please do not hesitate to contact me if you have further questions
    Regards
    Stefan

  • Flash CS6 crashes when compiling iOS app

    Hi there,
    I'm stumped. I built an app in Flash CS6. The app has 70 swfs in its asset folder. When I test on the desktop, all is good. Unfortunately, Flash crashes when I try to publish via Ad hoc deployment with AIR 3.2 (also 3.4). The weird thing I noticed was the app publishes fine if I only have 45 swfs in the folder. As soon as I go to 46 swfs...crash. I tested to see if it mattered which 46, but the results were the same...crash. None of the swfs have code – just images and some movieclips. I even tried to increase my disk space...still crashed. Any help would be greatly appreciated.
    If it will help, here is my crash report:
    Process:         Adobe Flash CS6 [1000]
    Path:            /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6
    Identifier:      com.adobe.flash
    Version:         12.0.2.529 (12.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [221]
    Date/Time:       2013-05-23 15:18:48.658 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          1837378 sec
    Crashes Since Last Report:           29
    Per-App Interval Since Last Report:  723103 sec
    Per-App Crashes Since Last Report:   29
    Anonymous UUID:                      7C99DDC5-2FF1-4A09-9890-4FE5F0A52A52
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  26
    Application Specific Information:
    __abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   com.apple.CoreFoundation                0x983162df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x983153c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x983151f1 CFRunLoopRunInMode + 97
    5   com.apple.AppKit                        0x95ae1b21 -[NSMoveHelper _doAnimation] + 1008
    6   com.apple.AppKit                        0x95adf3a2 -[NSMoveHelper(NSSheets) _moveParent:andOpenSheet:] + 1666
    7   com.apple.AppKit                        0x95adecf3 -[NSWindow(NSSheets) _orderFrontRelativeToWindow:] + 206
    8   com.apple.AppKit                        0x958fe6ea -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1320
    9   com.apple.AppKit                        0x95ad9ccb -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 773
    10  com.apple.AppKit                        0x95ad969e -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextIn fo:] + 826
    11  com.adobe.flash.cs6.air                 0x19703793 -[SettingsControllerMustard startPublishProgressBar] + 104
    12  com.adobe.flash.cs6.air                 0x197054d7 -[SettingsControllerMustard publishAirFile:] + 1450
    13  com.apple.AppKit                        0x95945a26 -[NSApplication sendAction:to:from:] + 112
    14  com.apple.AppKit                        0x95a25255 -[NSControl sendAction:to:] + 108
    15  com.apple.AppKit                        0x95a20d02 -[NSCell _sendActionFrom:] + 169
    16  com.apple.AppKit                        0x95a1fff9 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1808
    17  com.apple.AppKit                        0x95a756ed -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 524
    18  com.apple.AppKit                        0x95a1ea4f -[NSControl mouseDown:] + 812
    19  com.apple.AppKit                        0x95a1ca58 -[NSWindow sendEvent:] + 5549
    20  com.apple.AppKit                        0x95f91ad2 carbonAppWindowMouseHandler + 261
    21  com.apple.AppKit                        0x95f92ea8 carbonAppWindowHandler + 131
    22  com.apple.HIToolbox                     0x98af6c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    23  com.apple.HIToolbox                     0x98af5ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    24  com.apple.HIToolbox                     0x98b187f3 SendEventToEventTarget + 52
    25  com.apple.HIToolbox                     0x98b2a34f ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1257
    26  com.apple.HIToolbox                     0x98af7080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    27  com.apple.HIToolbox                     0x98af5ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    28  com.apple.HIToolbox                     0x98b187f3 SendEventToEventTarget + 52
    29  com.apple.HIToolbox                     0x98ca1c17 ToolboxEventDispatcher + 86
    30  com.apple.HIToolbox                     0x98ca1c52 HLTBEventDispatcher + 17
    31  com.apple.HIToolbox                     0x98ca2190 _RunAppModalLoop + 158
    32  com.apple.HIToolbox                     0x98ca25eb RunAppModalLoopForWindow + 194
    33  com.apple.AppKit                        0x95b802ba -[NSApplication _realDoModalLoop:peek:] + 961
    34  com.apple.AppKit                        0x95b7f945 -[NSApplication runModalForWindow:] + 273
    35  com.adobe.flash.cs6.air                 0x197117f8 -[AppControllerMustard showSettingsPanel:] + 199
    36  com.adobe.flash.cs6.air                 0x196f92e3 OpenSettingDialog + 604
    37  com.adobe.flash                         0x01099455 LStream::operator>>(unsigned long&) + 208937
    38  com.adobe.flash                         0x010931e9 LStream::operator>>(unsigned long&) + 183741
    39  com.adobe.flash                         0x01098dac LStream::operator>>(unsigned long&) + 207232
    40  com.adobe.flash                         0x01067af8 LStream::operator>>(unsigned long&) + 5836
    41  com.adobe.flash                         0x01067b73 LStream::operator>>(unsigned long&) + 5959
    42  com.adobe.flash                         0x006dfeb4 JSInterp::EvaluateScript(JSContext*, JSObject*, unsigned short const*, unsigned int, unsigned short const*, unsigned int, long*) + 293
    43  com.adobe.flash                         0x006dc1c0 std::vector<CSwfPanel*, std::allocator<CSwfPanel*> >::push_back(CSwfPanel* const&) + 10170
    44  com.adobe.flash                         0x006df65e std::vector<CSwfPanel*, std::allocator<CSwfPanel*> >::push_back(CSwfPanel* const&) + 23640
    45  com.adobe.flash                         0x00e4e374 FArray<CExportProfile*, FArrayLessThanFunction<CExportProfile*> >::Insert(int, CExportProfile*) + 2982
    46  com.adobe.flash                         0x0031f572 std::vector<CLibraryItemRef*, std::allocator<CLibraryItemRef*> >::vector(std::vector<CLibraryItemRef*, std::allocator<CLibraryItemRef*> > const&) + 21664
    47  com.adobe.flash                         0x009c0eff boost::function1<void, dvaui::controls::UI_ControlChangedMessage*>::operator()(dvaui::controls::UI_ControlChange dMessage*) const + 77
    48  com.adobe.flash                         0x00bc38a9 boost::function1<void, dvaui::ui::MessageT<dvaui::ui::UI_Node>*>::operator()(dvaui::ui::MessageT<dvaui::ui::UI_N ode>*) const + 77
    49  com.adobe.flash                         0x00bc38dd void dvaui::ui::SendMessagesT<dvacore::utility::SharedFunctions<boost::shared_ptr<boost::funct ion<void ()(dvaui::ui::MessageT<dvaui::ui::UI_Node>*)> > >, dvaui::ui::MessageT<dvaui::ui::UI_Node> >(dvacore::utility::SharedFunctions<boost::shared_ptr<boost::function<void ()(dvaui::ui::MessageT<dvaui::ui::UI_Node>*)> > > const&, dvaui::ui::MessageT<dvaui::ui::UI_Node>*) + 44
    50  com.adobe.dvaui.framework               0x09bac783 dvaui::controls::UI_Button::SendButtonChangedMessage(dvacore::utility::Flags<unsigned char>) + 83
    51  com.adobe.dvaui.framework               0x09bac838 dvaui::controls::UI_Button::PerformAction(bool, dvacore::utility::Flags<unsigned char>, bool) + 136
    52  com.adobe.dvaui.framework               0x09bb0c01 dvaui::controls::ButtonInputCapture::End() + 97
    53  com.adobe.dvaui.framework               0x09dea7dc dvaui::ui::InputCapture::InvokeEnd(bool) + 172
    54  com.adobe.dvaui.framework               0x09decf1e dvaui::ui::UI_NodeManager::EndInputCapture(bool) + 94
    55  com.adobe.dvaui.framework               0x09bb09b6 dvaui::controls::ButtonInputCapture::DoMouseEvent(dvaui::ui::MouseEvent const&) + 294
    56  com.adobe.dvaui.framework               0x09def8b1 dvaui::ui::UI_Node::UI_DispatchCapturedMouseEvent(dvaui::ui::MouseEvent const&) + 465
    57  com.adobe.dvaui.framework               0x09df1d35 dvaui::ui::UI_Node::UI_DispatchMouseEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&, bool) + 101
    58  com.adobe.dvaui.framework               0x09df1e3a dvaui::ui::UI_Node::UI_DispatchMouseEvent(dvaui::ui::MouseEvent const&, bool) + 74
    59  com.adobe.dvaui.framework               0x09e74db5 dvaui::ui::OS_Window::UI_DispatchMouseEventFromOS(dvaui::ui::OS_Event*) + 2021
    60  com.adobe.dvaui.framework               0x09e70caf dvaui::ui::OS_Window::UI_DispatchEvent(dvaui::ui::OS_Event*) + 943
    61  com.adobe.dvaui.framework               0x09e6bc61 dvaui::ui::OS_Window::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 33
    62  com.adobe.dvaui.framework               0x09e6ec00 dvaui::ui::OS_Window::CallCarbonEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 112
    63  com.adobe.dvaui.framework               0x09e75ce1 boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<int, int (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*), boost::_bi::list3<boost::_bi::value<OpaqueEventHandlerCallRef*>, boost::_bi::value<OpaqueEventRef*>, boost::_bi::value<void*> > >, int>::invoke(boost::detail::function::function_buffer&) + 33
    64  com.adobe.dvacore.framework             0x0a3eacae dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::functio n0<int>) + 126
    65  com.adobe.dvaui.framework               0x09e6d0f7 dvaui::ui::OS_Window::CarbonEventHandlerProc(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 119
    66  com.apple.HIToolbox                     0x98af6c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    67  com.apple.HIToolbox                     0x98af5ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    68  com.apple.HIToolbox                     0x98b187f3 SendEventToEventTarget + 52
    69  com.apple.HIToolbox                     0x98b2a34f ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1257
    70  com.apple.HIToolbox                     0x98af7080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    71  com.apple.HIToolbox                     0x98af5ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    72  com.apple.HIToolbox                     0x98b187f3 SendEventToEventTarget + 52
    73  com.apple.HIToolbox                     0x98ca1c17 ToolboxEventDispatcher + 86
    74  com.apple.HIToolbox                     0x98ca1d4f RunApplicationEventLoop + 243
    75  com.adobe.flash                         0x00fcd77b CArray<MACFTYPES*, MACFTYPES*>::SetSize(int, int) + 5271
    76  com.adobe.flash                         0x00fa619d CTimerImpl::~CTimerImpl() + 1293
    77  com.adobe.flash                         0x00fa6380 CTimerImpl::~CTimerImpl() + 1776
    78  com.adobe.flash                         0x0020f46d std::vector<Symmetry*, std::allocator<Symmetry*> >::vector(std::allocator<Symmetry*> const&) + 6295
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x90cee382 kevent + 10
    1   libSystem.B.dylib                       0x90ceea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x90cedf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x90cedcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x90ced781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x90ced5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x90cf5aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x90cf575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x90cf73f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9021d21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x90208b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90204533 MPWaitOnQueue + 250
    6   com.adobe.ACE                           0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                           0x069b0d99 0x6972000 + 257433
    8   ...ple.CoreServices.CarbonCore          0x901e854a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    10  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x90cf5aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x90cf575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x90cf73f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AFlame                        0x0bb91439 Flame_Terminate + 1281926
    4   com.adobe.AFlame                        0x0bbdb950 Flame_Terminate + 1586333
    5   com.adobe.AFlame                        0x0bb8fa35 Flame_Terminate + 1275266
    6   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    7   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   com.apple.CoreFoundation                0x983162df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x983153c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x983151f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x918a1224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x918684c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x91868474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    9   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x90d050d6 recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib                       0x90d24eab recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x195fb733 Invoke + 47867
    3   ServiceManager-Launcher.dylib           0x195fa846 Invoke + 44046
    4   ServiceManager-Launcher.dylib           0x195f9988 Invoke + 40272
    5   ServiceManager-Launcher.dylib           0x195f9a0f Invoke + 40407
    6   ServiceManager-Launcher.dylib           0x195f4baf Invoke + 20343
    7   ServiceManager-Launcher.dylib           0x195f4ea7 Invoke + 21103
    8   ServiceManager-Launcher.dylib           0x195f5685 Invoke + 23117
    9   ServiceManager-Launcher.dylib           0x195f58f9 Invoke + 23745
    10  ServiceManager-Launcher.dylib           0x195f82a0 Invoke + 34408
    11  ServiceManager-Launcher.dylib           0x195f83fd Invoke + 34757
    12  ServiceManager-Launcher.dylib           0x195f8c91 Invoke + 36953
    13  ServiceManager-Launcher.dylib           0x195f8db2 Invoke + 37242
    14  ServiceManager-Launcher.dylib           0x195eb656 Login + 461
    15  ServiceManager-Launcher.dylib           0x195ef09a Login + 15377
    16  ServiceManager-Launcher.dylib           0x195f9165 Invoke + 38189
    17  ServiceManager-Launcher.dylib           0x195fb2eb Invoke + 46771
    18  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    19  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 6:  Java: Exception Handler Thread
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libSystem.B.dylib                       0x90d33c78 mach_msg_server + 520
    3   libjvm.dylib                            0x23c0fcd0 jio_snprintf + 45191
    4   libjvm.dylib                            0x23c0fb57 jio_snprintf + 44814
    5   libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    6   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    7   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 7:  Java: VM Thread
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ee0a jio_snprintf + 41409
    3   libjvm.dylib                            0x23c2c9ca jio_vsnprintf + 27386
    4   libjvm.dylib                            0x23c0eb58 jio_snprintf + 40719
    5   libjvm.dylib                            0x23c0e681 jio_snprintf + 39480
    6   libjvm.dylib                            0x23c0e50b jio_snprintf + 39106
    7   libjvm.dylib                            0x23ca6eb6 JVM_Lseek + 200687
    8   libjvm.dylib                            0x23ca6b5f JVM_Lseek + 199832
    9   libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    10  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    11  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 8:  Java: Reference Handler
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23cb5a90 JVM_MonitorWait + 3799
    5   libjvm.dylib                            0x23cb4f92 JVM_MonitorWait + 985
    6   libjvm.dylib                            0x23cb4c84 JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                     0x1b28ee75 JVM_MonitorWait + 69
    8   ???                                     0x5d00b9d9 0 + 1560328665
    9   ???                                     0x5d003e31 0 + 1560297009
    10  ???                                     0x5d003e31 0 + 1560297009
    11  ???                                     0x5d001374 0 + 1560286068
    12  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    13  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    14  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    15  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    16  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    17  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    18  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    19  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    20  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    21  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 9:  Java: Finalizer
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23cb5a90 JVM_MonitorWait + 3799
    5   libjvm.dylib                            0x23cb4f92 JVM_MonitorWait + 985
    6   libjvm.dylib                            0x23cb4c84 JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                     0x1b28ee75 JVM_MonitorWait + 69
    8   ???                                     0x5d00b9d9 0 + 1560328665
    9   ???                                     0x5d2a0f40 0 + 1563037504
    10  ???                                     0x5d001374 0 + 1560286068
    11  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    12  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    13  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    14  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    15  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    16  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    17  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    18  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    19  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    20  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 10:  Java: Signal Dispatcher
    0   libSystem.B.dylib                       0x90cc7b36 semaphore_wait_trap + 10
    1   libjvm.dylib                            0x23cc6b16 JVM_IsPrimitiveClass + 5546
    2   libjvm.dylib                            0x23cc64f4 JVM_IsPrimitiveClass + 3976
    3   libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    4   libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    5   libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    6   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    7   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 11:  Java: C1 CompilerThread0
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23c0eb3c jio_snprintf + 40691
    5   libjvm.dylib                            0x23c0e681 jio_snprintf + 39480
    6   libjvm.dylib                            0x23c0e44e jio_snprintf + 38917
    7   libjvm.dylib                            0x23cce3ca JVM_Write + 426
    8   libjvm.dylib                            0x23cc7cec JVM_IsPrimitiveClass + 10112
    9   libjvm.dylib                            0x23cc7a96 JVM_IsPrimitiveClass + 9514
    10  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    11  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    12  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    13  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    14  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 12:  Java: Low Memory Detector
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23c0eb3c jio_snprintf + 40691
    5   libjvm.dylib                            0x23c0e681 jio_snprintf + 39480
    6   libjvm.dylib                            0x23c0e50b jio_snprintf + 39106
    7   libjvm.dylib                            0x23cc89d4 JVM_IsPrimitiveClass + 13416
    8   libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    9   libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    10  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    11  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    12  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 13:  Java: VM Periodic Task Thread
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ee0a jio_snprintf + 41409
    3   libjvm.dylib                            0x23c2c9ca jio_vsnprintf + 27386
    4   libjvm.dylib                            0x23ccb479 JVM_IsPrimitiveClass + 24333
    5   libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    6   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    7   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 14:  Java: FelixDispatchQueue
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23cb5a90 JVM_MonitorWait + 3799
    5   libjvm.dylib                            0x23cb4f92 JVM_MonitorWait + 985
    6   libjvm.dylib                            0x23cb4c84 JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                     0x1b28ee75 JVM_MonitorWait + 69
    8   ???                                     0x5d00b9d9 0 + 1560328665
    9   ???                                     0x5d003e31 0 + 1560297009
    10  ???                                     0x5d003e31 0 + 1560297009
    11  ???                                     0x5d003e31 0 + 1560297009
    12  ???                                     0x5d003e31 0 + 1560297009
    13  ???                                     0x5d00430d 0 + 1560298253
    14  ???                                     0x5d001374 0 + 1560286068
    15  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    16  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    17  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    18  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    19  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    20  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    21  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    22  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    23  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    24  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 15:  Java: FelixStartLevel
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23cb5a90 JVM_MonitorWait + 3799
    5   libjvm.dylib                            0x23cb4f92 JVM_MonitorWait + 985
    6   libjvm.dylib                            0x23cb4c84 JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                     0x1b28ee75 JVM_MonitorWait + 69
    8   ???                                     0x5d00b9d9 0 + 1560328665
    9   ???                                     0x5d003e31 0 + 1560297009
    10  ???                                     0x5d003e31 0 + 1560297009
    11  ???                                     0x5d00430d 0 + 1560298253
    12  ???                                     0x5d001374 0 + 1560286068
    13  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    14  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    15  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    16  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    17  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    18  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    19  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    20  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    21  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    22  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 16:  Java: FelixPackageAdmin
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23c0ec76 jio_snprintf + 41005
    4   libjvm.dylib                            0x23cb5a90 JVM_MonitorWait + 3799
    5   libjvm.dylib                            0x23cb4f92 JVM_MonitorWait + 985
    6   libjvm.dylib                            0x23cb4c84 JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                     0x1b28ee75 JVM_MonitorWait + 69
    8   ???                                     0x5d00b9d9 0 + 1560328665
    9   ???                                     0x5d003e31 0 + 1560297009
    10  ???                                     0x5d003e31 0 + 1560297009
    11  ???                                     0x5d00430d 0 + 1560298253
    12  ???                                     0x5d001374 0 + 1560286068
    13  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    14  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    15  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    16  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    17  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    18  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    19  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    20  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    21  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    22  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 17:  Java: Code Model Worker
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23eb256d JVM_RaiseSignal + 393445
    4   libjvm.dylib                            0x23ef2ea2 JVM_RaiseSignal + 657946
    5   ???                                     0x5d00b9d9 0 + 1560328665
    6   ???                                     0x5d003e31 0 + 1560297009
    7   ???                                     0x5d003e31 0 + 1560297009
    8   ???                                     0x5d00430d 0 + 1560298253
    9   ???                                     0x5d004473 0 + 1560298611
    10  ???                                     0x5d003f97 0 + 1560297367
    11  ???                                     0x5d00430d 0 + 1560298253
    12  ???                                     0x5d001374 0 + 1560286068
    13  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    14  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    15  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    16  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    17  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    18  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    19  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    20  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    21  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    22  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 18:  Java: Code Model Worker
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ed3a jio_snprintf + 41201
    3   libjvm.dylib                            0x23eb256d JVM_RaiseSignal + 393445
    4   libjvm.dylib                            0x23ef2ea2 JVM_RaiseSignal + 657946
    5   ???                                     0x5d00b9d9 0 + 1560328665
    6   ???                                     0x5d003e31 0 + 1560297009
    7   ???                                     0x5d003e31 0 + 1560297009
    8   ???                                     0x5d00430d 0 + 1560298253
    9   ???                                     0x5d004473 0 + 1560298611
    10  ???                                     0x5d003f97 0 + 1560297367
    11  ???                                     0x5d00430d 0 + 1560298253
    12  ???                                     0x5d001374 0 + 1560286068
    13  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    14  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    15  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    16  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    17  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    18  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    19  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    20  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    21  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    22  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x90cf5aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x90d219c5 nanosleep$UNIX2003 + 188
    2   com.adobe.flash.flbridge                0x198d493b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.flash.flbridge                0x198d0799 ScObjects::BridgeTalkThread::run() + 185
    4   com.adobe.flash.flbridge                0x198d4ca8 ScObjects::Thread::go(void*) + 168
    5   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    6   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x90cc7b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90cf56f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x90d3e05f pthread_cond_wait + 48
    3   ...ia.Flash Player.authplaylib          0x1a29f11f 0x19e4f000 + 4522271
    4   ...ia.Flash Player.authplaylib          0x19e6925f 0x19e4f000 + 107103
    5   ...ia.Flash Player.authplaylib          0x1a29f20c 0x19e4f000 + 4522508
    6   ...ia.Flash Player.authplaylib          0x1a29f250 0x19e4f000 + 4522576
    7   ...ia.Flash Player.authplaylib          0x1a29f376 0x19e4f000 + 4522870
    8   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    9   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x90cc7b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90cf56f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x90d3e05f pthread_cond_wait + 48
    3   ...ia.Flash Player.authplaylib          0x1a29f11f 0x19e4f000 + 4522271
    4   ...ia.Flash Player.authplaylib          0x19e6925f 0x19e4f000 + 107103
    5   ...ia.Flash Player.authplaylib          0x1a29f20c 0x19e4f000 + 4522508
    6   ...ia.Flash Player.authplaylib          0x1a29f250 0x19e4f000 + 4522576
    7   ...ia.Flash Player.authplaylib          0x1a29f376 0x19e4f000 + 4522870
    8   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    9   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 22:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x90ce6ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x98355c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    3   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 23:  Java: Thread-4
    0   libSystem.B.dylib                       0x90cc7afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90cc8267 mach_msg + 68
    2   libjvm.dylib                            0x23c0ee0a jio_snprintf + 41409
    3   libjvm.dylib                            0x23d42eb1 JVM_MonitorNotify + 916
    4   libjvm.dylib                            0x23d463d1 JVM_Sleep + 254
    5   libjvmlinkage.dylib                     0x1b28fa68 JVM_Sleep + 72
    6   ???                                     0x5d00b9d9 0 + 1560328665
    7   ???                                     0x5d003e31 0 + 1560297009
    8   ???                                     0x5d00430d 0 + 1560298253
    9   ???                                     0x5d001374 0 + 1560286068
    10  libjvm.dylib                            0x23ca81ef JVM_Lseek + 205608
    11  libjvm.dylib                            0x23ca7f63 JVM_Lseek + 204956
    12  libjvm.dylib                            0x23cb4935 JVM_StartThread + 3022
    13  libjvm.dylib                            0x23cb47c5 JVM_StartThread + 2654
    14  libjvm.dylib                            0x23cb4743 JVM_StartThread + 2524
    15  libjvm.dylib                            0x23cb459d JVM_StartThread + 2102
    16  libjvm.dylib                            0x23cb43db JVM_StartThread + 1652
    17  libjvm.dylib                            0x23c0e5e0 jio_snprintf + 39319
    18  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    19  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x90cc7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x90cf56e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x90d245a8 pthread_cond_timedwait_relative_np + 47
    3   ...ia.Flash Player.authplaylib          0x1a29f0e7 0x19e4f000 + 4522215
    4   ...ia.Flash Player.authplaylib          0x1a02f9de 0x19e4f000 + 1968606
    5   ...ia.Flash Player.authplaylib          0x1a29f20c 0x19e4f000 + 4522508
    6   ...ia.Flash Player.authplaylib          0x1a29f250 0x19e4f000 + 4522576
    7   ...ia.Flash Player.authplaylib          0x1a29f376 0x19e4f000 + 4522870
    8   libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    9   libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                       0x90ced412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x90ced9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x90ced5c6 start_wqthread + 30
    Thread 26 Crashed:
    0   libSystem.B.dylib                       0x90d350ee __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x90d34fd2 nanosleep$NOCANCEL$UNIX2003 + 166
    2   libSystem.B.dylib                       0x90daffb2 usleep$NOCANCEL$UNIX2003 + 61
    3   libSystem.B.dylib                       0x90dd1685 __abort + 136
    4   libSystem.B.dylib                       0x90dc5d22 __chk_fail + 118
    5   libSystem.B.dylib                       0x90d24fe0 __strcat_chk + 41
    6   com.adobe.flash.cs6.air                 0x197146a8 CreateAIRFile + 9009
    7   com.adobe.flash.cs6.air                 0x19704eee -[SettingsControllerMustard generateFileThd] + 88
    8   com.apple.Foundation                    0x918684c4 -[NSThread main] + 45
    9   com.apple.Foundation                    0x91868474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90cf5259 _pthread_start + 345
    11  libSystem.B.dylib                       0x90cf50de thread_start + 34
    Thread 26 crashed with X86 Thread State (32-bit):
      eax: 0x0000003c  ebx: 0x90d34f39  ecx: 0xb04b357c  edx: 0x90d350ee
      edi: 0x20929b50  esi: 0xb04b35d8  ebp: 0xb04b35b8  esp: 0xb04b357c
       ss: 0x0000001f  efl: 0x00000247  eip: 0x90d350ee   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x1dab1000
    Binary Images:
        0x1000 -  0x1b82fff +com.adobe.flash 12.0.2.529 (12.0.2) <05566898-067F-CC57-6272-EF851BBF7BDD> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6
    0x272b000 -  0x28bffff +com.adobe.PlugPlug 3.0.0.383 (3.0.0.383) <2205B6E1-7C9E-1892-EC68-C1B326C727A8> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x2967000 -  0x2a4ffe3 +com.adobe.AXEDOMCore AdobeAXEDOMCore 3.7.101.18636 (3.7.101.18636) <2540764B-C2F2-61D7-EFBA-6663171FD19A> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x2ae0000 -  0x2b7efe3 +libicucnv.40.0.dylib 40.0.0 (compatibility 40.0.0) <D11DC46F-D58E-B17C-9356-46F593D5A7CF> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
    0x2ba0000 -  0x2cd5fe7 +libicui18n.40.0.dylib 40.0.0 (compatibility 40.0.0) <8BE3FE71-0CE6-2B93-B5F2-B4F0DD274B91> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40. 0.dylib
    0x2d49000 -  0x2e3afef +libicuuc.40.0.dylib 40.0.0 (compatibility 40.0.0) <4CF7066A-6E82-FF80-93E6-6849149FBB98> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x2e77000 -  0x3bbcff7 +libicudata.40.0.dylib 40.0.0 (compatibility 40.0.0) <015E6351-4F42-00C1-2096-BEE385B275B1> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x3bcf000 -  0x3bdaff7 +libChar16.dylib ??? (???) <5E278E11-8234-CB11-AAC9-090FBD037DB7> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/libChar16.dylib
    0x3be3000 -  0x3c05fff +libCoreTypes.dylib ??? (???) <5799BD8C-B334-518F-3F6F-EAA503B43831> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/libCoreTypes.dylib
    0x3c1d000 -  0x3e4bfff  com.apple.carbonframeworktemplate 1.0 (1.0) <9F3FE9F2-8834-4654-C0D0-F4F356E6A906> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/frameworks/Xerces.framework/Versions/A/Xerces
    0x4102000 -  0x4106ff7  com.apple.JavaVM 13.9.5 (13.9.5) <ABFD54D4-8E4E-BBD1-DE88-DE62E56FD383> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x410e000 -  0x5778fff +com.adobe.AILib AILib version 16.0.0 (16.0.0.646) <317A871E-E0A5-8C5E-B60F-7448ADEBEDBD> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Versions/A/AILib
    0x67f1000 -  0x684cfff +com.adobe.aiport aiport version 16.0.0 (16.0.0.646) <59612576-B2F2-BF25-B09D-6120A3B1462C> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/aiport.framework/Versions/A/aiport
    0x688c000 -  0x68ecfff +com.adobe.filterport filterport version 16.0.0 (16.0.0.646) <AF193FFA-F555-2379-81B3-7DA07698E466> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/filterport.framework/Versions/A/filterport
    0x6937000 -  0x6937ffb +com.adobe.SPBasic SPBasic version 16.0.0 (16.0.0.646) <936C3F3E-8DDD-50EC-D247-C1F242633914> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x693c000 -  0x6958ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x6972000 -  0x6aeeff3 +com.adobe.ACE AdobeACE 2.19.18.19822 (2.19.18.19822) <2EC89B0E-6B51-4F7F-314A-FB6E18BFC36D> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x6afd000 -  0x7098fef +com.adobe.AGM AdobeAGM 4.26.20.19822 (4.26.20.19822) <F394945E-943B-B99F-9B45-07E96C293C05> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x7108000 -  0x7142fef +com.adobe.ARE AdobeARE 1.5.02.19822 (1.5.02.19822) <2A3CBF43-F63E-B5B6-19EA-A2C392CA92F4> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x7148000 -  0x7163fff +com.adobe.BIB AdobeBIB 1.2.02.19822 (1.2.02.19822) <CD35337B-CA58-50D9-5AAE-74E720CCE415> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x7169000 -  0x718ffff +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <606DA5E0-CCB3-90B2-3971-A48349DA046A> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x7195000 -  0x74bcffb +com.adobe.CoolType AdobeCoolType 5.10.31.19822 (5.10.31.19822) <A5344CC0-BD71-A071-A001-EDB3A28B9A8D> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x74f4000 -  0x78effe7 +com.adobe.MPS AdobeMPS 5.8.0.19673 (5.8.0.19673) <D65ABA15-80D2-3F1C-2500-EEF873019149> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x794c000 -  0x7a50fef +com.adobe.PDFPort AdobePDFPort 2.1.0.19734 (2.1.0.19734) <71232DFD-06FB-837B-8246-BD20F862B5E3> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x7a69000 -  0x8261ffb +com.adobe.PDFL PROD_MAJOR.PROD_MINOR.PROD_STEP (10.0.1.18562) <F24575DF-1B4D-B13E-1525-3C7F5CB88B3E> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x82ec000 -  0x8314feb +com.adobe.AXE8SharedExpat AdobeAXE8SharedExpat 3.7.101.18636 (3.7.101.18636) <C38ACBCE-04AA-DF40-FF79-29377F25CDAF> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x8333000 -  0x835bff3 +com.adobe.AXE16SharedExpat AdobeAXE16SharedExpat 3.7.101.18636 (3.7.101.18636) <AD333DEF-C5AC-1F75-0486-DF86F89433CD> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeAXE16SharedExpat.framework/Versions/A/AdobeAXE16SharedEx pat
    0x837a000 -  0x83d6fef +com.adobe.AdobeXMPCore Adobe XMP Core 5.3 -c 11 (66.145661) <123A0829-A85B-6E67-0E48-4F37B08E4C03> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x83df000 -  0x8457fe3 +com.adobe.FileInfo.framework Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 (66.145433) <EF13921E-1CC6-2891-0EEC-D8D8C68D5D87> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x8466000 -  0x8645ffb +com.adobe.owl AdobeOwl version 4.0.93 (4.0.93) <D102FCD2-496D-5322-AEC0-7A5091CAA2CA> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x8672000 -  0x971eff3 +com.adobe.psl AdobePSL 13.0.0.19655 (13.0.0.19655) <47A9AAEC-43CD-17C9-6E58-6312315FC15D> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x9897000 -  0x9ac1ffb +com.adobe.linguistic.LinguisticManager 6.0.0 (17018) <DE928A0E-AE8F-4FB7-6B6C-C52E4FD366A1> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x9b33000 -  0x9b36ffb +com.adobe.AdobeCrashReporter 6.0 (6.0.20120201) <6CE1936E-6AC7-6900-769B-876CBB68B5BC> /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x9b3e000 -  0x9f71ffb +com.adobe.dvaui.framework 5.0.0 (5.0.0.0) <EAD7D965-79BB-EA89-AB42-692578840BA8> /Applications/Adobe Flash CS6/

    It's been my experience that Flash doesn't much like a few things in particular. One is large vector files with a lot of points; in other words stuff brought in from Illustrator or trace bitmapped from within the program so you might try reducing the amount of points in your art if you'r working with imported art. Flash seems to work best when all art has been created within the program. If you've converted it to vector via the Trace Bitmap or Illustrator's Live Trace it doesn't like that either. It also tends to bog down with high resolution bitmaps, especially with many layers (which greatly add to the file size) so you might try to flatten some of the art to make it more managable. In general, maybe see if you can reduce whatever file sizes you can in your project before you import them. I typically have some pretty big libraries and Flash doesn't crash so much for me so changing your workflow a bit might be useful. IF it's code that's crashing the render, that I can't help you with, but there's some pretty knowledgable people on this board who might be able to help in that regard.

  • Unresolved std lib methods when packaging mobile app with ANE ios7, mavericks, air sdk 3.9

    After converting from ios6.1 / mountain lion to ios 7 / mavericks, my Flash builder mobile actionscript application gets the following unresolved std lib methods when it tries to package the appluication for my ios7 device.  These symbols come from code written from within my native extension (ane) that was created and added in the properties configuration.
    This packaged and ran fine on ios6.1 / mountain lion...is there some way that I need to link in the standard library in this scenario (that I didn't have to do before)?
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6setbufEPci", referenced from:
          __ZTVNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE E in libcom.dddnativespinterface.a(yyy.o)
      "__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9showmanycEv", referenced from:
          __ZTVNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE E in libcom.ddd.nativespinterface.a(yyy.o)
          __ZTVNSt3__113basic_filebufIcNS_11char_traitsIcEEEE in libcom.ddd.nativespinterface.a(yyy.o)
      "__ZNSt3__112__next_primeEm", referenced from:
          __ZNSt3__112__hash_tableINS_4pairINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP14TrafficManagerEENS_22__u nordered_map_hasherIS7_S9_NS_4hashIS7_EELb1EEENS_21__unordered_map_equ alIS7_S9_NS_8equal_toIS7_EELb1EEENS5_ISA_EEE6rehashEm in libcom.ddd.nativespinterface.a(zzz.o)
      "__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev", referenced from:
          __ZTCNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIc EEEE8_NS_13basic_ostreamIcS2_EE in libcom.ddd.nativespinterface.a(PremiereSoftphoneAirBridge_v7.o)
          __ZTCNSt3__114basic_ofstreamIcNS_11char_traitsIcEEEE0_NS_13basic_ostr eamIcS2_EE in libcom.ddd.nativespinterface.a(xxx.o)

    I solved my issue by setting the _JAVA_OPTIONS environment variable. (Note: there are two underscores)
    I added the following line to my .bash_profile:
    export _JAVA_OPTIONS="-Xms1024m -Xmx4096m -XX:MaxPermSize=512m"
    Now everytime a Java program is launched from the command line, I see the following message:
    Picked up _JAVA_OPTIONS: -Xms1024m -Xmx4096m -XX:MaxPermSize=512m
    And my application packaging runs just fine now.
    I still have an issue though: this trick solved the problem for packaging the app from the command line, but the _JAVA_OPTIONS are not picked up when packaging from Flash Builder, so it still crashes there.
    Note that my Adobe Flash Builder 4.6.ini contains the following options:
    -Xms512m
    -Xmx1676m
    -XX:MaxPermSize=512m
    -XX:PermSize=64m
    1676m is the highest number I can put before Flash Builder refuses to launch. I'm not sure if these parameters are actually passed to the VM that runs de dx.jar program, or if it's just for the ActionScript compiler. But anyway my app packaging still crashes in Flash Builder.
    If someone knows a way to force Flash Builder to pickup the _JAVA_OPTIONS set in the command line, let me know :-)
    Thanks
    Alex

Maybe you are looking for

  • Interactive PDF, open file in new window.

    Hello everyone, I was unable to find this on the net or I could be using the wrong typed search. Created a successful interactive document. I attached a portfolio to this interactive document. I have 3 images. Two are hyperlinked to specific urls whi

  • IPhoto Library Missing - can't restore old library to new iPhoto

    I always, always back up on Time Machine - all the time. iPhoto 9.23 was non responsive and I backed up to TM again. I couldn't restore or update iPhoto 9.23 so I uninstalled it, and installed iPhoto 11. Trying to locate my iPhoto library is a nightm

  • Why do I have to use SELECT INTO clause in a Stored Proc ?

    Hi, I'm new to oracle. I've bought Oracle Database 10g SQL and Oracle Database 10 A beginner's Guide, two books from Oracle press but I can't find any answer for that. Why when I'm writing a Stored Procedure with a SELECT statement do I have to use a

  • HT201250 Time Machine recover FileMaker file.

    We have a FileMakerPro 11 Table on our Mini Mac server that has been changed for the worse.  We want to restore the file from a Time Machine From a back up before the mistake occurred and retain the data [it is an invoice file].  We are following the

  • Manual for repairing notebook

    Hello, Can somebody help me with a manual for repairing my notebook? HP Pavillion dv9202ea p/n: RY689EA Kind regards. This question was solved. View Solution.