NetBeans 6.1: Build project but always report Tomcat failed

I recently try to use NetBeans and do a simple app following tutorial. When I build, it warns Tomcat unable to open due to port 8080 has been used by others. I actually have Tomcat running on my computer, I wonder if NetBeans can skip the startup of Tomcat ( as it has been there ) and only the class file is built?
Thanks, Dove

hi,
restart the tomcat and then compile
if still problem persist
then change the port e.g. 8080 to 8081
or something else

Similar Messages

  • IDM Demo always reports connection failed for Solaris target

    I'm setting up the IDM Demo, using the Setup Wizard, using a Solaris 10 container as
    the target system. For this demo, I'm using telnet directly as root, which seems to be
    the only method available. This succeeds when I run telnet by hand from the IDM host
    to the target host. When I test the connection from the wizard, after a long delay, it
    always reports that the test connection failed. However, the console log on the target
    system shows a successful login. The Details button says that it was looking for `_.)#+(:',
    regardless of what I specify as the `Login Prompt'. (I assume this really means the shell
    prompt.) I've tried changing the shell prompt by setting PS1 in /.profile and tried suppressing
    the banner by creating a /.hushlogin file. Still, the test button always reports that the
    connection failed. What's wrong here?

    ah, familiar territory :)
    the string _.)#+(: is something that the adapter uses as a suffix to check whether the previous command executed has changed state or not. The assumption being that _.)#+(: will not be encountered as output of any command on Solaris.
    1. Try connecting as root
    2. Whats your IDM version?
    3. Try this: login as root over putty, and paste whatever strings you get into the adapter configuration page on IM (for say, prompt, etc.)
    4. Tracing the following variables can give you better details regarding where its getting stuck:
    com.waveset.adapter.SolarisResourceAdapter
    com.waveset.adapter.SVIDResourceAdapter
    com.waveset.adapter.ScriptedConnection
    Hope this helps!
    Ankush

  • Outgoing Mail OK But Always 2 Messages Fail To Send.

    I can sync my iPhone OK and the Mail works fine, except for an annoying little problem: when I open up mail it searches for new mail, but at the same time it tries to send the same two emails EVERY TIME!!! It results in the dialog box 'Cannot Send Mail. The connection to the outgoing server "smtp.mac.com" failed.' The outgoing server is fine and I can send and receive emails, but this is getting on my nerves. I have looked in all the mail folders for rogue outgoing emails, and have re-synced the mail account, but to no avail.
    Has anyone else had this problem? Any help greatly appreciated.

    Re-syncing the email account has no affect on this since this transfers the account settings only from your computer to the iPhone which is in one direction only from your computer to the iPhone. This does not transfer or sync messages or anything else.
    If you are accessing your .Mac account as a .Mac type account or IMAP account with the Mail application on your Mac, I suggest deleting the account on the iPhone and re-syncing the account settings and if this doesn't work, delete the account and manually recreate the account on the iPhone without transferring the account settings to your iPhone via the sync process.

  • Using the Netbeans GUI within a Project with existing Ant Script

    I cannot seem to figure out how to use the Netbeans GUI in my Project with existing Ant Script. Is this possible? I have no problem creating GUI interfaces in a java Application, but attempting to make a new JFrame Form gives the error: package org.jdesktop.layout does not exist, and I have not been able to find a way around this. Any suggestions? Thanks in advance.
    Chris Coulon

    OK, I think I am on the right track, but I don't understand why I am still getting this error:
    clean:
    compile:
    Copying 1 file to /Users/chris/**JavaProjects/Netbeans_ImageJ
    Created dir: /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build
    Compiling 292 source files to /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:31: package org.jdesktop.layout does not exist
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:31: package org.jdesktop.layout does not exist
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:34: package org.jdesktop.layout does not exist
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:38: package org.jdesktop.layout does not exist
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    4 errors
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build.xml:11: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 6 seconds)
    I no longer have the error in my java code in the Projects list, but I still cannot build the project. This is my current build.xml file:
    <!-- Ant makefile for ImageJ -->
    <project name="ImageJ" default="run">
      <target name="compile" description="Compile everything.">
          <!-- Copy the swing layout library into dist.lib -->
        <copy file="dist/lib/swing-layout-1.0.3.jar" todir=".." />
        <!-- First, ensure the build directory exists. -->
        <mkdir dir="build" />
        <!-- Build everything; add debug="on" to debug -->
        <javac srcdir="." destdir="build" optimize="on" source="1.4" target="1.4" debug="on">
          <!-- The plugins directory only needs to be
                 present at runtime, not at build time. -->
          <!-- exclude name="plugins/**"/-->
        </javac>
      </target>
      <target name="build" depends="compile" description="Build ij.jar.">
        <!-- Copy needed files into the build directory. -->
        <copy file="IJ_Props.txt" todir="build" />
        <copy file="images/microscope.gif" tofile="build/microscope.gif" />
        <copy file="images/about.jpg" tofile="build/about.jpg" />
         <copy file="plugins/MacAdapter.class" tofile="build/MacAdapter.class" />
        <copy todir="build/macros"><fileset dir="macros"/></copy>
        <!-- Build ij.jar. -->
        <jar jarfile="ij.jar" basedir="build"
             manifest="MANIFEST.MF" />
      </target>
      <target name="clean" description="Delete the build files.">
        <delete dir="build" />
        <delete file="ij.jar" />
      </target>
      <target name="run" depends="build" description="Build and run ImageJ.">
        <copy file="ij.jar" toDir=".." />
        <java maxmemory="640m" jar="ij.jar" fork="yes" />
      </target>
      <target name="run2" depends="build" description="Build and run ImageJ.">
        <!-- Run in ImageJ directory -->
        <copy file="ij.jar" toDir=".." />
        <java maxmemory="640m" dir=".." jar="ij.jar" fork="yes" />
      </target>
      <target name="zip" depends="clean" description="Build zrc.zip.">
        <zip zipfile="../src.zip"
           basedir=".."
           includes="source/**"
        />
      </target>
      <target name="javadocs" description="Build the JavaDocs.">
        <delete dir="../api" />
        <mkdir dir="../api" />
        <javadoc
               sourcepath="."
               packagenames="ij.*"
               destdir="../api"
               author="true"
               version="true"
               use="true"
               windowtitle="ImageJ API">
        </javadoc>
      </target>
       </project>notice I added this line: <copy file="dist/lib/swing-layout-1.0.3.jar" todir=".." />
    because the dir ".." is where the other jar files are placed, i.e.:
    [GAIAG:~/**JavaProjects/Netbeans_ImageJ/source] chris% ls ..
    PolarDisplay          ij.jar               swing-layout-1.0.3.jar
    TestFrames          myApp
    api               source
    So why is the build not able to see the package org.jdesktop.layout in the jar file?
    Chris

  • Hi Anil, I was able to compile the Maven test build successfully but still has errors.

    Hi Anil, I am not able to compile the Maven test build successfully but still have errors/warning messages. Can you please help me or tell me if I can
    processed with the tutorials. Thanks.
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-
    instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>Maven-Test</groupId>
      <artifactId>Maven-Test</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <packaging>pom</packaging>
       <dependencies>
    <!-- check if <sap.cloud.sdk.version> and <sap.cloud.sdk.path> in settings.xml are correct -->
    <!-- SAP HANA Cloud SDK dependency -->
    <dependency>
    <groupId>Maven-Test</groupId>
    <artifactId>Maven-Test</artifactId>
    <version>1.48.16</version>
    <scope>system</scope>
    <systemPath>C:/dev/hanacloud.sdk/1.48.16</systemPath>
    </dependency>
    <!-- check if <eclipse.path> and <sap.cloud.ui5.version> in settings.xml are correct -->
    <!-- SAPUI5 dependency -->
    <dependency>
    <groupId>Maven-Test</groupId>
    <artifactId>Maven-Test</artifactId> (I am getting error here)
    <version>1.18.8</version>
    <scope>system</scope>
      <systemPath>C:/dev/eclipse</systemPath>
    </dependency>
    </dependencies>
    </project>
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
    SLF4J: Defaulting to no-operation (NOP) logger implementation
    SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
    [INFO] Scanning for projects...
    [WARNING]
    [WARNING] Some problems were encountered while building the effective model for Maven-Test:Maven-Test:pom:0.0.1-SNAPSHOT
    [WARNING] 'dependencies.dependency.systemPath' for Maven-Test:Maven-Test:jar should use a variable instead of a hard-coded path C:/dev/hanacloud.sdk/1.48.16 @ line 16, column 14
    [WARNING] 'dependencies.dependency.systemPath' for Maven-Test:Maven-Test:jar should use a variable instead of a hard-coded path C:/dev/eclipse @ line 25, column 15
    [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: Maven-Test:Maven-Test:jar -> version 1.48.16 vs 1.18.8 @ line 20, column 14
    [WARNING] 'dependencies.dependency.systemPath' for Maven-Test:Maven-Test:jar refers to a non-existing file C:\dev\eclipse @ line 25, column 15
    [WARNING]
    [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
    [WARNING]
    [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
    [WARNING]
    [INFO]                                                                        
    [INFO] ------------------------------------------------------------------------
    [INFO] Building Maven-Test 0.0.1-SNAPSHOT
    [INFO] ------------------------------------------------------------------------
    Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom
    Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom (5 KB at 4.3 KB/sec)
    [INFO]
    [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ Maven-Test ---
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 3.507s
    [INFO] Finished at: Mon Mar 24 02:27:14 EDT 2014
    [INFO] Final Memory: 5M/99M
    [INFO] ------------------------------------------------------------------------

    It's probably best to close thread and that I start a new one. I think that I have gone off on a tangent here. Yes SSIS isn't doing much of a job in reporting errors but my main concern is the error itself.
    I am trying to port an SSIS Script Task from SQL 2008 to SQL 2012. Is uses the ReportExecution2005 web service to run SSRS reports. The really strange thing is that, even though the same web reference is used, different methods seem
    to be available in SQL 2008 and SQL 2012. This doesn't sound right to me, if you refer to the same Web Service you should see the same metros or am I wrong about that.
    For example in SQL 2008 there is ReportExecutionService
    object but on the SQL 2012 to service there only seems to be
    ReportExecutionServiceSOAPClient.
    R Campbell

  • I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    You have 10.6 on that machine, I suggest you stick with it for performance, third party hardware and software reasons as long as possible.
    Consider 10.8 (not 10.7) when it's released, because 10.7 and 10.8 will require a new investment in software and newer third party hardware as it requires newer drivers the old machines won't have. (forced upgrade because of software, really nice of them)
    http://roaringapps.com/apps:table
    Far as your Safari problem do these things until it's resolved:
    1: Software Update fully under the Apple menu.
    2: Check the status of your plug-ins and update (works for all browsers) also install Firefox and see if your problems continue. You should always have at least two browsers on the machine just in case one fails.
    https://www.mozilla.org/en-US/plugincheck/
    Flash install instructions/problem resolution here if you need it.
    How to install Flash, fix problems
    3: Install Safari again from Apple's web site
    https://www.apple.com/safari/
    4: Run through this list of fixes, stopping with #16 and report back before doing #17
    Step by Step to fix your Mac

  • Smpatch always reports 'No patches required'

    I have a Solaris 9 machine which I've always kept up to date with smpatch. Recently, smpatch stopped providing reliable information about needed patches. Instead it always reports: 'No patches required.'
    bash-2.05# smpatch analyze
    No patches required.
    If I ask for a specific patch which I know I need, it says it doesn't exist:
    bash-2.05# smpatch download -i 112960-67
    The following patches were not downloaded:
    112960-67 Patch does not exist.
    Here are the relevant smpatch properties for this machine:
    bash-2.05# smpatch get
    patchpro.backout.directory - ""
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source - https://updateserver.sun.com/solaris/
    patchpro.patchset patchdb1 patchdb1
    patchpro.proxy.host "" ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port "" 8080
    patchpro.proxy.user "" ""
    patchpro.sun.passwd **** ****
    patchpro.sun.user - ""
    I've read some discussion which suggests Java may be to blame. I've installed a pretty recent JVM:
    bash-2.05# java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
    Java HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)

    Those settings are no longer correct for solaris 9.
    That is symptomatic of the obsolete version of update connection software.
    Heres what the currently correct settings are from a solaris 9 machine with working smpatch
    mildura# smpatch get
    patchpro.backout.directory      -               ""
    patchpro.baseline.directory     -               /var/sadm/spool
    patchpro.download.directory     -               /var/sadm/spool
    patchpro.install.types          -               rebootafter:reconfigafter:standard
    patchpro.patch.source        -               https://getupdates1.sun.com/
    patchpro.patchset               -               current2
    patchpro.proxy.host             -               ""
    patchpro.proxy.passwd           ****            ****
    patchpro.proxy.port             -               8080
    patchpro.proxy.user             -               ""But those setting won't work without the new version of the software.

  • Error: The folder does not contain a valid Flex Builder Project.

    HI All,
    My first Post here. I am new to Flex Hardly 10 days old. I
    want to open the flexstore project in flex builder 3 and could not
    able to do so.
    What I did: file->import->.... got the error msg as
    "The folder does not contain a valid Flex Builder Project".
    also tried file->import->general->..... same error
    msg.
    I need your Help guys
    I downloaded the sample project from
    http://examples.adobe.com/flex2/inproduct/sdk/flexstore/srcview/index.html
    Thanks in Advance
    SAS
    Text

    "shakeb66" <[email protected]> wrote in
    message
    news:gknbn8$av9$[email protected]..
    > HI All,
    > My first Post here. I am new to Flex Hardly 10 days old.
    I want to open
    > the
    > flexstore project in flex builder 3 and could not able
    to do so.
    > What I did: file->import->.... got the error msg
    as "The folder does not
    > contain a valid Flex Builder Project".
    > also tried file->import->general->..... same
    error msg.
    > I need your Help guys
    > I downloaded the sample project from
    >
    >
    http://examples.adobe.com/flex2/inproduct/sdk/flexstore/srcview/index.html
    Try creating a new Flex project and dragging the files from
    the zip into the
    src folder. You may find that you need to rearrange things a
    bit, depending
    on how they set up the project, but this should get you
    started.
    HTH;
    Amy

  • Weblogic workshop 10gR3 - Very slow in building projects and throwing error

    Hi All. I am working in a portal project with weblogic 10gR3. I am using 4GB RAM machine with Windows XP and Intel Core2 T5600 processor. Whenever I build my set of projects, workshop takes very long time to build the project and at end of it throws "There was an error running some portal verification, not all validation complete". Please let me know anyone else faced the same issue.
    Things tried out by me:
    1. new domain
    2. workshop restart
    3. closing all applications other than workshop to allow more memory space for build process
    but nothing helped me on it. Please let me know if someone aware of the fix.
    regards.
    Nanda
    Edited by: Nanda on Jan 27, 2011 2:37 PM

    Hi Nanda -
    Are there any exceptions in the Error Log view in Eclipse, or in the <workspace>/.metadata/.log file that seem relevant? Also, which version of 10gR3 is this -- 10.3.0 or 10.3.2? You can check via the Help | About... item -- if it says it's Eclipse 3.5.0, then it's WLP 10.3.2; WLP 10.3.0 will say it's Oracle Workshop for WebLogic 10.3.
    How many projects do you have? What types are they? How many artifacts in each (e.g. .portlets, .portal, pageflows, ejbs, etc.)?
    You can also turn off Portal verification for now. Go to Window | Preferences | Validation, then uncheck the WebLogic Portal Validator and WebLogic Portal XML Validator boxes and hit Ok. You won't get warnings in the Problems view about .portals and .portlets, but you can see if it's part of the problem. Another general thing that pops up around performance is interaction with an underlying virus scanner -- if possible, try making sure your real-time virus scanner is skipping your project folders and your BEA_HOME.
    Greg

  • Date/Time:      2012-03-07 16:29:50 -0500 OS Version:     10.5.8 (Build 9L31a) Architecture:   i386 Report Version: 4  Command:        Adobe Bridge CS5 Path:           /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/Adobe Bridge CS5 Ver

    Adobe browser hangsup.  I then get the problem report, but it will not let me send it.  THanks for any help.  Here is a copy and paste of the report:
    Date/Time:      2012-03-07 16:29:50 -0500
    OS Version:     10.5.8 (Build 9L31a)
    Architecture:   i386
    Report Version: 4
    Command:        Adobe Bridge CS5
    Path:           /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/Adobe Bridge CS5
    Version:        4.0.5.11 (4.0.5.11)
    Parent:         launchd [107]
    PID:            260
    Event:          hang
    Time:           9.45s
    Steps:          62
    Process:        Adobe Bridge CS5 [260]
    Path:           /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/Adobe Bridge CS5
      ADDRESS         BINARY
      00001000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/Adobe Bridge CS5
      0114c000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/ AdobeAXE8SharedExpat
      01183000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeCrashReporter.framework/Versions/A/Ad obeCrashReporter
      0118e000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeExtendScript.framework/Versions/A/Ado beExtendScript
      01285000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeScCore.framework/Versions/A/AdobeScCo re
      01357000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobePSL.framework/Versions/A/AdobePSL
      023d9000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
      0246f000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/WRServices.framework/Versions/A/WRServices
      025ed000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/ICUData.framework/Versions/3.6/libicudata. dylib.36.0
      02fa0000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/ICUConverter.framework/Versions/3.6/libicu cnv.dylib.36.0
      03050000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/adbeape.framework/Versions/A/adbeape
      03059000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      03190000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      03555000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0359a000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      035bf000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBI BUtils
      035ec000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeCoolType.framework/Versions/A/AdobeCo olType
      03966000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXM PFiles
      03a29000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
      03a90000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/FileInfo.framework/Versions/A/FileInfo
      03b18000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
      0401f000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/UpdaterNotifications.framework/Versions/A/ UpdaterNotifications
      04073000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/ICUInternationalization.framework/Versions /3.6/libicui18n.dylib.36.0
      041a3000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc .dylib.36.0
      042bd000        /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
      04335000        /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      16aa4000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
      16b51000        /usr/lib/libmx.A.dylib
      18e00000        /Applications/Adobe Bridge CS5/Required/Photoshop Adapter.plugin/Contents/MacOS/Photoshop Adapter
      18fe2000        /Applications/Adobe Bridge CS5/Plug-Ins/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
      1908e000        /Applications/Adobe Bridge CS5/Plug-Ins/MMXCore.plugin/Contents/MacOS/MMXCore
      1916a000        /Library/Application Support/Adobe/Plug-Ins/CS5/File Formats/Camera Raw.plugin/Contents/MacOS/Camera Raw
      1ac68000        /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
      1bb88000        /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
      1bbb8000        /System/Library/PrivateFrameworks/URLMount.framework/URLMount
      1be00000        /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      1bfb3000        /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
      1daa6000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
      1dcbd000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      1e541000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/Frameworks/SwitchBoardClient.bundle/Contents/MacOS/SwitchBoard Client
      205af000        /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
      205f7000        /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
      20638000        /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
      22b5e000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      40000000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
      b0000000        /Applications/Adobe Bridge CS5/Adobe Bridge CS5.app/Contents/MacOS/../Frameworks/ahclient.framework/Versions/A/ahclient
      ba300000        /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
      ba900000        /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
      bab00000        /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
      Thread id:      7d9dc80
      User stack:
        62 start + 54 (in Adobe Bridge CS5) [0x2ca6]
          62 _main + 91 (in Adobe Bridge CS5) [0x729209]
            62 __ZN5Mondo12CApplication4MainEv + 65 (in Adobe Bridge CS5) [0x728c43]
              62 __ZN5Mondo11CExecutable3RunEv + 43 (in Adobe Bridge CS5) [0x6616d3]
                62 __ZN5Mondo11CExecutable10RunExecuteEv + 79 (in Adobe Bridge CS5) [0x66164d]
                  62 __ZN5Mondo8CProcess7ExecuteENS_6CFlagsImEE + 500 (in Adobe Bridge CS5) [0x66a0f6]
                    62 __ZN5Mondo8CProcess20DispatchProcessEventEv + 77 (in Adobe Bridge CS5) [0x66b4c9]
                      62 __ZN5Mondo13CMessageEvent7ExecuteEv + 104 (in Adobe Bridge CS5) [0x66cfa8]
                        62 __ZN5Mondo10CMessenger7ReceiveERKNS_8CMessageE + 354 (in Adobe Bridge CS5) [0x666ca4]
                          62 __ZN5Mondo10CMessenger12ReceiveOtherERKNS_8CMessageE + 33 (in Adobe Bridge CS5) [0x666edd]
                            62 start + 889420 (in Adobe Bridge CS5) [0xdbebc]
                              62 start + 875976 (in Adobe Bridge CS5) [0xd8a38]
                                62 start + 3812116 (in Adobe Bridge CS5) [0x3a5784]
                                  62 start + 3657439 (in Adobe Bridge CS5) [0x37fb4f]
                                    62 start + 3656395 (in Adobe Bridge CS5) [0x37f73b]
                                      62 __ZN5Mondo9CFilePort4ReadEPvm + 94 (in Adobe Bridge CS5) [0x6afa0e]
                                        62 _FSReadFork + 59 (in CarbonCore) [0x961a7cd1]
                                          62 ___pread + 10 (in libSystem.B.dylib) [0x91aa510a]
      Kernel stack:
        62 _unix_syscall + 572 [0x3e3a7f]
          62 _pread_nocancel + 174 [0x391751]
            62 _nosys + 593 [0x39164d]
              62 _vn_rdwr + 353 [0x1ede33]
                62 _VNOP_READ + 168 [0x1f8492]
                  62 _hfs_vnop_read + 308 [0x32cad0]
                    62 _cluster_read + 61 [0x1d3648]
                      62 _cluster_read_ext + 266 [0x1d2920]
                        62 _cluster_pageout + 2340 [0x1d12ca]
                          62 _cluster_copy_upl_data + 2767 [0x1cf7a7]
                            62 _VNOP_STRATEGY + 47 [0x1f67df]
                              62 _hfs_vnop_strategy + 52 [0x32e382]
                                62 _buf_strategy + 868 [0x1cad62]
                                  62 _spec_strategy + 705 [0x2054fe]
                                    62 com.apple.iokit.IOStorageFamily (1.5.6) + 60194 [0x64cb22]
                                      62 com.apple.iokit.IOStorageFamily (1.5.6) + 34129 [0x646551]
                                        62 com.apple.iokit.IOStorageFamily (1.5.6) + 22029 [0x64360d]
                                          62 com.apple.iokit.IOStorageFamily (1.5.6) + 13317 [0x641405]
                                            62 com.apple.iokit.IOSCSIBlockCommandsDevice (2.1.1) + 5174 [0x669436]
                                              62 com.apple.iokit.IOSCSIArchitectureModelFamily (2.1.1) + 41109 [0x62f095]
                                                62 __ZN13IOCommandGate9runActionEPFiP8OSObjectPvS2_S2_S2_ES2_S2_S2_S2_ + 261 [0x427525]
                                                  62 com.apple.iokit.IOSCSIBlockCommandsDevice (2.1.1) + 43636 [0x672a74]
                                                    62 com.apple.iokit.IOSCSIArchitectureModelFamily (2.1.1) + 41532 [0x62f23c]
                                                      62 _IORecursiveLockSleep + 67 [0x40adad]
                                                        62 _lck_mtx_sleep + 87 [0x130d90]
                                                          62 _thread_block + 33 [0x136f20]
                                                            62 _thread_continue + 1180 [0x136cb3]
      Thread id:      1071b5d0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _vio_timeout + 883035 (in Adobe Bridge CS5) [0x960ed8]
              62 _vio_timeout + 757734 (in Adobe Bridge CS5) [0x942563]
                62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Kernel stack:
        1 _unix_syscall + 572 [0x3e3a7f]
          1 ___semwait_signal_nocancel + 104 [0x381fff]
            1 _semaphore_timedwait_trap_internal + 89 [0x139eea]
              1 _semaphore_wait_internal + 565 [0x139c87]
                1 _thread_block + 33 [0x136f20]
                  1 _thread_block_reason + 135 [0x136e7c]
                    1 _thread_setrun + 3597 [0x136217]
                      1 _machine_idle + 271 [0x1ac3ec]
      Thread id:      7fdf7d8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 ??? [0x30930ed]
                62 ??? [0x30936f1]
                  62 _MPWaitOnQueue + 208 (in CarbonCore) [0x961baa60]
                    62 _TSWaitOnConditionTimedRelative + 202 (in CarbonCore) [0x96199c36]
                      62 _TSWaitOnCondition + 126 (in CarbonCore) [0x961bade3]
                        62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      92bd998
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 _semaphore_timedwait_trap + 10 (in libSystem.B.dylib) [0x91a631ba]
      Thread id:      895b410
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 ??? [0x193ed487]
                62 ??? [0x193ee2d6]
                  62 _MPWaitOnQueue + 208 (in CarbonCore) [0x961baa60]
                    62 _TSWaitOnConditionTimedRelative + 202 (in CarbonCore) [0x96199c36]
                      62 _TSWaitOnCondition + 126 (in CarbonCore) [0x961bade3]
                        62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      8957f20
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ??? [0x192be77c]
              62 _EntryFM + 968916 (in Camera Raw) [0x1957dfe4]
                62 ??? [0x191dc1c8]
                  62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      1071d048
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN5Mondo7CThread9EntryProcEv + 18 (in Adobe Bridge CS5) [0x736f3a]
                62 start + 3035836 (in Adobe Bridge CS5) [0x2e7f2c]
                  62 start + 3035734 (in Adobe Bridge CS5) [0x2e7ec6]
                    62 start + 3031339 (in Adobe Bridge CS5) [0x2e6d9b]
                      62 _semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631ae]
      Thread id:      92bec80
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN5Mondo7CThread9EntryProcEv + 18 (in Adobe Bridge CS5) [0x736f3a]
                62 start + 3035836 (in Adobe Bridge CS5) [0x2e7f2c]
                  62 start + 3035734 (in Adobe Bridge CS5) [0x2e7ec6]
                    62 start + 3031339 (in Adobe Bridge CS5) [0x2e6d9b]
                      62 _semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631ae]
      Thread id:      8957b58
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 _kevent + 10 (in libSystem.B.dylib) [0x91a938c6]
      Thread id:      8957790
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN5Mondo7CThread9EntryProcEv + 18 (in Adobe Bridge CS5) [0x736f3a]
                62 start + 3342240 (in Adobe Bridge CS5) [0x332c10]
                  62 start + 3031339 (in Adobe Bridge CS5) [0x2e6d9b]
                    62 _semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631ae]
      Thread id:      895a4f0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN5Mondo7CThread9EntryProcEv + 18 (in Adobe Bridge CS5) [0x736f3a]
                62 start + 2993794 (in Adobe Bridge CS5) [0x2ddaf2]
                  62 start + 3004782 (in Adobe Bridge CS5) [0x2e05de]
                    62 start + 3031339 (in Adobe Bridge CS5) [0x2e6d9b]
                      62 _semaphore_wait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631ae]
      Thread id:      89582e8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _glvmDoWork + 162 (in libGLProgrammability.dylib) [0x92548b32]
              62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      7abc8b8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _thread_proxy + 96 (in SwitchBoardClient) [0x1e55b4d0]
              62 __ZN5adobe11switchboard15ConnectionQueue3runEv + 228 (in SwitchBoardClient) [0x1e5b3a94]
                62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      86122e8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _thread_proxy + 96 (in SwitchBoardClient) [0x1e55b4d0]
              62 __ZN5adobe11switchboard6Client3runEv + 178 (in SwitchBoardClient) [0x1e57ab42]
                62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      7fddd60
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _thread_proxy + 96 (in SwitchBoardClient) [0x1e55b4d0]
              62 ___recvmsg + 10 (in libSystem.B.dylib) [0x91ac50e2]
      Kernel stack:
        62 _unix_syscall + 572 [0x3e3a7f]
          62 _recvmsg_nocancel + 440 [0x3b15d3]
            62 _socketpair + 1219 [0x3b0f79]
              62 _soreceive + 1142 [0x3ac8df]
                62 _sbwait + 159 [0x3add29]
                  62 _msleep + 157 [0x3863e8]
                    62 _uiomove + 653 [0x386037]
                      62 _lck_mtx_sleep + 87 [0x130d90]
                        62 _thread_block + 33 [0x136f20]
                          62 _thread_continue + 1180 [0x136cb3]
      Thread id:      112a8d60
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _thread_proxy + 96 (in SwitchBoardClient) [0x1e55b4d0]
              62 ___recvmsg + 10 (in libSystem.B.dylib) [0x91ac50e2]
      Kernel stack:
        62 _unix_syscall + 572 [0x3e3a7f]
          62 _recvmsg_nocancel + 440 [0x3b15d3]
            62 _socketpair + 1219 [0x3b0f79]
              62 _soreceive + 1142 [0x3ac8df]
                62 _sbwait + 159 [0x3add29]
                  62 _msleep + 157 [0x3863e8]
                    62 _uiomove + 653 [0x386037]
                      62 _lck_mtx_sleep + 87 [0x130d90]
                        62 _thread_block + 33 [0x136f20]
                          62 _thread_continue + 1180 [0x136cb3]
      Thread id:      84efb58
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 _semaphore_timedwait_trap + 10 (in libSystem.B.dylib) [0x91a631ba]
    Process:        ATSServer [130]
    Path:           /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      Thread id:      826c5d0
      User stack:
        62 ??? [0x4b46]
          62 ??? [0xdd21f]
            62 _CFRunLoopRun + 84 (in CoreFoundation) [0x94721b04]
              62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      826be40
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
    Process:        AirPort Base Station Agent [118]
    Path:           /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
      Thread id:      826e7d8
      User stack:
        62 ??? [0x25ad]
          62 ??? [0x2680]
            62 _NSApplicationMain + 574 (in AppKit) [0x959471d8]
              62 -[NSApplication run] + 795 (in AppKit) [0x95979f9f]
                62 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit) [0x95980f88]
                  62 __DPSNextEvent + 657 (in AppKit) [0x959816d5]
                    62 _BlockUntilNextEventMatchingListInMode + 106 (in HIToolbox) [0x91ecef39]
                      62 _ReceiveNextEventCommon + 374 (in HIToolbox) [0x91ecf0c5]
                        62 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                          62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                            62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      7fdc2e8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 ___select + 10 (in libSystem.B.dylib) [0x91ab260a]
      Thread id:      84f37d8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ??? [0x1e458]
              62 ??? [0x1a1cb]
                62 ??? [0x1e759]
                  62 _semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631c6]
    Process:        DirectoryService [11]
    Path:           /usr/sbin/DirectoryService
      ADDRESS         BINARY
      00001000        /usr/sbin/DirectoryService
      00160000        /System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/Dir ectoryServiceCore
      Thread id:      7203790
      User stack:
        62 start + 54 (in DirectoryService) [0x1631a]
          62 _main + 2767 (in DirectoryService) [0x16e07]
            62 _CFRunLoopRun + 84 (in CoreFoundation) [0x94721b04]
              62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      7205d60
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 __ZN9DSLThread11_RunWrapperEPv + 84 (in DirectoryServiceCore) [0x168166]
              62 __ZN9DSCThread3RunEv + 39 (in DirectoryServiceCore) [0x167f5b]
                62 __ZN20CPluginRunLoopThread10ThreadMainEv + 222 (in DirectoryService) [0x22fc4]
                  62 _CFRunLoopRun + 84 (in CoreFoundation) [0x94721b04]
                    62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      718ee40
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 __ZN9DSLThread11_RunWrapperEPv + 84 (in DirectoryServiceCore) [0x168166]
              62 __ZN9DSCThread3RunEv + 39 (in DirectoryServiceCore) [0x167f5b]
                62 __ZN17CMigHandlerThread10ThreadMainEv + 303 (in DirectoryService) [0x231fd]
                  62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Kernel stack:
        62 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
          62 _mach_msg_overwrite_trap + 3808 [0x1270ea]
            62 _ipc_mqueue_receive + 750 [0x121292]
              62 _thread_block + 33 [0x136f20]
                62 _thread_continue + 1180 [0x136cb3]
      Thread id:      7204a78
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 _kevent + 10 (in libSystem.B.dylib) [0x91a938c6]
      Thread id:      718d3c8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 __ZN9DSLThread11_RunWrapperEPv + 84 (in DirectoryServiceCore) [0x168166]
              62 __ZN9DSCThread3RunEv + 39 (in DirectoryServiceCore) [0x167f5b]
                62 __ZN17CMigHandlerThread10ThreadMainEv + 162 (in DirectoryService) [0x23170]
                  62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      7fde8b8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 __ZN9DSLThread11_RunWrapperEPv + 84 (in DirectoryServiceCore) [0x168166]
              62 ___syscall + 5 (in libSystem.B.dylib) [0x91aa52b5]
    Process:        Dock [128]
    Path:           /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      12f80000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      826c208
      User stack:
        62 ??? [0x537a]
          62 ??? [0x97e97]
            62 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213 (in Foundation) [0x97e6f3d5]
              62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                54 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
                8 _CFRunLoopRunSpecific + 3896 (in CoreFoundation) [0x947216b8]
                  8 _mshPerform + 32 (in HIServices) [0x9248d00f]
                    8 ??? [0x2a8cf]
                      8 ??? [0x2a345]
                        8 ??? [0x11ecf]
                          8 ??? [0x245e2]
                            8 __HandlePopUpMenuSelection2 + 111 (in HIToolbox) [0x9203a2eb]
                              8 __HandlePopUpMenuSelection5 + 120 (in HIToolbox) [0x92000790]
                                8 __HandlePopUpMenuSelection7 + 627 (in HIToolbox) [0x91f6d3fb]
                                  8 __Z19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1845 (in HIToolbox) [0x91f6db83]
                                    6 __Z15TrackMenuCommonR14MenuSelectDataPh + 3860 (in HIToolbox) [0x91eff07c]
                                      6 __Z19IsUserStillTrackingP14MenuSelectDataPh + 493 (in HIToolbox) [0x91f15e0f]
                                        6 _ReceiveNextEventCommon + 374 (in HIToolbox) [0x91ecf0c5]
                                          6 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                                            6 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                                              6 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
                                    1 __Z15TrackMenuCommonR14MenuSelectDataPh + 4596 (in HIToolbox) [0x91eff35c]
                                      1 __Z13FlashFeedbackP14MenuSelectData + 154 (in HIToolbox) [0x91f1bd1e]
                                        1 __ZN6HIView13SimulateClickEsmPs + 225 (in HIToolbox) [0x91f1bedb]
                                          1 _SendEventToEventTargetWithOptions + 58 (in HIToolbox) [0x91ea63e0]
                                            1 __Z30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 405 (in HIToolbox) [0x91ea657b]
                                              1 __Z23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1181 (in HIToolbox) [0x91ea713d]
                                                1 __ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 1954 (in HIToolbox) [0x91eb55bc]
                                                  1 __ZN6HIView17SimulateClickSelfEsmPs + 41 (in HIToolbox) [0x91f1bfcf]
                                                    1 __Z22SendControlSimulateHitP6HIViewsmPs + 199 (in HIToolbox) [0x91f1c133]
                                                      1 _SendEventToEventTargetWithOptions + 58 (in HIToolbox) [0x91ea63e0]
                                                        1 __Z30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 405 (in HIToolbox) [0x91ea657b]
                                                          1 __Z23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1181 (in HIToolbox) [0x91ea713d]
                                                            1 __ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 2185 (in HIToolbox) [0x91eb56a3]
                                                              1 __ZN18HIStandardMenuView15SimulateHitSelfEsmPs + 181 (in HIToolbox) [0x91f1c247]
                                                                1 __ZN10HIMenuView15SimulateHitSelfEsmPs + 194 (in HIToolbox) [0x91f1c34c]
                                                                  1 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                                                                    1 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                                                                      1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
                                    1 __Z15TrackMenuCommonR14MenuSelectDataPh + 5022 (in HIToolbox) [0x91eff506]
                                      1 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                                        1 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                                          1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      826c998
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ??? [0x1340d]
              62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      84f15d0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ___NSThread__main__ + 308 (in Foundation) [0x97e3a9a4]
              62 _kevent + 10 (in libSystem.B.dylib) [0x91a938c6]
    Process:        Finder [133]
    Path:           /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      004e5000        /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
      004fe000        /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
      00546000        /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      005a0000        /System/Library/PrivateFrameworks/URLMount.framework/URLMount
      12bc2000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      15611000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      15694000        /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
      1669e000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      826a3c8
      User stack:
        62 ??? [0x92d6]
          62 ??? [0xf31d5]
            62 ??? [0x23319]
              62 _RunApplicationEventLoop + 207 (in HIToolbox) [0x91f2c2b3]
                62 __AcquireNextEvent + 58 (in HIToolbox) [0x91f2db56]
                  62 _ReceiveNextEventCommon + 374 (in HIToolbox) [0x91ecf0c5]
                    62 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                      62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                        62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      84ef3c8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN23TSystemNotificationTask26SystemNotificationTaskProcEPv + 123 (in DesktopServicesPriv) [0x94624d0f]
                62 _CFRunLoopRun + 84 (in CoreFoundation) [0x94721b04]
                  62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      7fdbb58
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN25TFSEventsNotificationTask28FSEventsNotificationTaskProcEPv + 216 (in DesktopServicesPriv) [0x94624e88]
                62 _CFRunLoopRun + 84 (in CoreFoundation) [0x94721b04]
                  62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      8615ba0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN13TNodeSyncTask12SyncTaskProcEPv + 84 (in DesktopServicesPriv) [0x9462fe6a]
                62 _MPWaitOnQueue + 208 (in CarbonCore) [0x961baa60]
                  62 _TSWaitOnConditionTimedRelative + 202 (in CarbonCore) [0x96199c36]
                    62 _TSWaitOnCondition + 126 (in CarbonCore) [0x961bade3]
                      62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      86126b0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 _kevent + 10 (in libSystem.B.dylib) [0x91a938c6]
      Thread id:      8611f20
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 ___select + 10 (in libSystem.B.dylib) [0x91ab260a]
      Thread id:      1071dba0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x961b8fbb]
              62 __ZN15TFolderSizeTask18FolderSizeTaskProcEPv + 104 (in DesktopServicesPriv) [0x94631db4]
                62 _MPWaitOnQueue + 208 (in CarbonCore) [0x961baa60]
                  62 _TSWaitOnConditionTimedRelative + 246 (in CarbonCore) [0x96199c62]
                    62 _semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631c6]
      Thread id:      10719b58
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ??? [0x9b12]
              62 ??? [0x48a0c]
                62 ??? [0x49bcd]
                  62 ??? [0x49c65]
                    62 _semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631c6]
      Thread id:      11b25790
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ??? [0x9b12]
              62 ??? [0xdcfea]
                62 ??? [0xe037b]
                  62 ??? [0x49c65]
                    62 _semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib) [0x91a631c6]
    Process:        Image Capture Extension [261]
    Path:           /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension
      ADDRESS         BINARY
      00001000        /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension
      00069000        /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
      000c4000        /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
      00188000        /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
      Thread id:      1057aba0
      User stack:
        62 start + 54 (in Image Capture Extension) [0x1f2a]
          62 _NSApplicationMain + 574 (in AppKit) [0x959471d8]
            62 -[NSApplication run] + 795 (in AppKit) [0x95979f9f]
              62 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit) [0x95980f88]
                62 __DPSNextEvent + 657 (in AppKit) [0x959816d5]
                  62 _BlockUntilNextEventMatchingListInMode + 106 (in HIToolbox) [0x91ecef39]
                    62 _ReceiveNextEventCommon + 374 (in HIToolbox) [0x91ecf0c5]
                      62 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                        62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                          62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      8958a78
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 ___select + 10 (in libSystem.B.dylib) [0x91ab260a]
    Process:        KernelEventAgent [35]
    Path:           /usr/sbin/KernelEventAgent
      ADDRESS         BINARY
      00001000        /usr/sbin/KernelEventAgent
      Thread id:      72a0998
      User stack:
        62 start + 54 (in KernelEventAgent) [0x1bfe]
          62 _main + 1126 (in KernelEventAgent) [0x3b7f]
            62 _CFRunLoopRun + 84 (in CoreFoundation) [0x94721b04]
              62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      7ab9f20
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 ___select + 10 (in libSystem.B.dylib) [0x91ab260a]
    Process:        Spotlight [122]
    Path:           /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
      00057000        /System/Library/PrivateFrameworks/Calculate.framework/Versions/A/Calculate
      00068000        /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
      000d1000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      11ef3000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      826d8b8
      User stack:
        62 ??? [0x26ea]
          62 _NSApplicationMain + 574 (in AppKit) [0x959471d8]
            62 -[NSApplication run] + 795 (in AppKit) [0x95979f9f]
              62 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit) [0x95980f88]
                62 __DPSNextEvent + 657 (in AppKit) [0x959816d5]
                  62 _BlockUntilNextEventMatchingListInMode + 106 (in HIToolbox) [0x91ecef39]
                    62 _ReceiveNextEventCommon + 374 (in HIToolbox) [0x91ecf0c5]
                      62 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                        62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                          62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      86135d0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _fe_fragment_thread + 54 (in QuartzCore) [0x968a4a09]
              62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
    Process:        SystemUIServer [131]
    Path:           /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      0006a000        /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
      00078000        /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
      000cc000        /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
      000f6000        /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
      00101000        /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
      0010a000        /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
      0023e000        /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
      0039c000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      003d7000        /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
      003e8000        /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
      0042f000        /usr/lib/libcurl.4.dylib
      004f1000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      00700000        /Applications/iCal.app/Contents/Resources/iCalDockExtra.bundle/Contents/MacOS/i CalDockExtra
      0070a000        /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
      00725000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      00776000        /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/MacOS/TextInput
      0078c000        /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
      11ef3000        /System/Library/CoreServices/Menu Extras/Bluetooth.menu/Contents/MacOS/Bluetooth
      11f0c000        /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
      11f2b000        /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
      11f62000        /System/Library/CoreServices/Menu Extras/TimeMachine.menu/Contents/MacOS/TimeMachine
      11f9f000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      1223d000        /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
      12396000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      15cbd000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Cli entController.bundle/Contents/MacOS/ClientController
      15cde000        /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
      15cff000        /System/Library/PrivateFrameworks/InternetConnect.framework/Versions/A/Internet Connect
      Thread id:      7fde128
      User stack:
        62 ??? [0x5646]
          62 ??? [0x5b44]
            62 -[NSApplication run] + 795 (in AppKit) [0x95979f9f]
              62 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit) [0x95980f88]
                62 __DPSNextEvent + 657 (in AppKit) [0x959816d5]
                  62 _BlockUntilNextEventMatchingListInMode + 106 (in HIToolbox) [0x91ecef39]
                    62 _ReceiveNextEventCommon + 374 (in HIToolbox) [0x91ecf0c5]
                      62 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x91ecf2ac]
                        62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                          62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      84f3048
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 __StaticProcessIOObjectsArray + 95 (in ICANotifications) [0xd4e9e]
              62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      84f2c80
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 _kevent + 10 (in libSystem.B.dylib) [0x91a938c6]
      Thread id:      826a790
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 ___NSThread__main__ + 308 (in Foundation) [0x97e3a9a4]
              62 -[NSThread main] + 45 (in Foundation) [0x97e3adfd]
                62 ??? [0x2682c]
                  62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                    62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      7abc4f0
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 __ZN9CAPThread5EntryEPS_ + 96 (in CoreAudio) [0x904ab480]
              62 __ZN10HALRunLoop9OwnThreadEPv + 160 (in CoreAudio) [0x904ab5f8]
                62 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x94721aa8]
                  62 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x91a63166]
      Thread id:      8611000
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 __pthread_start + 321 (in libSystem.B.dylib) [0x91a94055]
            62 _fe_fragment_thread + 54 (in QuartzCore) [0x968a4a09]
              62 ___semwait_signal + 10 (in libSystem.B.dylib) [0x91a6a34e]
      Thread id:      895a8b8
      User stack:
        62 _thread_start + 34 (in libSystem.B.dylib) [0x91a93f12]
          62 ___select + 10 (in libSystem.B.dylib) [0x91ab260a]

    Have you checked that your Adobe version is compatible with your OS - 10.5.8 is a bit old; you should consider updating to Snow Leopard regardless. You can buy the retail disk at online resellers or the Apple Store for $29. It'll be at version 10.6.3 or .4; you can then update to the latest via Software Update to 10.6.8.
    In the meantime, you might want to consider to also contact Adobe; ask about the compatibility and if they want to see the report.

  • How to made Flash Builder Project in Flash 4.0

    I am using Flash Builder 4 and facing issues for make its flex project in Flex 4.0 and i have made it successfully in Flex 3.0 with help of BlazeBS-bin 2.6. If i tried to made project in Flex 4.0 then it is giving an error " Only LiveCycle Data Services 2.6 and higher are supported." and i also download BlazeDS-bin-3.2 and use it to create a project but it is still giving me this error, please help me .........
    Thankx in Advance

    Hi Codex
    Welcome to the forum.
    I suppose the only question is does your superdrive support dual layer discs?
    Looking at your specs I'd assume it does. That being the case the only other thing to do is decide how the layer change will occur. I'm pretty sure the default is to create the layer break automatically but to check this highlight the disc icon at the very top of the Outline window. In the Disc Inspector select the Disc/Volume tab. Set the Disc Media to the 8.54gig option and the greyed out features below become available.
    The simplest route is to just leave them all as default, but this will mean that DVDSP will choose a point at which the layer change will occur and that may be right in the middle of something where you don't want a slight pause while it jumps to the next layer. You can place a marker in your track which is a layer-break-point marker (tick the box in the marker inspector) forcing the layer change. From memory the DVD spec prefers Layer 1 to be larger than Layer 2 (someone please correct me if I'm wrong) - all of this is covered in the manual so you might want to check up on the details there.
    Then insert your disc and hit Build&Format.
    Happy Burning
    Cheers
    B

  • DNG SDK build project cannot find the xml sdk

    On win7/x64.  Installed dng sdk and all dependencies per the readme files.  xml sdk built OK with vc10 express, as 64 bit static and dll.
    But the vc solution for dng_validate has incorrect names for the xml sdk build projects, so it cannot find those components.  Specifically it looks for "..\..\..\xmp_sdk\build\vc\XMPCore.vcxproj".  the actual paths in the xmp sdk are different and longer, like "..\..\..\xmp_sdk\build\vc10\dynamic\windows_x64".  Moreover there is no XMPCore.vcxproj there.
    I suppose the real problem may be that the dng sdk project is trying to build it as .net managed code, while the xml sdk was built as open code.  So I guess what I am looking for is a way to build the dng sdk open.

    I would confirm your post, but I have not found a solution. I wish someone at Adobe would look into this.

  • Error -17704, Build project failed in CVI

    I'm using CVI7.0 with TS3.0.
    When I configure the CVI adapter to be in debug mode, the TS uses tscvirun.prj to run an additional instance of the CVI code for debugging. As soon as TS finishes to load this project I get the run-time error:
    Build project failed in CVI for the project c:\....\tscvirun.prj.
    Error Code: -17704; CVI ActiveX automation server command failed.
    Any idea where to start looking?
    p.s. This entire project was copied from another pC where I don't have this problem. I did a lot of comparing between configurations of the two pCs but found nothing.
    Thanks

    Rafi2003 -
    Does the original tscvirun project that TestStand installs work with the example on the failing system?
    To validate this you may need to repair TestStand so that the tscvirun files are refreshed and try the examples to make sure things are working properly on the system before attempting to use the files from the second system.
    If you rerun the insaller, one of the available options will be to perform a repair.
    Scott Richardson (NI)
    Scott Richardson
    National Instruments

  • Project Cash Flow report

    Hi,
    I have searched in SCN but not found any solution on this.
    We have activated Project Cash Management and project cash mgt doc creating in FI doc.
    Can anybody provide some highlights to the following with respect project cash flow.
    Our requirement is to create project cash flow report in a specific format as below.
    Is there any standard Project cash Flow report available?
    What are the steps to get a Project cash Flow report?
    Can I do this with report painter? If yes, let me know the tables to refer.
    Regards
    SMP

    I guess standard SAP doesn't have any pre-defined cashflow report for project. However this can be achieved through custom development or through report painter by referring table COFP.
    Line item report (project payment line item) can be viewed through CJIA report. You may get more information on project cash management by going through below link.
    Project Cash Management - Payments - SAP Library

  • Load Flex/Flash Builder project in Flash Professional CS5

    Is there a way that I can load (or export) Flex/Flash builder project in Flash Professional CS5?
    As it turns out we got Flash Prof for our team, but it may look like we actually need Flash builder to build lots of UI related stuff..

    Specifically, I want to use flex chart in CS5. Is there a way to do this?
    Message was edited by: bart2335658
    And flex ui

Maybe you are looking for

  • Mp3 to wav

    I imported a CD to iTunes in the mp3 format. How can I take that file and change it back to a wav file to burn it back onto a blank CD?

  • My mac came with iMovie, deleted it planning to re-download now it wants me to pay?

    So my Macbook Air running 10.10.2 was having problems opening iMovie. I had submitted the report to Apple over a month ago and it just wouldn't get past the "loading clips" section. I got advice to delete and re-download iMovie but when I went to re-

  • Can I upload the chinese edition books on iBooks?

    I want to upload the chinese edition books on iBooks. Does apple support the chinese edition books on iBooks? If they do, How can I upload my books? Just follow the process as regular english version or Is there any special process to upload it ? Tha

  • Forget administrator name and password

    How do I reset/ retrieve my adminstrator name and password? Thanks!

  • Bug report: Recently used pages

    The View dropdown list on the Page Definition page (4000:4150) seems to get confused after a while regarding the list of Recently edited pages. See http://i1.tinypic.com/27yy9f7.jpg I definitely don't have a page with that large number! Not sure how