Using QTP libraried in production build

Hi,
I had some questions related to using QTP automation libraries, Any adivce would be of great help!
1)  Can we include QTP Automation libraries (automation.swc, automation_agent.swc, automation_spark.swc, automation_dmv.swc and qtp.swc) with the production deployment code.
2) Is the swc files generated by application modified when we compile it with the above library files.
3) Will there be any performance issue if the application is compiled with these files and deployed to the production.
Thank you!
Murali

If you remember that Sybase and MS worked together on SQLServer. Version 6.5 was pretty much the same database server. MS then built version 7.0 leaving Sybase behind. They added ANSI standard joins to their db. What did they get? PROBLEMS. Every patch contained fixes for ANSI standard joins. Even SQLServer 2000 has problems with it.
Oracle now trys to follow MS and add ANSI joins to their database. What did it give them? BUGS. Remember this one?
select * from sys.role$ cross join dual
http://otn.oracle.com/deploy/security/pdf/sql_joins_alert.pdf
Use standard joins and not ANSI joins. That will solve this problem.

Similar Messages

  • Modularizing large FX gui apps, esp. using fxml developed by Scene Builder

    StarterApp - One large java source file.
    Trying Out the JavaFX UI Controls (Using the JavaFX UI Controls)
    StageCoach is a simpler app, but with fxml, controller, and main code in separate files.
    Allows manipulation using Scene Builder.
    https://code.google.com/p/jfxtras/source/browse/ProJavaFX/Chapter03/StageCoach?repo=samples&r=322042d9ac293fcd9dd8f63e1664df45a0c4746f
    I was lead to these by the book, Pro JavaFX 8:
    http://www.apress.com/9781430265740
    Rich as it is, the StartApp is one big piece of code, with no modules such as an fxml file.
    By spreading out the code for StarterApp and StageCoach and studying it carefully
    I should be able to build a system as large as StarterApp, but as a three-file combo.
    StarterApp has nothing that deals with concurrency or persistence - those will be my jobs.
    I'm doing this because I'm building a large NLP app.
    It needs a GUI for future users.
    - Bob F

    Take a look at some app examples from the open-jfx repository
      https://wiki.openjdk.java.net/display/OpenJFX/Quick+Start
    For a smallish app, see the ConferenceScheduleApp:
       openjfx/8u-dev/rt: 3d138300d935 /apps/experiments/ConferenceScheduleApp/
    For a (much) larger app, see SceneBuilder:
       http://hg.openjdk.java.net/openjfx/8u-dev/rt/file/3d138300d935/apps/scenebuilder
       Ladstatt: Home made JavaFX SceneBuilder
    For a minimal framework which features FXML and dependency injection, see afterburner.fx:
       http://afterburner.adam-bien.com
    You can skip all of the stuff below if you don't like reading and just want to go code...
    In general for app code, use aggregation over inheritance in most places, though inheritance is useful sometimes.  Don't try to create your own controls by extending the Control class unless you are writing control libraries - that is complex and not well documented as well as largely unnecessary for app code.  Similarly PopupWindow isn't all that great or at least I have never found a need for it in app code - a basic Stage works fine for pretty much every case except perhaps very specialized things like context menus.  Java 8 has built-in dialogs and alerts in 8u40, so for standard dialogs or some reasonably customized dialogs, using those is better than creating your own.  If the standard controls aren't enough, try ControlsFX, it is (mainly) great and high quality.
    Let resizable layout managers do the layout work for you and use constraints in the layout managers and nodes rather than mucking around with fixed sized layouts or layout through binding.
    Don't try to implement a spreadsheet in a JavaFX TableView - just use the built-in controls for what they are good at and either develop a new control for specific functionality not provided by the built-in controls or just skip that feature if it would be too expensive to build it from scratch yourself (and it probably will be expensive - you just have to justify that against your project budget whether that is money or your own time).
    Make use of WebView to bring in web components (e.g. Google Docs or Google Maps).  Don't try and pass a lot of data back and forth between a WebView and your app.
    Don't do any style in code nor in FXML, put it all in a CSS style sheet.
    For medium sized apps - use FXML to design and mark-up your GUI, and use SceneBuilder to create and edit the FXML, don't hand code basic form style UIs - in the long run the FXML based app will be easier to maintain.
    For really small apps and learning tasks, write everything in code against the API so you understand that - use no FXML at all.
    With JavaFX you are writing user interfaces, follow basic user interface design heuristics for which there are some principles to keep in mind.
    Once you have a few FXML pages, passing parameters or sharing data between them is a question that most people run into as well as how to deal with navigation.  That navigation framework I linked is super basic and just meant for pretty simple applications.  A nicer framework which worked in general like a Browser navigation model would be useful - but I haven't seen a generic implementation of such a thing yet - I guess you could create one, but I definitely wouldn't start out trying to do that - instead focus on the basics of your application and get that implemented first.  If you end up needing a reasonably sophisticated navigation framework, eventually you will know it and can evaluate what to do then.
    You can do an awful lot with CSS and styling the built-in controls.  It really is very flexible.  Learn CSS and the JavaFX variant by reading general CSS tutorials (then forget everything HTML specific) and study in depth the JavaFX CSS reference guide and understand its extensions like looked up colors and derivation functions.  When you want to know how some inbuilt thing is styled, go to the modena.css source (which can be hideously obtuse and complicated).  Use ScenicView and SceneBuilder CSS analyzer to understand how CSS is applied to elements.  Don't style borders with boxes - use layered backgrounds, that is how every control modena.css works and how your app should also work.
    Deployment is a difficult topic - so sad and depressing.  For development, just build and run in your IDE.  For production, package the app as a self-contained application. Maybe one day there will be a better deployment model for JavaFX - but that is the best you can get for now.  Completely ignore webstart and web deployment models - any time spent investigating such technologies is completely wasted.
    Do not try to integrate JavaFX and Swing or SWT.  Just write pure JavaFX apps.
    For larger apps you intend to deploy to production, use Maven or Gradle as your build system (you can google the JavaFX plugins for each).  Do not spend any time with the stand-alone JavaFX packager or the JavaFX ant tasks and do not rely on your IDE to do your production builds.
    Get help to targeted questions on StackOverflow.
    Only code to Java 8+ and make use of functional programming techniques.
    Don't write multi-threaded apps unless you know what you are doing.  When you do write multi-threaded apps, use the JavaFX concurrency utilities.  Never modify the active scene graph from another thread, nor touch a property which might trigger an event which might modify the scene graph.  Do use the concurrency utilities if you have network I/O otherwise you will freeze your app while the network I/O occurs and that is a "bad thing".
    The Oracle JavaFX 8 documentation is good - read it and run a lot of the examples (except the ant based deployment ones and the Swing/SWT integration ones).
    Ensemble is great, play with it and study the code to see for the samples (which you can view within Ensemble).
    Binding is programming by side-effect, so be aware that when you change a property, it may trigger some potentially unrelated action through bindings or attached listeners.
    Programming JavaFX in any language other than Java is an experimental thing, so only do that if you like experimenting and are prepared to do so without a lot of support.
    Targeting embedded devices, iOS or Android for a JavaFX app is an experimental thing, so only do that if, yada, yada, yada.
    JavaFX is a mid-level UI system, not a full application stack - it abstracts away the basics like rendering, controls and animation but does not provide comprehensive OS hooks, navigation frameworks, model/view/presenter frameworks, full dependency injection, client/server messaging, data <-> controls serialization and deserialization, etc.  FXML is just a markup system with a binding capability to Java code.  JavaFX and FXML do not constitute a full application framework.  There is no widely-used full application framework for JavaFX.  Sure some people have tried to create one, but none of those solutions have achieved critical mass of usage and features - plus a one-size fits all application framework will never exist anyway - client applications (e.g. a game versus a line-of-business app) differ greatly and deserve completely different architectures.
    There are many things in the Java EE world which can be used in JavaFX (e.g., its dependency injection, its web socket or rest APIs and implementations, its server based systems to allow your app to access cloud based logic and storage, etc) - so feel free to use the bits you need, usually it's as simple as adding additional library dependencies to your maven or gradle project.  A typical medium sized JavaFX application will include multiple third party libraries (mostly non-UI libraries) to get its job done as this will be more convenient than coding everything against the JRE API - though there is an awful lot of out the box functionality you get from the JRE.
    JavaFX is more complicated to use than Delphi and in some respects doesn't supply as much functionality in terms of built-in stuff like data base backed tables (though it supplies a ton more functionality in style).  It is not easier to create a complete business app using JavaFX than it would be to create a similar thing in Microsoft Access in the 90's.  Such is progress.
    JavaFX is portable across desktop environments (OS X, Windows, Mac).  JavaFX apps have their own look and feel which is not like the native OS, but that is probably fine for a lot of apps.  AquaFX does an amazing job of making a JavaFX app looks like OS X apps (kudos to the creators of both AquaFX and the JavaFX built-in styling capabilities).
    Unlike some other portable frameworks like QT, you don't have to write C code, you can write Java code (which to me at least is a win).  Similarly unlike HTML/CSS/JavaScript you don't have to write untyped JavaScript or make use of some obscure code snippet you pulled off the web for your button control.  You don't have to use the web framework of the day which withered yesterday.  Instead you have the (benefit?) of hardly any framework at all for JavaFX.  You don't have to have your app live within a browser sandbox that another developer once described as the ghetto of application sandboxes.
    So, as compared to HTML - I think JavaFX is kinder to the developer, though end users don't really seem to care that much and are fairly accepting of HTML applications even when their functionality is often inferior to many more traditional GUI apps.  HTML is standardized, its full of standards, even the non-standard parts.  Everybody used to implement all the standards differently or make their own standards, however now the standards are so painstakingly, nitpickingly prescriptive that everybody implements pretty much the same thing - except when they don't.  JavaFX has no standard but its public API docs, it has just one implementation.  If you code against the API, your app is probably going to work forever - at least if you bundle the runtime with your app, cause if you don't you might end up like the poor guy in the previous question who can't figure out how to update his app specific CSS rules to get his app to look the same with a newer Java version.  JavaFX is a relatively niche technology and you don't have the legion of developers, tinkerers, industry investments and people just plain getting stuff done in any which way that you have with the whole HTML juggernaut.  The major thing that HTML provides that JavaFX does not is: Sharable, browsable deep links to stuff with search indexed content.  With HTML, Google will index it and you can link to and refer to other docs and other docs can link to yours.  It is the HT in HTML which makes the web so amazing and the F in FXML doesn't match it.  What is the F anyway?
    That's a huge wall'o'text.  Just some random thoughts and opinions.  All opinions are my own.  Your opinions may vary.  That's OK.  I don't think a discussion is needed.  If you would like any clarification or further advice you can ask in new questions.

  • Using External Library in a DC problem (SP16)

    Hi,
    I've been trying to get the example that Valery is outlining in his <a href="/people/valery.silaev/blog/2005/09/14/a-bit-of-impractical-scripting-for-web-dynpro">Blog</a>.
    I've done it exactly as Valery says, but I can't get it to work. I create the External Library DC, add the jar to Public Part (purpose Assembly) and build. Builds ok.
    I then proceed to creating the J2EE Library. It is created ok. I then add the External Lib I just created to Used DCs. This goes ok. I build the DC. There are warnings:
    Warning: Warning: Source folder does not exist, will be ignored: server
    Plugin initialized in 0.03 seconds
    Warning: No runtime information available for development component type External Library (sap.com), cannot validate runtime dependency.
    And:
    createDeployArchive:
         [mkdir] Created dir: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\t\C2CEFADCC9470A9F87865E9894AAE426\sdaprep
           [cda] Creating descriptor server/provider.xml ...
           [cda] WARNING: Ignoring invalid runtime dependency on js/jars (orion.com), type External Library
    I've tried nearly every combination of Dependency Types When adding the used DC to J2EE DC. The jar never ends up in the SDA file in gen\default\deploy or jar in gen\default\public. I only get different types of warnings.
    Here is the whole build.log:
    Apr 7, 2006 8:48:00 AM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] WARNING: js/lib: built with warnings orion.com/js/lib(MyComponents) in variant "default" (0.753 sec) :
    Build log -
    Development Component Build (2006-04-07 08:48:00)
      Component name: js/lib
      Component vendor: orion.com
      SC compartment: MyComponents
      Configuration: LocalDevelopment
      Location: local
      Source code location: jarpak@UFIES-JARPAK
      DC root folder: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\DCs\orion.com\js\lib\_comp\
      DC type: J2EE Server Component
      DC subtype: Library
      Host: UFIES-JARPAK
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] validating dependency to build plugin "sap.com/tc/bi/bp/addLib"
              [dcmake] validating dependency to  public part "Tokenizer" of DC "orion.com/js/jars"
              [dcmake] DC model check OK
    Start build plugin:
              [dcmake] using build plugin: sap.com/tc/bi/bp/addLib
              [dcmake] starting build plugin from : C:\Program Files\SAP\JDT\eclipse\plugins\com.sap.tc.ap\comp\SAP_BUILDT\DCs\sap.com\tc\bi\bp\addLib\_comp\gen\default\public\addLib\
    Build Plugin 'J2EE Library', Version 6.40 SP 16 (630_VAL_REL, built on 2006-02-13 00:17:07 CET)
       development component:  js/lib (orion.com)
          software component:  MyComponents (demo.sap.com)
                    location:  local
                        type:  J2EE Server Component, subtype Library
               build variant:  default
             source location:  jarpak@UFIES-JARPAK
           plugin start time:  2006-04-07 08:48:00 GMT+02:00 (EEST)
                     Java VM:  Java HotSpot(TM) Client VM, 1.4.2_03-b02 (Sun Microsystems Inc.)
    General options:
      convert *.xlf to *.properties: yes
      include sources for debugging: yes
    Warning: Warning: Source folder does not exist, will be ignored: server
    Plugin initialized in 0.03 seconds
    Warning: No runtime information available for development component type External Library (sap.com), cannot validate runtime dependency.
    Preparing data context..
    No 'default' JDK defined, will use running VM.
    Data context prepared in 0 seconds
    Executing macro file..
      Using macro file:     C:\Program Files\SAP\JDT\eclipse\plugins\com.sap.tc.ap\comp\SAP_BUILDT\DCs\sap.com\tc\bi\bp\addLib\_comp\gen\default\public\addLib\macros\build.vm
      Creating output file: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\DCs\orion.com\js\lib\_comp\gen\default\logs\build.xml
    Macro file executed in 0.482 seconds
    Starting Ant..
      Using build file:     C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\DCs\orion.com\js\lib\_comp\gen\default\logs\build.xml
      Using build target:   build
      Generation folder:    C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\t\C2CEFADCC9470A9F87865E9894AAE426
      Using Ant version:    1.5.4
    prepare:
         [mkdir] Created dir: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\DCs\orion.com\js\lib\_comp\gen\default\deploy
         [mkdir] Created dir: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\t\C2CEFADCC9470A9F87865E9894AAE426\int-pp
         [mkdir] Created dir: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\t\C2CEFADCC9470A9F87865E9894AAE426\sda
    compile:
    createPublicParts:
    createDeployArchive:
         [mkdir] Created dir: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\t\C2CEFADCC9470A9F87865E9894AAE426\sdaprep
           [cda] Creating descriptor server/provider.xml ...
           [cda] WARNING: Ignoring invalid runtime dependency on js/jars (orion.com), type External Library
    packDeployArchive:
    [srcpacker] Creating source archive
    [srcpacker] No sources available for packing, no archive will be created.
         [timer] Source archive creation finished in 0.02 seconds
        [jarsap] Info: JarSAP version 20041217.1600
        [jarsap] Info: JarSAPProcessing version 20060104.1634 / JarSL version 20060106.1831
        [jarsap] Property jarsap.info.dir is not set.
        [jarsap] Building: C:\Documents and Settings\jarpak\.dtc\LocalDevelopment\DCs\orion.com\js\lib\_comp\gen\default\deploy\orion.comjslib.sda with compression
         [timer] JarSAP finished in 0.03 seconds
    build:
    Ant runtime 0.161 seconds
    Ant build finished with WARNINGS
    Build plugin finished at 2006-04-07 08:48:00 GMT+02:00 (EEST)
    Total build plugin runtime: 0.693 seconds
    Build finished with WARNING
    What am I doing wrong ?
    Kind Regards,
    Jari Pakarinen

    Hi,
    There is an issue with SP16 in using External library DC.
    Go through this Jars not included in J2EE Library DC SDA. This thread deals with the same issue.
    Hope this helps.
    Regards,
    Rathna.

  • Intermittent import library generation failure building 64-bit binary in Visual Studio 2013

        I have a 64-bit c++ project that randomly fails to build because the import library generation silently fails in the link step.  I have scoured the "diagnostic level" log trying to find some hint at why the import library
    fails to be created, but there doesn't seem to be any information.
        It's pretty random.  When it fails, I can do a clean build and everything builds.  After a successful build, I can do another clean rebuild and see it fail again.
        The 32-bit version consistently builds fine.  I see the 64-bit problem regularly in any configuration (Release or Debug).
        I'm running VS2013 Update 2 RC.
        Any hints on how to debug this?  Is this a known issue for which there is a patch?

    Hi Anna, thanks for the reply.  Yes, this does reproduce in MSBuild if you specify a rebuild.  As mentioned previously, if you do a clean and build, even through MSBuild, the build succeeds every time.  
    There's no way for me to create a sample project.  Our codebase is quite large and this doesn't reproduce for simple example projects.  
    There is no error message when the iTunes.lib import library fails to build.  The import library is used in a dependent project and that fails in a way you would probably expect (complains about a missing .lib)...
    Here's the relevant section from my diagnostic build output.
    16>  Tracking command: (TaskId:92)
    16>  C:\Program Files (x86)\MSBuild\12.0\bin\Tracker.exe /a /d "C:\Program Files (x86)\MSBuild\12.0\bin\FileTracker.dll" /i C:\Users\psansone\iTunes\BuildResults\Debug64\intermediates\iTunesLauncher\iTunesLauncher.tlog /r "C:\USERS\PSANSONE\ITUNES\BUILDRESULTS\DEBUG64\BIN\ITUNES.LIB|C:\USERS\PSANSONE\ITUNES\BUILDRESULTS\DEBUG64\INTERMEDIATES\ITUNESLAUNCHER\APPLEAPPLICATIONSUPPORT.OBJ|C:\USERS\PSANSONE\ITUNES\BUILDRESULTS\DEBUG64\INTERMEDIATES\ITUNESLAUNCHER\ITUNESLAUNCHER.OBJ|C:\USERS\PSANSONE\ITUNES\BUILDRESULTS\DEBUG64\INTERMEDIATES\ITUNESLAUNCHER\ITUNESLAUNCHER.RES|C:\USERS\PSANSONE\ITUNES\BUILDRESULTS\DEBUG64\INTERMEDIATES\ITUNESLAUNCHER\VISUALSTUDIOPREFIX.OBJ"
    /b MSBuildConsole_CancelEvent293fb138735a4f31a04ade4d72d60766  /c "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe"  /ERRORREPORT:PROMPT /OUT:"C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.exe" /INCREMENTAL:NO
    /NOLOGO comctl32.lib libcmtd.lib libcpmtd.lib shlwapi.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /NODEFAULTLIB /MANIFEST:NO /DEBUG /PDB:"C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.exe.pdb"
    /SUBSYSTEM:WINDOWS /STACK:"1048576","262144" /TLBID:1 /DYNAMICBASE /FIXED:NO /NXCOMPAT /IMPLIB:"C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.lib" /MACHINE:X64 C:\Users\psansone\iTunes\BuildResults\Debug64\intermediates\iTunesLauncher\iTunesLauncher.res
    16>  C:\Users\psansone\iTunes\BuildResults\Debug64\intermediates\iTunesLauncher\AppleApplicationSupport.obj
    16>  C:\Users\psansone\iTunes\BuildResults\Debug64\intermediates\iTunesLauncher\VisualStudioPrefix.obj
    16>  C:\Users\psansone\iTunes\BuildResults\Debug64\intermediates\iTunesLauncher\iTunesLauncher.obj
    16>  C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.lib (TaskId:92)
    16>LINK : fatal error LNK1181: cannot open input file 'C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.lib'
    Here's the relevant part of the build log from the linker step that should build iTunes.lib (the import library that fails to build).
    15>     Creating library C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.lib and object C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.exp (TaskId:92)
    15>Done executing task "Link". (TaskId:92)
    15>Task "Message" (TaskId:93)
    15>  Task Parameter:Text=iTunesDLL.vcxproj -> C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.dll (TaskId:93)
    15>  Task Parameter:Importance=High (TaskId:93)
    15>  iTunesDLL.vcxproj -> C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.dll (TaskId:93)
    15>Done executing task "Message". (TaskId:93)
    15>Done building target "Link" in project "iTunesDLL.vcxproj".: (TargetId:209)
    15>Target "MetaGenInputsOutputs" skipped, due to false condition; ('$(EnableManagedIncrementalBuild)' == 'True') was evaluated as ('false' == 'True').
    15>Target "ComputeMetaGenInputs" skipped, due to false condition; ('$(CLRSupport)'!='' and '$(CLRSupport)'!='false') was evaluated as ('false'!='' and 'false'!='false').
    15>Target "MetaGen" skipped, due to false condition; ('@(MetaGen)' != '') was evaluated as ('' != '').
    15>Target "ComputeLinkImportLibraryOutputsForClean: (TargetId:210)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets" from project "C:\Users\psansone\iTunes\iTunes\Projects\iTunesDLL.vcxproj" (target "_Link" depends
    on it):
    15>Task "WriteLinesToFile" (TaskId:94)
    15>  Task Parameter:File=C:\Users\psansone\iTunes\BuildResults\Debug64\intermediates\iTunesDLL\iTunesDLL.tlog\iTunesDLL.write.1u.tlog (TaskId:94)
    15>  Task Parameter:
    15>      Lines=
    15>          ^C:\Users\psansone\iTunes\iTunes\Projects\iTunesDLL.vcxproj
    15>          C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.lib
    15>          C:\Users\psansone\iTunes\BuildResults\Debug64\bin\iTunes.exp (TaskId:94)
    15>  Task Parameter:Encoding=Unicode (TaskId:94)
    15>Done executing task "WriteLinesToFile". (TaskId:94)
    15>Done building target "ComputeLinkImportLibraryOutputsForClean" in project "iTunesDLL.vcxproj".: (TargetId:210)
    15>Target "AfterLink: (TargetId:211)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets" from project "C:\Users\psansone\iTunes\iTunes\Projects\iTunesDLL.vcxproj" (target "_Link" depends on it):
    15>Done building target "AfterLink" in project "iTunesDLL.vcxproj".: (TargetId:211)
    15>Target "_Link: (TargetId:212)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets" from project "C:\Users\psansone\iTunes\iTunes\Projects\iTunesDLL.vcxproj" (target "_BuildLinkAction" depends on it):
    15>Done building target "_Link" in project "iTunesDLL.vcxproj".: (TargetId:212)

  • Using 2jee library in a web module dc for an applet

    hi,
    i have create an external library dc, added some jars to it and wrapped that external library DC in a  j2ee library dc.
    the web module dc uses the j2ee library dc. after building the web module dc, the jars will not be a part of the war file. 
    the web module dc delivery an applet that reference the jars in the applat tag.
    how i can resolve this problem in nwdi?
    regards
    h.rohr

    hi marc,
    i have create an external library with a compilation and an assembly public part. the j2ee server component library use (wrapped) external library and the web module dc use the j2ee server component library.
    the public parts are visible in j2ee component library dc.
    the web module dc use the dc reference  to j2ee server component dc.
    regards,
    heiko

  • [svn:fx-trunk] 12087: Dev only. Checking in Flash Builder 4 " Library Projects" for building Flex SDK SWCs in trunk.

    Revision: 12087
    Revision: 12087
    Author:   [email protected]
    Date:     2009-11-21 20:56:09 -0800 (Sat, 21 Nov 2009)
    Log Message:
    Dev only. Checking in Flash Builder 4 "Library Projects" for building Flex SDK SWCs in trunk. These projects are easier to import and do not require linked resource variables to be specified.
    Note: although the trunk does not build textLayout.swc, there appears to be a legitimate compiler error in FlowGroupElement.as as a cast is missing. I'll follow up with TLF.
    QE notes: N/A
    Doc notes: N/A
    Bugs: N/A
    Reviewer: N/A
    Tests run: N/A
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airframework/.project
        flex/sdk/trunk/frameworks/projects/airframework/.settings/
        flex/sdk/trunk/frameworks/projects/airframework/.settings/org.eclipse.core.resources.pref s
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/.project
        flex/sdk/trunk/frameworks/projects/airspark/.settings/
        flex/sdk/trunk/frameworks/projects/airspark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/flex/.project
        flex/sdk/trunk/frameworks/projects/flex/.settings/
        flex/sdk/trunk/frameworks/projects/flex/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/framework/.project
        flex/sdk/trunk/frameworks/projects/framework/.settings/
        flex/sdk/trunk/frameworks/projects/framework/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/halo/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/halo/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/halo/.project
        flex/sdk/trunk/frameworks/projects/halo/.settings/
        flex/sdk/trunk/frameworks/projects/halo/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/osmf/.project
        flex/sdk/trunk/frameworks/projects/osmf/.settings/
        flex/sdk/trunk/frameworks/projects/osmf/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/rpc/.project
        flex/sdk/trunk/frameworks/projects/rpc/.settings/
        flex/sdk/trunk/frameworks/projects/rpc/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/.project
        flex/sdk/trunk/frameworks/projects/spark/.settings/
        flex/sdk/trunk/frameworks/projects/spark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.project
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.project
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.project
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/org.eclipse.core.resources.prefs

    Status Update - don't know if this is a bug, design flaw, install problem or my misunderstanding.
    I got it to work by first changing my Flex library to 4.5.0 - still didn't work with current
    app and update mxml files using "2.6" for their namespace versions. But I did at least
    get the popup error number 16815 - indicating an error in the update version namespace.
    By leaving my application namespace version at "2.6" and changing the update version to "2.5" ... bingo!
    I got my new update installed autiomatically.
    Is this how it's supposed to work - or are my runtimes mixed up?
    Will this work the same using the Flex 4.5.1 SDK? I'll find out shortly
    Hope this helps others.

  • Using Eclipse project definitions to build the Flex SDK

    It would be great if someone from Adobe could post on the recommended usage of the Eclipse project definitions in the development/eclipse/ subdirectory of the 3.0.x trunk distribution. I would like to debug some compiler modifications that I am working on.
    I saw Peter Farland demo this setup at 360Flex, but was unable to capture all the details of the Eclipse configuration that he discussed in his talk.
    thanks!

    If you go to the framework project’s properties, there is a section called Flex Library Compiler, you want to use a specific flex sdk (add a new sdk which points to the trunk, and use that) — you are probably building /against/ the wrong sdk, right code, wrong compiler.
    - Jono
    From: Ben Clinkinbeard <[email protected]>
    Reply-To: <[email protected]>
    Date: Thu, 3 Apr 2008 12:56:01 -0700
    To: <[email protected]>
    Subject: Re: Using Eclipse project definitions to build the Flex SDK
    A new message was posted by Ben Clinkinbeard in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    Sorry, I'm not following. My SDK project is from the trunk.
    Thanks,
    Ben
    On Thu, Apr 3, 2008 at 3:32 PM, Jono Spiro <[email protected]> wrote:
    A new message was posted by Jono Spiro in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    Try changing the sdk for the framework lib project to trunk (you'll need to add a new flex sdk, name it whatever you want) -- it's in the project properties. It's using the wrong compiler.
    - Jono
    From: Ben Clinkinbeard <[email protected]>
    Reply-To: <[email protected]>
    Date: Thu, 3 Apr 2008 05:13:43 -0700
    To: <[email protected]>
    Subject: Re: Using Eclipse project definitions to build the Flex SDK
    A new message was posted by Ben Clinkinbeard in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    I am running FB on top of Eclipse 3.3.2.
    <http://3.3.2.>  <
    <http://3.3.2.>
    http://3.3.2.>  I checked out the whole SDK trunk and can build the main ant task with no errors. I used the instructions mentioned above to create a Flex framework library project and thats where the error comes in. (I had tried to manually build a framework project a few times and it was a nightmare.) I would probably prefer to work on the 3.0.x branch/tag as I hope to submit a patch or two but saw Joe mention that the project defs only existed in the trunk.
    Searching Google for the oem error turns up lots of links about projects that had assets deleted and the build got confused but following the instructions on how to fix proved unsuccessful.
    Thanks,
    Ben
    On Thu, Apr 3, 2008 at 1:45 AM, Jono Spiro <[email protected]> wrote:
    A new message was posted by Jono Spiro in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    I always forget what that error means when it comes up -- though it's been ages since I've seen it last, literally.
    Joe: Since you mention Java 1.5, I'm guessing the errors are in the asdoc package? Those should be turned off (read: turned into a warning) -- Eclipse is a little too persnickety about that particular error. There's a preference for this in the Java section under warnings and errors. It's turned off in the trunk dev projects. Otherwise, you should be able to run the compiler directly with no problems (okay, one more caveat: there's a class loader issue with the OEM, fixed in trunk if you look for my Java 1.5 checkin).
    Ben: What is your setup? What are you building (Ryan mentions trunk, Joe mentions 30x), which Eclipse, which dev projects, did you build the sdk from the commandline first, etc.?
    Cheers,
    Jono
    View/reply at Using Eclipse project definitions to build the Flex SDK <
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/3>
    http://www.adobeforums.com/webx?13@@.59b4a9d4/3>
    Replies by email are OK.
    Use the unsubscribe <
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>
    http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>  form to cancel your email subscription.
    View/reply at Using Eclipse project definitions to build the Flex SDK <
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/5>
    http://www.adobeforums.com/webx?13@@.59b4a9d4/5>
    Replies by email are OK.
    Use the unsubscribe <
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>
    http://www.adobeforums.com/webx?280@@.59b4a9d4!folder=.3c060fa3
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3> >  form to cancel your email subscription.
    View/reply at Using Eclipse project definitions to build the Flex SDK
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/6>
    Replies by email are OK.
    Use the unsubscribe
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>  form to cancel your email subscription.
    View/reply at Using Eclipse project definitions to build the Flex SDK
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/7>
    Replies by email are OK.
    Use the unsubscribe
    <http://www.adobeforums.com/webx?280@@.59b4a9d4!folder=.3c060fa3>  form to cancel your email subscription.

  • My iPhoto starts up and freezes.  I have tried rebuilding and using iPhoto Library Manager.  I have an iMac running 10.7.3.  It was working before recent updates by Apple.  How can I troubleshoot?

    My iPhoto starts up and freezes.  I have tried rebuilding and using iPhoto Library Manager.  I have an iMac running 10.7.3.  It was working before recent updates by Apple.  How can I troubleshoot?

    Thank you.  Might be a bit more than 50 but close.
    Date/Time:       2012-04-09 12:46:07 -0400
    OS Version:      10.7.3 (Build 11D50d)
    Architecture:    x86_64
    Report Version:  9
    Command:         iPhoto
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version:         8.1.2 (8.1.2)
    Build Version:   8
    Project Name:    iPhotoProject
    Source Version:  4240000
    Parent:          launchd [142]
    PID:             980
    Event:           hang
    Duration:        1.81s
    Steps:           19 (100ms sampling interval)
    Pageins:         0
    Pageouts:        0
    Process:         iPhoto [980]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Architecture:    i386
    UID:             502
      Thread 0x50630    
      User stack:
        19 ??? (in iPhoto) [0x3172]
          19 ??? (in iPhoto) [0x124b80]
            19 NSApplicationMain + 1054 (in AppKit) [0x9c5eb261]
              19 -[NSApplication run] + 911 (in AppKit) [0x9c357675]
                19 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113 (in AppKit) [0x9c35b306]
                  19 _DPSNextEvent + 678 (in AppKit) [0x9c35ba9c]
                    19 BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x90129356]
                      19 ReceiveNextEventCommon + 381 (in HIToolbox) [0x901294e7]
                        19 RunCurrentEventLoopInMode + 318 (in HIToolbox) [0x9012217f]
                          19 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x99dce328]
                            19 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x99dce47c]
                              19 __CFRunLoopRun + 1112 (in CoreFoundation) [0x99dcec68]
                                19 __CFRunLoopDoSources0 + 246 (in CoreFoundation) [0x99da4d96]
                                  19 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15 (in CoreFoundation) [0x99da53df]
                                    19 __NSThreadPerformPerform + 503 (in Foundation) [0x9ac96e40]
                                      19 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x99e2dde1]
                                        19 ??? (in iPhoto) [0x50792e]
                                          19 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92 (in Foundation) [0x9ac45012]
                                            19 _CFXNotificationPost + 2776 (in CoreFoundation) [0x99de3a38]
                                              19 ___CFXNotificationPost_block_invoke_1 + 275 (in CoreFoundation) [0x99e18cb3]
                                                19 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49 (in Foundation) [0x9ac59e25]
                                                  19 ??? (in iPhoto) [0x5c2a86]
                                                    19 -[NSLock lock] + 185 (in Foundation) [0x9ac4c826]
                                                      19 __psynch_mutexwait + 10 (in libsystem_kernel.dylib) [0x93b74876]
      Kernel stack:
        19 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          19 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            19 psynch_mutexwait + 1403 (in mach_kernel) [0xffffff80005a043b]
              19 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                19 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  19 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    19 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]

  • Can I use RS232 library for RS485 communication? Alternatively, can I use NI Serial with non-NI 485 boards?

    Hi-
    I have successfully used RS232 library to communicate with one RS485 device.  I now have multiple devices using the same Rx and Tx lines.  Three of the 4 devices have their own dll and can communicate effectively despite each other.  My problem occurs when the one device I am talking to using the RS232 library now has to share the lines with the other devices.  Are there any ways around this? All I can think of is to see if I can use the NI Serial library commands with my non-NI PCIe card.  OR, buy the NI 485/422 card and use the NI Serial commands.  Any other suggestions? 
    Thanks.

    The fundamanetal difference between RS232 and RS485 is the ability to connect to multoiple devices. The devices also normally work in a "speak only when spoken to" mode and this is achieve by adding a device address in the protocol. The NI serial library is oblivious to most of this and doesn't care if it's RS232 or RS485. The problem with your 232 device is that it will speak everytime when any other device is adddressed, so you should make it comply to 485 standards. This can be done with RS232 to RS485 convertors. You can do a search on Google for this. The ones I use and have the least amount of problems with is either from Advantech (<http://www.advantech.com/products/search.aspx?keyword=RS-232#search> and <http://www.advantech.com/products/search.aspx?keyword=RS-232#search>) or BB Electronics. (<http://www.bb-elec.com/Products/Serial-Connectivity/Serial-Converters/Port-Powered-RS-232-to-RS-485-...>)
    Best Regards
    Jattie van der Linde
    Engineering Manager, Software & Automation
    TEL Magnetic Solutions Ltd

  • What are the simple to use COM library in your java code

    Hi,
    what are the simple to use COM library in your java code

    PhHein wrote:
    [javax/comm|http://java.sun.com/products/javacomm/reference/api/javax/comm/package-summary.html]
    No, he wants to use Windows COM objects!
    @OP
    It's not easy. You can try j-integra or ezjcom, which I tried years ago and was not too happy, but maybe
    they improved or they are just fine for your needs. $$$ involved!
    If you want to do it by yourself, it won't be easy at all, I promise, but it can be done with JNI or JNA.
    If your interactions are very few and simple, maybe some workarounds could be found.

  • Using External Library in Mobile Web Dynpro Offline

    Hi all,
    i would like to use a jar in a Mobile Application for Handheld and i followed the steps from the wiki "Using External Library in Mobile Web Dynpro Offline" at
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/usingExternalLibraryinMobileWebDynpro+Offline
    >How to use External Library in Mobile Web Dynpro Offline
    >For using external jar in local deployment scenario, one can do following:
    >1. In the dc where jar has to be used, add the jar as external jar classpath entry. It can be done via <dc> > (Right-click)> properties->Java Build Path->Select "add external jar".
    >2. Do the programming using the jar.
    >3. Shut down the mobile client.
    >4. Copy the jar in the "lib" folder of mobile client installation.
    >5. Deploy the application in the IDE.
    >6. Run the application.
    >In 5, the jar will not deployed and will be picked from the lib folder during 6.
    >...
    >Note: This will work on and after SAP Net Weaver CE 7.1 SR3 with Mobile plugins from CE 7.1 SR3 (and after).
    i get a error at the deployment with the message "...package myres does not exist...":
        >echo:     C:Documents and SettingsTPCompworkspace.jdiLocalDevelopment     4CDFCC9F800D44D0F2B7FEDE7245CFB5gen_oca
          >echo:   class path:  C:Program FilesSAPIDECEeclipsepluginscom.sap.tc.ap_2.0.1.080222142948compXOCADCssap.com     cmobileocaapi\_compgendefaultpublicapilibjavasap.comtcmobileocaapi~api.jar
          >echo:   output dir:  C:Documents and SettingsTPCompworkspace.jdiLocalDevelopment     4CDFCC9F800D44D0F2B7FEDE7245CFB5classes
         >javac: Compiling 16 source files to C:Documents and SettingsTPCompworkspace.jdiLocalDevelopment     4CDFCC9F800D44D0F2B7FEDE7245CFB5classes
         >javac: ERROR: C:Documents and SettingsTPCompworkspace.jdiLocalDevelopment     4CDFCC9F800D44D0F2B7FEDE7245CFB5gen_ocacomsapdemoemployee_scserviceimplEmployeeService.java:8: package myres does not exist
         >javac: ERROR: import myres.TestA;
    there is only sap.comtcmobileocaapi~api.jar in the class path and myres.jar was not added.
    how can i fix my problem or does the steps in the wiki not work yet for SAP Net Weaver CE 7.1 SR3 with Mobile plugins from CE 7.1 SR3 ?
    Thanks,
    Ismet

    Hi,
    1) in Development Infrastructure Perspective -> rightklick in Navigator/Projekt Explorer  -> new Project  -> (Development Infrastructure)  Development Component (DC).
    NWDS generates Project Ressources e.g. the folder "libraries"
    2) copy the jars to the "libraries" folder.
    3) rightklick on the newly created Development Component (DC) ->  Development Component -> Show In ->  Development Properties -> go to the Tab "Public Parts",
    in -> "Defined Public Parts" -> klick on Button "Add" -> give a name for "Public Part" -> at "Purpose" select "Compilation" -> Finish.
    rightklick on the newly created Public Parts -> select  "Manage Entities" and select the jars you want to use -> Next -> Finish.
    4) switch to the Mobile Apps for Handhelds Perspective ->  in Development Component  select e.g. the Service Component or the UI Component ->
    rightklick ->  Development Component -> Show In ->  Development Properties -> got to Tab "Dependencies" -> klick on Button "Add"  -> under the Node MyComponents -> select the newly created Development Component with the Public Parts/jars (that was created in 1 - 3).
    thats all, now you can deploy your application
    Regards,
    Ismet

  • IPhoto crashes on exit and when using iPhoto Library Manager

    Hi all,
    When attempting to split up my 70,000 iPhoto library using iPhoto Library Manager, the application crashes when attempting to import the photos to a new iPhoto library. This is when it is trying to make iPhoto quit during the import process.
    Similarly, iPhoto (under normal use) crashes when attempting to close (or quit) as you normally do. It just freezes and then eventually comes up with an error/crash message showing close, ignore or reopen dialogue box.
    Yes I know I have a huge library of 70,000 images and I did do the built-in iPhoto maintenance proceedures (which sped things up when opening the library after startup and general operations I must say) but it still crashes when trying to exit.
    I guess it has something to do with the size of the library, but unless I can get software to split into smaller libraries, I don't know what else I can do.
    Any suggestions?
    Thanks in advance...

    Forgot to paste this message I get after it finally shuts down/crashes:
    Process: iPhoto [42328]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 8.1.1 (8.1.1)
    Build Info: iPhotoProject-4190000~4
    Code Type: X86 (Native)
    Parent Process: launchd [129]
    Date/Time: 2010-02-08 14:03:26.174 +1100
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 665426 sec
    Crashes Since Last Report: 31
    Per-App Interval Since Last Report: 89913 sec
    Per-App Crashes Since Last Report: 3
    Anonymous UUID: 1FE4458F-E4A7-4246-9B10-9429BF4BC913
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFoundation 0x98075413 CFQSortArray + 259
    1 com.apple.CoreFoundation 0x980887ec __CFRunLoopDoObservers + 1020
    2 com.apple.CoreFoundation 0x9804518d __CFRunLoopRun + 557
    3 com.apple.CoreFoundation 0x98044864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98044691 CFRunLoopRunInMode + 97
    5 com.apple.iPhoto 0x00218701 0x1000 + 2193153
    6 com.apple.iPhoto 0x00067bc1 0x1000 + 420801
    7 com.apple.Foundation 0x9004c1c7 nsnotecallback + 176
    8 com.apple.CoreFoundation 0x980639a9 __CFXNotificationPost + 905
    9 com.apple.CoreFoundation 0x980633da _CFXNotificationPostNotification + 186
    10 com.apple.Foundation 0x90041094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    11 com.apple.Foundation 0x9004e471 -[NSNotificationCenter postNotificationName:object:] + 56
    12 com.apple.AppKit 0x98f5aeab -[NSApplication terminate:] + 713
    13 com.apple.AppKit 0x98d60f86 -[NSApplication sendAction:to:from:] + 112
    14 com.apple.AppKit 0x98d60e39 -[NSMenuItem _corePerformAction] + 435
    15 com.apple.AppKit 0x98d60b2a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    16 com.apple.AppKit 0x98d60a16 -[NSMenu performActionForItemAtIndex:] + 65
    17 com.apple.AppKit 0x98d609c9 -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    18 com.apple.AppKit 0x98d6092f -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    19 com.apple.AppKit 0x98d60873 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    20 com.apple.AppKit 0x98d54f79 NSSLMMenuEventHandler + 404
    21 com.apple.HIToolbox 0x94002e29 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    22 com.apple.HIToolbox 0x940020f0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    23 com.apple.HIToolbox 0x94024981 SendEventToEventTarget + 52
    24 com.apple.HIToolbox 0x94050e3b SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    25 com.apple.HIToolbox 0x94075b20 SendMenuCommandWithContextAndModifiers + 66
    26 com.apple.HIToolbox 0x94075ad7 SendMenuItemSelectedEvent + 121
    27 com.apple.HIToolbox 0x940759d3 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    28 com.apple.HIToolbox 0x94045212 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 440
    29 com.apple.HIToolbox 0x940449a9 _HandleMenuSelection2 + 465
    30 com.apple.HIToolbox 0x940447c7 _HandleMenuSelection + 53
    31 com.apple.AppKit 0x98d4e4ba _NSHandleCarbonMenuEvent + 285
    32 com.apple.AppKit 0x98d23076 _DPSNextEvent + 2304
    33 com.apple.AppKit 0x98d22306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    34 com.apple.AppKit 0x98ce449f -[NSApplication run] + 821
    35 com.apple.AppKit 0x98cdc535 NSApplicationMain + 574
    36 com.apple.iPhoto 0x00123ac8 0x1000 + 1190600
    37 com.apple.iPhoto 0x000030ea 0x1000 + 8426
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x92b830ea kevent + 10
    1 libSystem.B.dylib 0x92b83804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x92b82cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x92b82a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x92b824f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92b82336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x92b5c93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92b8a445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92bb9028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90088a84 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x900417f5 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x900416d8 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6a201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f58363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    9 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    11 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x92b5c93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92b8a445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92bb9028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90088a84 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x900417f5 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x900416d8 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6a201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f58363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    9 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    11 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92b5c8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92b5d047 mach_msg + 68
    2 com.apple.CoreFoundation 0x9804577f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x98044864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98044691 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x9008637c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6 com.apple.proxtcore 0x00f598a5 -[XTRunLoopThread run:] + 421
    7 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    8 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    9 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    10 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x005056c9 0x1000 + 5261001
    4 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 6: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x929a7276 ***::TCMalloc_PageHeap::scavengerThread() + 614
    4 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92b82182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92b82718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92b82336 start_wqthread + 30
    Thread 8:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x90074aef -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x005112b2 0x1000 + 5309106
    5 com.apple.iPhoto 0x00510ad0 0x1000 + 5307088
    6 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x90074aef -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x005112b2 0x1000 + 5309106
    5 com.apple.iPhoto 0x00510ad0 0x1000 + 5307088
    6 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x92b7b856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x98084ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    3 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92bb6441 nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x92bb637f usleep$UNIX2003 + 61
    3 com.apple.AE 0x93563e33 sendToModernProcess(__CFMachPort*, unsigned long, AEDesc const*, long) + 644
    4 com.apple.AE 0x93560f00 AESendMessage + 3635
    5 com.apple.ImageCapture 0x91d5c234 ICAAESendMessage + 57
    6 com.apple.ImageCapture 0x91d5213a ICACommand::SendSync() + 72
    7 com.apple.ImageCapture 0x91d51c94 ICACommand::ProcessCommand() + 76
    8 com.apple.ImageCapture 0x91d549de ICAGetDeviceList + 83
    9 com.apple.iPhoto 0x001012ad 0x1000 + 1049261
    10 com.apple.iPhoto 0x00101250 0x1000 + 1049168
    11 com.apple.iPhoto 0x0010133f 0x1000 + 1049407
    12 com.apple.iPhoto 0x00100f46 0x1000 + 1048390
    13 com.apple.iPhoto 0x000a9f9e 0x1000 + 692126
    14 com.apple.iPhoto 0x002181df 0x1000 + 2191839
    15 com.apple.iPhoto 0x0021852e 0x1000 + 2192686
    16 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    17 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    18 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    19 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x92b5c8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92b5d047 mach_msg + 68
    2 com.apple.CoreFoundation 0x9804577f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x98044864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98044691 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x90085430 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x005056c9 0x1000 + 5261001
    4 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffcfc040 ebx: 0xffcfc040 ecx: 0xa04064cc edx: 0x00000000
    edi: 0x00000004 esi: 0x00000000 ebp: 0xbfffdb88 esp: 0xbfffdb20
    ss: 0x0000001f efl: 0x00010246 eip: 0x98075413 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x9f9ffe com.apple.iPhoto 8.1.1 (8.1.1) <13A7B173-F1BC-6A25-54AC-C27E27774B17> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0xb2f000 - 0xb5aff3 com.apple.DiscRecordingUI 5.0.3 (5030.4.2) <E7AD526D-2149-065C-BA8D-2DA22BE43926> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0xb72000 - 0xc27fe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0xc6d000 - 0xc77fff com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0xc81000 - 0xd1dffc com.apple.MobileMe 8 (1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0xd7f000 - 0xd7ffff +eOkaoCom.dylib ??? (???) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0xd83000 - 0xdb6fe7 +eOkaoDt.dylib ??? (???) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0xdbc000 - 0xf22fff +eOkaoFr.dylib ??? (???) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0xf26000 - 0xf4aff2 +eOkaoPt.dylib ??? (???) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0xf51000 - 0xf98ff7 com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0xfdc000 - 0xfdcffa com.apple.iLifeSlideshow 1.0.3 (357.8) <3972FD15-5FDC-A7DC-3144-255D352A00CE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0xfe0000 - 0x1060fef com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x10c2000 - 0x10c2ff7 com.apple.AppleAppSupport 1.5 (1.5) <9FD82212-62A9-A388-940B-2343D69889C3> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x10c6000 - 0x10eefff com.apple.iLifeSlideshowCore 1.0.3 (126) <CB45910E-F1F3-0278-4D76-E995EF03DA9D> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x1108000 - 0x1221fe7 com.apple.iLifeSlideshowProducer 1.0.3 (319.5) <CE73BB90-E7AB-525D-CD4A-1576DFC6EF76> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x129f000 - 0x139dfe3 com.apple.iLifeSlideshowRenderer 1.0.3 (313.7) <EFAD06D8-111E-15C5-6105-5C878AAF3086> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x140e000 - 0x1416fff com.apple.iLifeSlideshowExporter 1.0.3 (125.2) <EE2C7A8E-68A2-5F60-72D8-FE45C5EB5B52> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x141f000 - 0x1448fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1459000 - 0x1461fe7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x146d000 - 0x1470fff com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x17b2000 - 0x17b4ff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17ba000 - 0x17bdff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x17c2000 - 0x17c4ff7 Motion ??? (???) <CB022D7E-217B-EF89-4974-72C50834B41D> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x3759000 - 0x37bdfe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <19C0FA03-FC58-CCFE-395D-DD4125A0B811> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x37dd000 - 0x3832fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3860000 - 0x38a6ffb com.apple.motion.component 1.0 (698) <BB552040-6F80-5207-E007-BB94A59D748D> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x38ac000 - 0x3948ff8 com.apple.procore.framework 4.0 (712) <09EE33B4-412C-FC25-5356-1DE47695BAA6> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x13a08000 - 0x13a0cfff com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x15c04000 - 0x15c14ff3 com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x174fa000 - 0x1750ffff com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1751c000 - 0x1754dff7 com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x182e4000 - 0x182e5ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1ffa0000 - 0x1ffabfff com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x1ffb5000 - 0x1ffbffff com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x1ffc9000 - 0x1ffd3fff com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x1ffdd000 - 0x1ffe8fff com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x1fff7000 - 0x1fff8ff7 com.apple.iLMBAppDefPlugin 2.1.3 (110.0.3) <ABA956B7-9BE5-01F3-C2B5-23591F943F78> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x20de3000 - 0x20deaff7 com.apple.iLMBAperturePlugin 2.1.3 (110.0.3) <821580C6-A859-AA53-5C85-19F39BB4B747> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x20df1000 - 0x20df2ff7 com.apple.iLMBFolderPlugin 2.1.3 (110.0.3) <3DAB4296-DF87-5510-5FBF-9B615B77A544> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x20df7000 - 0x20df9ff7 com.apple.iLMBMoviesFolderPlugin 2.1.3 (110.0.3) <FF3F0BCB-09A6-E51E-FFB6-BA2EDF29E130> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x20fe1000 - 0x20fe5ff7 com.apple.iLMBGarageBandPlugin 2.1.3 (110.0.3) <69F15960-9D4D-E931-40BC-9A706D40197E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x20feb000 - 0x20ff7ff7 com.apple.iLMBiMoviePlugin 2.1.3 (110.0.3) <CA6345FC-F811-EA46-D48A-35DE3499829B> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x213e8000 - 0x213f1ff7 com.apple.iLMBiPhotoPlugin 2.1.3 (110.0.3) <D1CD69A8-CFCA-3B00-C977-CC40C2B97766> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x213f8000 - 0x213faff7 com.apple.iLMBPhotoBoothPlugin 2.1.3 (110.0.3) <6B6DBBD0-BA2C-A4F7-69C5-C4249E1B7FE2> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x218e1000 - 0x218f2ffb com.apple.iLMBiPhoto8Plugin 2.1.3 (110.0.3) <7C16F545-E264-D0C6-47DE-11006AEF2D51> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x220f1000 - 0x220f9ff7 com.apple.iLMBiTunesPlugin 2.1.3 (110.0.3) <5B4BE0C1-0B25-43E7-B5DB-9A8C7C6BF2CE> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x24f00000 - 0x24fc8fe3 com.apple.iTunesAccess 9.0.2 (9.0.2) <BE683D34-0A0C-4153-FF5E-21CBBBFDD447> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8fe00000 - 0x8fe41627 dyld 132.1 (???) <7E8A62A5-BB2D-C9C5-940D-B493DC9CD231> /usr/lib/dyld
    0x90003000 - 0x9000aff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6FEFF0CE-312D-43A7-D0CF-36F67724C46D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90036000 - 0x902a6ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x902a7000 - 0x902aafe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x902ab000 - 0x902effe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x902f0000 - 0x9039dfe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9039e000 - 0x903aeff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x903af000 - 0x90716ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9074a000 - 0x9084bfe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9092b000 - 0x90935ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90936000 - 0x90c2fff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90c30000 - 0x90c30ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90c31000 - 0x90c65ff7 libssl.0.9.8.dylib ??? (???) <679919E5-BF54-0A06-6CB4-27EB2B60AF87> /usr/lib/libssl.0.9.8.dylib
    0x90c7a000 - 0x90cbcfe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90d6c000 - 0x90d71ff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90d72000 - 0x90f33ff7 com.apple.CalendarStore 4.0.1 (973) <E959BD58-B4FF-CD3B-78A0-F260851145E5> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x90f34000 - 0x90f81ff7 com.apple.ExchangeWebServices 1.1 (56) <E9538DF4-F348-51B8-C161-4F5AB983CDDC> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x90f82000 - 0x90fcbfe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90fcc000 - 0x9100bff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9100c000 - 0x9100fff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91010000 - 0x91021ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91022000 - 0x91046ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91058000 - 0x910d1ff7 com.apple.PDFKit 2.5 (2.5) <C1BC4E0C-E45B-A03E-69D3-DB7F85E9D23D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x910d2000 - 0x910d2ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x910d3000 - 0x910dcff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x910dd000 - 0x911cfff7 libcrypto.0.9.8.dylib ??? (???) <3B76DFFA-32E3-2F12-07DA-B5B02B781886> /usr/lib/libcrypto.0.9.8.dylib
    0x911dd000 - 0x91612ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91613000 - 0x91a29ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91a2a000 - 0x91b0eff7 com.apple.WebKit 6531.21 (6531.21.8) <0C45DB5C-D81F-BFFE-232D-7E6F647E597F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91b0f000 - 0x91b2ffe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91b30000 - 0x91b4dfe7 com.apple.DotMacSyncManager 2.0.1 (446.3) <BD225ADB-29C9-B507-210D-2CFC53459EBD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x91b4e000 - 0x91c5bff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91c5c000 - 0x91ca2ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91ca4000 - 0x91ca4ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91ca5000 - 0x91cdcff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91cdd000 - 0x91d4dff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91d4e000 - 0x91d63fff com.apple.ImageCapture 6.0 (6.0) <0E86F45E-E656-9015-7AD4-A2C5F8D8A2FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91d64000 - 0x91e3eff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91ebb000 - 0x91ef8ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91ef9000 - 0x9207bfe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x9207c000 - 0x920b1ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x920b2000 - 0x923d1fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x923d2000 - 0x9249cfef com.apple.CoreServices.OSServices 352 (352) <554C9C81-3F9D-8BD3-F611-CE1C47A55E7B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9249d000 - 0x924adff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x924b3000 - 0x924b4ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x924b5000 - 0x92505fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92506000 - 0x92510fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92511000 - 0x9251eff7 libbz2.1.0.dylib ??? (???) <B955B937-D9EF-D5AD-9770-7F83B3FA91DC> /usr/lib/libbz2.1.0.dylib
    0x9251f000 - 0x9264dfe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9264e000 - 0x9266afe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x926a0000 - 0x926caff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x926cb000 - 0x92721ff7 com.apple.MeshKitRuntime 1.0 (49.0) <20DE8687-2A2B-62E2-1AD5-D1D54A3A7F76> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9275a000 - 0x9276fff7 com.apple.iChat.InstantMessage 5.0.1 (744) <F43695A6-A089-A00D-C6D8-6E22DF14E9F0> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x92789000 - 0x927d1fff com.apple.iCalendar 1.0.1 (51) <3FF8D7DB-CA31-ADC2-23E9-E1254EAF8BB2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x927d2000 - 0x92840ff7 com.apple.ISSupport 1.9.2 (50) <A9BDA884-D0AF-9F39-0840-8B7F5E8E2031> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92885000 - 0x92a22fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92a45000 - 0x92b5bfe3 com.apple.PubSub 1.0.4 (65.11) <7F349A71-C4E6-E645-B28D-03A7DD120AA6> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92b5c000 - 0x92d00feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x92d01000 - 0x92d36ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92d57000 - 0x92e06ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92e07000 - 0x92fc3fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92fc4000 - 0x93005ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93038000 - 0x9303cff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9303d000 - 0x93051fe7 libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x93052000 - 0x930d4ffb SecurityFoundation ??? (???) <9714B2B7-854E-834D-FEEC-07F85E10D557> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x930d5000 - 0x93115ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93116000 - 0x9318dfe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93190000 - 0x9319bff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9319c000 - 0x931a2ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x931a3000 - 0x932cffe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x932d0000 - 0x932d0ff7 com.apple.Carbon 150 (152) <BC5384B0-DFFE-6BED-1FD6-ECAD2902DBA7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x932d1000 - 0x932e3ff7 com.apple.syncservices.syncservicesui 5.1 (578) <9C72B435-21F3-DD39-A129-DB503258FE94> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x932e4000 - 0x93358fef com.apple.CoreSymbolication 2.0 (23) <8C63D09A-6DF5-082A-553B-3E7610604C5D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x93360000 - 0x93431fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9343c000 - 0x93478fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93479000 - 0x934f9feb com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x934fa000 - 0x93507ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x93508000 - 0x93558ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93559000 - 0x9358cff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93590000 - 0x935caffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x935cb000 - 0x937cbfeb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x937cc000 - 0x9383dff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <4A9CBD16-1CD6-0528-8BA4-736175E6B0E7> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9383e000 - 0x93865ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93866000 - 0x938d0fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x938d1000 - 0x938d4ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9391c000 - 0x93923ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x93924000 - 0x93929ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9392a000 - 0x939a4fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93aad000 - 0x93bd1ff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x93bd2000 - 0x93dfdff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93dfe000 - 0x93e1efe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93e1f000 - 0x93ffaff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x93ffb000 - 0x9431efef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94338000 - 0x9434aff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9434b000 - 0x94386fe7 com.apple.DebugSymbols 1.1 (70) <1D0447CB-C221-A112-AA68-372951672A3D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x94387000 - 0x94835fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94836000 - 0x950194b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9503c000 - 0x9507aff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9507b000 - 0x9507cff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9507d000 - 0x9600bff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96166000 - 0x962a5fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x962a6000 - 0x96343fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96344000 - 0x963ecffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x963ed000 - 0x96445fe7 com.apple.datadetectorscore 2.0 (80.7) <D1644549-DBF1-A2DA-55A4-D3AFD5F8315A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96446000 - 0x96450ff7 com.apple.CrashReporterSupport 10.6.2 (239) <746DBA09-A901-E5FE-8605-F5EC3D9359FF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96451000 - 0x96454ffb com.apple.help 1.3.1 (41) <EF92C648-2085-C085-8EA7-A1AF37AE94F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96455000 - 0x964e6fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x964e7000 - 0x964edff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x964ee000 - 0x967e7fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x967e8000 - 0x97012fe7 com.apple.WebCore 6531.21 (6531.21.8) <60DEC7F3-954D-F4C4-360A-13575EDCC40A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97013000 - 0x9706dff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9706e000 - 0x9707bff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9707c000 - 0x970b2fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x970b3000 - 0x970e4ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x970e5000 - 0x97115ff7 com.apple.MeshKit 1.0 (49.0) <2F5D1A91-ACC8-C2F8-C242-CBBB6781AE05> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x97116000 - 0x97117ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97118000 - 0x9715cff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9715d000 - 0x97167ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97168000 - 0x971a8fe7 com.apple.DAVKit 4.0.1 (730) <2F07D7D0-9D31-67BC-8000-FAFF7EBB8643> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x971a9000 - 0x9740bff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9740c000 - 0x974b3fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x974b4000 - 0x974f4fe7 com.apple.IMCore 5.0.1 (744) <FF33F67F-9B91-1093-9BD0-0EEABFEBEBB4> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x975ea000 - 0x975feffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x975ff000 - 0x97601ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97602000 - 0x976b0ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x976b1000 - 0x97711fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97712000 - 0x9772aff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9772b000 - 0x9790dfff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x97927000 - 0x97995ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x97996000 - 0x979a2ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x979a3000 - 0x97a7eff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97a7f000 - 0x97bc0ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x97bc1000 - 0x97bc8ff7 com.apple.NSServerNotificationCenter 2 (1.0) <63EAE599-362C-CD27-CC18-1F211C12B8B8> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x97bc9000 - 0x97cbfff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97cc0000 - 0x97d03ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x97d04000 - 0x97d3cff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97d3d000 - 0x97d47ff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x97d48000 - 0x97d4afe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x97d4b000 - 0x97d71fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97d72000 - 0x97e2bfe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x97e2c000 - 0x97e2cff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97e2d000 - 0x97e9bff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <01471458-86B0-EFF3-1037-B5610E9B19DA> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x97e9c000 - 0x97ef6fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97ef7000 - 0x97ef7ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97ef8000 - 0x97fd5ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97fd6000 - 0x97ff8fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97ff9000 - 0x98003ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x98004000 - 0x98008ff7 IOSurface ??? (???) <B841647D-BC91-494A-8CF9-AA1F351B2065> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x98009000 - 0x98180fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9822a000 - 0x982d9fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x982da000 - 0x9838dfff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9838e000 - 0x98395fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x98396000 - 0x983faffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98425000 - 0x98476ff7 com.apple.HIServices 1.8.0 (???) <4EACE6E4-6E8B-5787-F36A-7958BB885629> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98477000 - 0x98479ff7 com.apple.securityhi 4.0 (36638) <28F1F6FF-E7B3-A1C4-C2F4-3FDD18BC4CD4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9847a000 - 0x98512fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x98513000 - 0x98521fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x98522000 - 0x98572ff7 com.apple.Symbolication 1.1 (67) <A173E87D-4F8D-C1F1-891C-48981656F84C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98573000 - 0x985acfe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x98617000 - 0x9861dfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9861e000 - 0x9863cff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9863d000 - 0x9864aff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9864b000 - 0x98666ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x98667000 - 0x9868fff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x98690000 - 0x98690ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98691000 - 0x98700ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98701000 - 0x989f5fe7 com.apple.MessageFramework 4.2 (1077) <47B00FD8-26E6-6AF4-1FFE-6B42DB3415A1> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x989f6000 - 0x98a43feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <52906E26-3D22-6F37-8C90-E50BBCDEA5D0> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x98a44000 - 0x98b46fef com.apple.MeshKitIO 1.0 (49.0) <B14C5987-EF67-0D1A-2B20-88922836D908> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x98b65000 - 0x98b8bfe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x98bd3000 - 0x98bd3ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98bd4000 - 0x98bd4ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98be5000 - 0x98c81fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98c82000 - 0x98c89ff7 com.apple.iChat.IMUtils 5.0.1 (744) <59F22006-D2AB-9D9F-E59C-BAC3AC073ED3> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x98c8a000 - 0x98ca8ff7 com.apple.iChat.IMFoundation 5.0.1 (744) <2B2A73FF-2178-45AD-518C-C79CBEA73290> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x98ca9000 - 0x98cadff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98cda000 - 0x995b8ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib

  • How to get LabVIEW to use library created in Xcode using a library node?

    I have written C++ code in the Xcode IDE on Mac OS X. This code controls a camera driver to tell it to take a picture and save it. I want to call this code in LabVIEW. I am trying to use a library node, but when I tell it the location of the Xcode project it doesn't recognize that anything is there. How can I get LabVIEW to recognize this? (Xcode used to be called Project Builder in earlier versions). In the documentation it says to link against libvlexports.a. I have included this file in my Xcode project, but does "link against" mean something more than that?

    To create a framework in XCode that you can reference in LabVIEW for Mac OS:
    Open XCode.
    Select File»New Project.
    Select Framework»Carbon Framework as the project type.
    Name the framework when prompted. Click Finish.
    The XCode browser will now appear. Click on main.c to open the file. This is where you will create your functions. For an example open the file main.c in the Call Library Function Node on Mac with XCode zip file.
    After adding your functions, compile the framework. The compiler settings should all be left at default.
    Access your functions via a Call Library Function Node in LabVIEW.
    To access the functions in a framework using the Call Library Function Node in LabVIEW:
    Place a Call Library Function Node on the block diagram by going to All Functions»Advanced»Call Library Function Node.
    Apple-Click on the Call Library Function Node and select "Configue..."
    Click on the Browse button and browse to your .framework file and click Select to select the framework.
    Type the name of the function you want to access in the Function Name field.
    NOTE: Unlike LabVIEW 7.x for Windows, once your framework is selected, the Function Name field DOES NOT autopopulate a list of functions in the framework.  You must type in the name of the function you want to access.
    Specify the return type of the function.
    Add the number of parameters in the function and specify their types.
    The function prototype will appear in the Function Prototype field according to how you have specified the function parameters.
    Click the OK button.
    Your Call Library Function Node will appear with the number of inputs you selected as well as the output. If LabVIEW cannot find the function you specified within the framework, it will show a broken Run arrow.
    The "Call Library Function Node on Mac with XCode.zip" file (attached) contains a simple framework created in XCode along with its source code in main.c.  main.c simply contains two functions both of which multiply two numbers. One function accepts integers and the other doubles. The zip file also contains a VI that references this framework using a Call Library Function Node.  This VI was created in LabVIEW 7.1 for Mac OS.
    Kind Regards,
    Message Edited by AESulzer on 07-08-2005 06:11 PM
    E. Sulzer
    Applications Engineer
    National Instruments
    Attachments:
    Call Library Function Node on Mac with XCode.zip ‏33 KB

  • I am using strobe player in flex builder 4.6 but its not loading.

    I am using strobe player in flex builder 4.6 but its not loading,
    I have made required change in compiler option as below: 
    -locale en_US -swf-version=11 -define CONFIG::LOGGING true -define CONFIG::FLASH_10_1 true -define CONFIG::MOCK false -define CONFIG::PLATFORM true
    There is no any error but player does not load, here is my code I am using;
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
          applicationComplete="init(event)" backgroundAlpha="0">
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
      <![CDATA[
       import mx.core.UIComponent;
       private const HTTP:String = "http://ec2-54-84-194-229.compute-1.amazonaws.com:1935/live/legacyLive/manifest.f4m?DVR";
       protected function init(event:Event):void
        var playerInstance:StrobeMediaPlayback = new StrobeMediaPlayback();
         var ui:UIComponent = new UIComponent();
        var parameters:Object = {
         src:HTTP,
         controlBarMode:"floating",
         controlBarAutoHide:"true"
        playerInstance.initialize(parameters, systemManager.stage, systemManager.loaderInfo, null);
        ui.addChild(playerInstance as DisplayObject);
        addChild(ui);
      ]]>
    </fx:Script>
    </s:Application>

    I am using strobe player in flex builder 4.6 but its not loading,
    I have made required change in compiler option as below: 
    -locale en_US -swf-version=11 -define CONFIG::LOGGING true -define CONFIG::FLASH_10_1 true -define CONFIG::MOCK false -define CONFIG::PLATFORM true
    There is no any error but player does not load, here is my code I am using;
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
          applicationComplete="init(event)" backgroundAlpha="0">
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
      <![CDATA[
       import mx.core.UIComponent;
       private const HTTP:String = "http://ec2-54-84-194-229.compute-1.amazonaws.com:1935/live/legacyLive/manifest.f4m?DVR";
       protected function init(event:Event):void
        var playerInstance:StrobeMediaPlayback = new StrobeMediaPlayback();
         var ui:UIComponent = new UIComponent();
        var parameters:Object = {
         src:HTTP,
         controlBarMode:"floating",
         controlBarAutoHide:"true"
        playerInstance.initialize(parameters, systemManager.stage, systemManager.loaderInfo, null);
        ui.addChild(playerInstance as DisplayObject);
        addChild(ui);
      ]]>
    </fx:Script>
    </s:Application>

  • How use component Flash with Flash Builder 4.7

    Hello,
    Since some days, I work with Flash CC and Flash Builder 4.7 (Creative Cloud)
    I don't find solution to use ComboBox classes in Flash Builder 4.7
    Before,  i created a swc with FlashCS6
    with the component ComboBox in the library.
    In Flash Builder 4.6, i referenced my swc,
    and i wrote :
    import fl.controls.ComboBox;
    import data.DataProvider;
    and it worked fine.
    How can i do?
    Thanks for your response.

    You can download Flash Builder at http://prodesigntools.com/adobe-cs6-direct-download-links.html.  Please make sure to complete the Very Important Instructions section prior to clicking on the download link.

Maybe you are looking for

  • App won't update...Software updates says "

    I have been trying to update my 1Password through Software Updates but I keep getting this window thatr says, "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled." And

  • Hi, can any body solve my issue

    Hi friends, When we create sales order, as we know using backword scheduling first system checks stock. If stock doesnt exist, forward sceduling is carried out to find out the next material availability date & Delivery date. Could somebody explain in

  • INdesign Cs4 java script

    hello all scripters: can any body help me to develope a script in javascript/apple script i want search a paragraph style and a character style in indesign page with page num i tried by this.. script.. any body give me this script in apple m not good

  • Service PO accounting document UOM

    Hi all, In my client, he procures some external resources and supplys the man power to the customer. Here for procurement of these services, we are using external service functionality. After the acceptence of the service entry sheet, an accounting d

  • Clarifications on ABAP proxy

    Hi,   I've been reading up on Abap proxy and I wanna confirm my understanding.   1) Abap Proxy is for abap applications to communication with XI   2) The abap proxy is to be generated at the R/3 backend.   3) When you enter transaction SPROXY in R/3,