Running Os 9 in its own window

How do i run Os 9 in its own window when running OS 10.3.9?
Specifically i'm trying to run one of my favorite old school games. escape velocity. it only works in os9. my computer doesn't have a enough ram to run the game full screen with out having glitches. i think if i run it in a smaller window it will work but i cant figure that out. its not in the os9 prefs on my computer.
question 2.
Is it possible to restart my g4 in os9 with out having os10 running? thanks
G4   Mac OS X (10.3.9)  

Hi, homeboy.
How do i run Os 9 in its own window when running OS 10.3.9
You don't. You run OS 9-based applications in their own windows, and use their preferences to exercise whatever control they offer, which (depending on the application) may or may not allow you to accomplish what you want to accomplish. All hardware and hardware parameters are controlled by OS X whenever it is running, so OS 9 operating as Classic has no ability to create a lower-resolution "virtual machine" window inside OS X. In this respect Classic mode is very diffferent from, say, using Virtual PC to run Windoze on a Mac.
Booting your Mac in OS 9, if possible, is the solution to your problem. If the machine isn't OS 9-bootable, you're stuck.

Similar Messages

  • How do I make a script "Run as administrator" on its own?

    Hello,
    Win 8.1, VB scripts or PowerShell
    Having discovered I previously failed to fully study UAC, I now understand why scripts transferred to a new Win 8.1 machine quit working.  They have to be 'Run As Administrator' on the new machine; then they work as before.  While I'm still
    a little hazy on UAC, but continuing to study, it seems I'm left with a choice.  Please correct my perception of this choice if it's wrong:
    1) I can change my UAC settings (which I actually prefer not to do - I'm a safety guy...)
    2) I must always run my scripts by right clicking to the context menu and clicking "Run As Administrator"
    3) I learn if there is a way for my script to "Run As Administrator" on its own
    Assuming my choices above are correct, I would like to focus on choice 3.
    I've done some amount of research, but I'm not sure any of the solutions I saw actually accomplish choice 3.  Most of those posts indicate that the individual still had to enter a password or perform some other interaction after the script ran, so I'm
    not sure why the solutions posted were an answer to what was basically the same as my question here.
    Can a script be setup to Run As Administrator without requiring any further user interaction?  I'm wondering if this is actually a self-defeating question, because if a script can be setup as such, then wouldn't it bypass the very purpose
    UAC was put in place, for protection?  Am I thinking incorrectly?
    If it is possible to write the script so it really runs without further interaction, please point me where I might need to study more.
    Thanks.
    Best Regards,
    Alan

    Hi jrv,
    So, I think we've unofficially become friends since you answered my question in .vbs because you know that's where I've been.  I really am trying to transition to .ps1, but thanks for the thought. :-)  I actually did write a test .ps1 using get-vm
    (which is very cool thank you) but wasn't able to execute it other than running a batch file from the context menu selection 'Run As Administrator'.  The following is the operative line I used in the batch file (it doesn't seem like the -Verb runas
    worked as I expected it to):
    powershell -executionpolicy remotesigned -file C:\batchFiles\ps\vmstatus.ps1 -Verb runas
    I am getting a book on Powershell to study.
    But, regarding your line above, I think I applied your guidance correctly.  I created a shortcut with the following line in the target box (I'm assuming this is what you were directing me to do. I also assumed I was supposed to add powershell.exe
    at the beginning of the line you posted above):
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
    start-process cscript C:\batchFiles\vmStatus.vbs -Verb RunAs
    Windows seem to add the full path for powershell.exe automatically.  It runs without requiring the context menu selection "Run As Administrator", but it
    still brings up the UAC message box for permission to continue, which is what I was trying to address in my initial post when I was speaking to the possible self-defeating nature of my question to allow
    a script to bypass UAC.
    I'm asking to confirm: having the UAC popup is in fact normal behavior that can't be side stepped unless other steps are taken.  So I guess I need to continue research to understand
    what must be done to allow simple double-clicking of a shortcut to get a seamless execution without actually changing UAC.
    Regarding STscripter's solution, I experienced the same UAC message box, so this post is also in response to that answer.
    Thanks again for your help.
    Best Regards,
    Alan

  • Moving tabs from one window to another makes the new window vanish. I have hot corners enabled so when I move up to the right corner of my display I can see all my open windows but when I click on the tab that I moved to make it its own window it vanishes

    Moving tabs from one window to another makes the new window vanish. I have hot corners enabled so when I move up to the right corner of my display I can see all my open windows but when I click on the tab that I moved to make it its own window it vanishes

    I came up with an alternative solution.
    Instead of actually trying to move the JInternalFrame from one JDesktopPane to another, I added a single, maximized JInternalFrame to the left side. When one of the right side frames is to be docked, I merely copy its ContentPane to the single JInternalFrame on the left, set the original to be non-visible, and adjust the properties of the JSplitPane to make the "docked" frame appear.
    When the "close" button on the docked frame is pressed, I simply undo this procedure to "undock" the frame and redisplay it on the right-hand side (with its content intact from the docked frame, but in its original position).

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • How to open an swf in its own window outside flash using button

    how do I open an swf in its own window outside the flash using button?

    Hi,
    Try this code:
    import mx.containers.Window;
    var my_button:mx.controls.Button;
    var buttonListener:Object = new Object();
    buttonListener.click = function(evt_obj:Object) {
    var my_win:MovieClip = mx.managers.PopUpManager.createPopUp(evt_obj.target, Window, true, {title:"Sample Image", contentPath:"uganda_animation_Scene 1.swf"});
    my_win.setSize(320, 240);
    my_button.addEventListener("click", buttonListener);
    You must drag the window default component and place in to the library.
    Saransoft

  • How do I open a folder in its own window?

    All of a sudden my folders will not open in their own windows... Has anyone have this happen? Earlier I was fine then all of a sudden it stopped.

    Cevsinc,
    I don't know if this is what your looking for but here you go.
    To make it so that when you double click a folder it opens in a new window you have to turn off or hide the toolbar. To do so:
    Open a Finder window > Select "View" from the menubar > select "Hide Toolbar"
    Keyboard shortcut to do the same as above is ( Command ) (  Option ) ( T )
    Now every folder you double click on will open in a new window.
    It should remember that you elected to not have the Toolbar show and every time you open a new window it will be the same.
    To change back Do the same except instead of "Hide Toolbar" it will say "Show Toolbar"
    Hope that helps,
    Weston

  • Applet loading through browser, but showing in its own window

    Hello,
    I have created an applet, which talks to a servlet.
    This servlet then talks to a DB, and returns information to the applet to process and display.
    Everything works fine, except that the applet loads it's own window, instead of displaying in the browser.
    Any ideas?
    Haig

    The answer is probably somewhere in your applet source code.
    Can you post the code here, so I can have a look at it? Otherwise it's difficult to answer.
    BTW - it's nothing to do with the fact that it connects to a servlet. If you don't want to post the whole applet, maybe I can tell from just the init() method.
    Also - what browser are you using?
    Yours, Mike H..

  • Safari Crashes when dragging a tab out of Safari and into its own window

    Hi, I'm using Safari 4. Sometimes I have 5-6 tabs tucked away in my Safari Browser. As soon as I click on a tab and drag it out of Safari and into it's own Safari window, safari crashes and I have to reopen it. Please help.

    Here's the Crash Report:
    Process: Safari [10822]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.5 (6531.22.7)
    Build Info: WebBrowser-65312207~1
    Code Type: X86 (Native)
    Parent Process: launchd [88]
    Date/Time: 2010-04-09 21:18:02.327 -0400
    OS Version: Mac OS X 10.6.3 (10D573)
    Report Version: 6
    Interval Since Last Report: 677275 sec
    Crashes Since Last Report: 17
    Per-App Interval Since Last Report: 674543 sec
    Per-App Crashes Since Last Report: 14
    Anonymous UUID: A28BA657-E436-45A4-BE45-6DBBE44F9E13
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000021
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: contentView
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x90577ed7 objc_msgSend + 23
    1 com.apple.Foundation 0x9814d1cb nsnotecallback + 176
    2 com.apple.CoreFoundation 0x963cf3f9 __CFXNotificationPost + 905
    3 com.apple.CoreFoundation 0x963cee2a _CFXNotificationPostNotification + 186
    4 com.apple.Foundation 0x98142098 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    5 com.apple.Foundation 0x9814f475 -[NSNotificationCenter postNotificationName:object:] + 56
    6 com.apple.AppKit 0x912b1154 -[NSView _postFrameChangeNotification] + 193
    7 com.apple.AppKit 0x912ab2ed -[NSView setFrameSize:] + 809
    8 com.apple.AppKit 0x912aad38 -[NSView setFrame:] + 284
    9 com.apple.Safari 0x00015bfd 0x1000 + 84989
    10 com.apple.Safari 0x00015a12 0x1000 + 84498
    11 com.apple.Safari 0x0001e640 0x1000 + 120384
    12 com.apple.Safari 0x0001e505 0x1000 + 120069
    13 com.apple.Safari 0x00032824 0x1000 + 202788
    14 com.apple.Foundation 0x98163add __NSFireDelayedPerform + 537
    15 com.apple.CoreFoundation 0x963b276b __CFRunLoopRun + 8059
    16 com.apple.CoreFoundation 0x963b00f4 CFRunLoopRunSpecific + 452
    17 com.apple.CoreFoundation 0x963aff21 CFRunLoopRunInMode + 97
    18 com.apple.HIToolbox 0x928680fc RunCurrentEventLoopInMode + 392
    19 com.apple.HIToolbox 0x92867eb1 ReceiveNextEventCommon + 354
    20 com.apple.HIToolbox 0x92867d36 BlockUntilNextEventMatchingListInMode + 81
    21 com.apple.AppKit 0x912cf135 _DPSNextEvent + 847
    22 com.apple.AppKit 0x912ce976 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    23 com.apple.Safari 0x0000c6c8 0x1000 + 46792
    24 com.apple.AppKit 0x91290bef -[NSApplication run] + 821
    25 com.apple.AppKit 0x91288c85 NSApplicationMain + 574
    26 com.apple.Safari 0x00002bad 0x1000 + 7085
    Thread 1: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x94fdd262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x94fdcf1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x94fdebb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x98a3f3e6 ***::TCMalloc_PageHeap::scavengerThread() + 614
    Thread 2: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x94fd5b42 kevent + 10
    1 libSystem.B.dylib 0x94fd625c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x94fd5719 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x94fd54be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x94fd4f41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x94fd4d86 start_wqthread + 30
    Thread 3: WebCore: IconDatabase
    0 libSystem.B.dylib 0x94fdd262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x94fdcf1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x94fdebb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.WebCore 0x956b940a WebCore::IconDatabase::syncThreadMainLoop() + 266
    4 com.apple.WebCore 0x956b52d4 WebCore::IconDatabase::iconDatabaseSyncThread() + 180
    5 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    6 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x94fdd262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x94fdcf1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x94fdebb8 pthreadcondwait$UNIX2003 + 73
    3 libcooliris.dylib 0x16ebaa80 CoolirisSafariInitialize + 49184
    4 libcooliris.dylib 0x16c90769 CoolirisIsPrivilegedURL + 378695
    5 libcooliris.dylib 0x16d6e9b0 CoolirisIsPrivilegedURL + 1288590
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x94faf2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x94fafa67 mach_msg + 68
    2 com.apple.CoreFoundation 0x963b100f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x963b00f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x963b6034 CFRunLoopRun + 84
    5 libcooliris.dylib 0x16e2f908 CoolirisIsPrivilegedURL + 2078950
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 6: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x94faf2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x94fafa67 mach_msg + 68
    2 com.apple.CoreFoundation 0x963b100f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x963b00f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x963aff21 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x00025939 0x1000 + 149817
    6 com.apple.Safari 0x000255ec 0x1000 + 148972
    7 com.apple.Safari 0x00025585 0x1000 + 148869
    8 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    9 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x94faf2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x94fafa67 mach_msg + 68
    2 com.apple.CoreFoundation 0x963b100f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x963b00f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x963aff21 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x98186434 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x9814d8dc -[NSThread main] + 45
    7 com.apple.Foundation 0x9814d88c _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    9 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 8: Safari: SnapshotStore
    0 libSystem.B.dylib 0x94fdd262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x94fdcf1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x94fdebb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x98925c01 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 com.apple.Safari 0x0004224d 0x1000 + 266829
    5 com.apple.Safari 0x0004219d 0x1000 + 266653
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x94fce286 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x963f082d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    3 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 10: WebCore: LocalStorage
    0 libSystem.B.dylib 0x94fdd262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x94fdcf1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x94fdebb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x98925c01 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    5 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x94faf2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x94fafa67 mach_msg + 68
    2 ...romedia.Flash Player.plugin 0x24807bc4 FlashPlayer10_0_42_34FlashPlayer + 2207972
    3 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    4 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x245f7ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x94faf2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x94fafa67 mach_msg + 68
    2 com.microsoft.net.coreclr 0x37741452 GetCLRRuntimeHost + 2780370
    3 com.microsoft.net.coreclr 0x37740338 GetCLRRuntimeHost + 2775992
    4 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    5 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x94feaac2 select$DARWIN_EXTSN$NOCANCEL + 10
    1 libSystem.B.dylib 0x9508301f select + 92
    2 com.microsoft.net.coreclr 0x3776ff74 PAL_InitializeCoreCLR + 84468
    3 com.microsoft.net.coreclr 0x37770004 PAL_InitializeCoreCLR + 84612
    4 com.microsoft.net.coreclr 0x377746f7 PAL_InitializeCoreCLR + 102775
    5 com.microsoft.net.coreclr 0x37768037 PAL_InitializeCoreCLR + 51895
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x377707cd PAL_InitializeCoreCLR + 86605
    4 com.microsoft.net.coreclr 0x37775363 PAL_InitializeCoreCLR + 105955
    5 com.microsoft.net.coreclr 0x3776f737 PAL_InitializeCoreCLR + 82359
    6 com.microsoft.net.coreclr 0x3776fc85 PAL_InitializeCoreCLR + 83717
    7 com.microsoft.net.coreclr 0x375e33c7 GetCLRRuntimeHost + 1346631
    8 com.microsoft.net.coreclr 0x37769c54 PAL_InitializeCoreCLR + 59092
    9 com.microsoft.net.coreclr 0x375e31c3 GetCLRRuntimeHost + 1346115
    10 com.microsoft.net.coreclr 0x374e23b4 GetCLRRuntimeHost + 293940
    11 com.microsoft.net.coreclr 0x374e3f4f GetCLRRuntimeHost + 301007
    12 com.microsoft.net.coreclr 0x375f32d5 GetCLRRuntimeHost + 1411925
    13 com.microsoft.net.coreclr 0x375f3393 GetCLRRuntimeHost + 1412115
    14 com.microsoft.net.coreclr 0x37769c54 PAL_InitializeCoreCLR + 59092
    15 com.microsoft.net.coreclr 0x375ec479 GetCLRRuntimeHost + 1383673
    16 com.microsoft.net.coreclr 0x375ec60d GetCLRRuntimeHost + 1384077
    17 com.microsoft.net.coreclr 0x375ec644 GetCLRRuntimeHost + 1384132
    18 com.microsoft.net.coreclr 0x374e428e GetCLRRuntimeHost + 301838
    19 com.microsoft.net.coreclr 0x375e41ee GetCLRRuntimeHost + 1350254
    20 com.microsoft.net.coreclr 0x37768037 PAL_InitializeCoreCLR + 51895
    21 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    22 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 23:
    0 libSystem.B.dylib 0x94faf35a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdcea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9502563c pthreadcondtimedwait + 47
    3 com.microsoft.net.coreclr 0x377707a6 PAL_InitializeCoreCLR + 86566
    4 com.microsoft.net.coreclr 0x37775363 PAL_InitializeCoreCLR + 105955
    5 com.microsoft.net.coreclr 0x3776f737 PAL_InitializeCoreCLR + 82359
    6 com.microsoft.net.coreclr 0x3776fc85 PAL_InitializeCoreCLR + 83717
    7 com.microsoft.net.coreclr 0x375e33c7 GetCLRRuntimeHost + 1346631
    8 com.microsoft.net.coreclr 0x37769c54 PAL_InitializeCoreCLR + 59092
    9 com.microsoft.net.coreclr 0x375e31c3 GetCLRRuntimeHost + 1346115
    10 com.microsoft.net.coreclr 0x373ed63f CoreDllMain + 909999
    11 com.microsoft.net.coreclr 0x375e41ee GetCLRRuntimeHost + 1350254
    12 com.microsoft.net.coreclr 0x37768037 PAL_InitializeCoreCLR + 51895
    13 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    14 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 24:
    0 libSystem.B.dylib 0x95075aca poll$NOCANCEL$UNIX2003 + 10
    1 com.microsoft.net.coreclr 0x3775ff3a PAL_InitializeCoreCLR + 18874
    2 com.microsoft.net.coreclr 0x37768037 PAL_InitializeCoreCLR + 51895
    3 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    4 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 25:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x243b20a3 0x24300000 + 729251
    5 ...romedia.Flash Player.plugin 0x243b496f 0x24300000 + 739695
    6 ...romedia.Flash Player.plugin 0x243b4bdd 0x24300000 + 740317
    7 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    8 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    9 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 26:
    0 libSystem.B.dylib 0x94faf35a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdcea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9502563c pthreadcondtimedwait + 47
    3 ...romedia.Flash Player.plugin 0x245de381 0x24300000 + 3007361
    4 ...romedia.Flash Player.plugin 0x243b2d32 0x24300000 + 732466
    5 ...romedia.Flash Player.plugin 0x243b30fd 0x24300000 + 733437
    6 ...romedia.Flash Player.plugin 0x243b3151 0x24300000 + 733521
    7 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    8 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    9 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 27:
    0 libSystem.B.dylib 0x94faf35a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdcea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9500ba28 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x93151965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x93154997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x93152294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x93151b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x93151a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    9 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 28:
    0 libSystem.B.dylib 0x94fd4bd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x94fd5168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x94fd4d86 start_wqthread + 30
    Thread 29:
    0 libSystem.B.dylib 0x94faf342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdceb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9502542f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x245de44f 0x24300000 + 3007567
    4 ...romedia.Flash Player.plugin 0x243b20a3 0x24300000 + 729251
    5 ...romedia.Flash Player.plugin 0x243b496f 0x24300000 + 739695
    6 ...romedia.Flash Player.plugin 0x243b4bdd 0x24300000 + 740317
    7 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    8 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    9 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 30:
    0 libSystem.B.dylib 0x94faf35a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdcea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9502563c pthreadcondtimedwait + 47
    3 ...romedia.Flash Player.plugin 0x245de381 0x24300000 + 3007361
    4 ...romedia.Flash Player.plugin 0x245d6d16 0x24300000 + 2977046
    5 ...romedia.Flash Player.plugin 0x243b2ce9 0x24300000 + 732393
    6 ...romedia.Flash Player.plugin 0x243b30fd 0x24300000 + 733437
    7 ...romedia.Flash Player.plugin 0x243b3151 0x24300000 + 733521
    8 ...romedia.Flash Player.plugin 0x245de8ff 0x24300000 + 3008767
    9 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    10 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 31:
    0 libSystem.B.dylib 0x94faf35a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94fdcea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9500ba28 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x945aa465 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x945aa1a3 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x945ce3eb TimerThread + 97
    6 libSystem.B.dylib 0x94fdca19 pthreadstart + 345
    7 libSystem.B.dylib 0x94fdc89e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x02b831a0 ebx: 0x1c92c667 ecx: 0x91a639bc edx: 0x00000001
    edi: 0x2e085580 esi: 0x0061b670 ebp: 0xbfffe348 esp: 0xbfffe308
    ss: 0x0000001f efl: 0x00210206 eip: 0x90577ed7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000021
    Binary Images:
    0x1000 - 0x1b5fe7 com.apple.Safari 4.0.5 (6531.22.7) <179BBADD-7C49-EF3C-BD19-E988CCD9AE10> /Applications/Safari.app/Contents/MacOS/Safari
    0x2c6000 - 0x2c6ffc +com.growl.GrowlSafariLoader 1.1.6 (1.1.6) <BF586D9F-39A9-BD06-1C83-6F1E527822CA> /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/MacOS/Grow lSafariLoader
    0x2ef000 - 0x2f0ffb +com.cooliris.safariplugin Cooliris Plugin (1.11) <D819245D-DCC5-E405-2267-197D6CC7D73C> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/Cooliris
    0x77c000 - 0x77effa +Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x7b0000 - 0x7d3fe7 GLRendererFloat ??? (???) <65E1E174-28E0-3FA9-E391-504891B69818> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x7db000 - 0x7ddfff +com.growl.GrowlSafari 1.1.6 (1.1.6) <1E774BDF-5CC5-4876-7C66-380EBFEAF190> /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/PlugIns/Gr owlSafari.bundle/Contents/MacOS/GrowlSafari
    0x2f00000 - 0x2fb5fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x159fd000 - 0x159fdff7 +com.macte.MAPLAddition 1.0 (1) <ABF76487-0B1F-7B23-22D6-B6793B3C31E7> /Users/StuartLawrence/Library/ScriptingAdditions/MAPLAddition.osax/Contents/Mac OS/MAPLAddition
    0x16bfc000 - 0x17110ffb +libcooliris.dylib ??? (???) <3A4DB181-5A1F-BA8E-7D82-FD914C410039> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libcooliris.dyli b
    0x1716a000 - 0x172ddfe7 GLEngine ??? (???) <F0181B85-962E-508D-4912-056D87F8E96E> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1730f000 - 0x176d3fff com.apple.ATIRadeonX2000GLDriver 1.6.10 (6.1.0) <9B57C8E6-B6F7-24F4-0DC8-8CBC61F5306B> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1c5d5000 - 0x1c5d5ff7 com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <C2C8B385-DB44-1D5E-5221-9ED1BA43930B> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x1c5da000 - 0x1c5e1ff7 com.apple.JavaVM 13.1.0 (13.1.0) <2842C4EE-869D-81E6-E771-062F583A1044> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1c5ea000 - 0x1c5ebff7 +com.yourcompany.SnagitSafariScroller 1.0 (1.0) <80031679-4C2D-FC8C-F3EE-4D9B7BB8F8D6> /Library/Internet Plug-Ins/SnagitSafariScroller.webplugin/Contents/MacOS/SnagitSafariScroller
    0x1c92a000 - 0x1c94ffe7 +com.macte.SafariPluginKit.engine ??? (1.3.14) <FD9C1ECE-3793-27E0-C388-99CB8C240166> /Users/StuartLawrence/Library/Plugin Engines/STKEngine.bundle/Contents/MacOS/STKEngine
    0x1d44d000 - 0x1d453ff3 +com.cooliris.webkitplugin ??? (1.0) <768984F4-66A7-8465-4981-18E633148756> /Library/Internet Plug-Ins/CoolirisWebKitPlugin.plugin/Contents/MacOS/CoolirisWebKitPlugin
    0x1d605000 - 0x1d62efe3 com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x23a20000 - 0x23a23ff3 libFontRegistryUI.dylib ??? (???) <B3D8ACFB-708B-E7AB-F1C6-4EFB843544A2> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x23ca1000 - 0x23caffe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x23cbb000 - 0x23cbcff7 ATSHI.dylib ??? (???) <64A12449-AEBF-1AF9-9E15-3788C5E874FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x23d26000 - 0x23d38ff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x24300000 - 0x2493affb +com.macromedia.Flash Player.plugin 10.0.42 (1.0.4f348472) <266780DB-53C4-AAC8-30AF-F69306C5C030> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x25a84000 - 0x25c78ff3 +com.elgato.mpegsupport EyeTV MPEG Support 1.2 (build 51) (1.2) <A284E8AC-F1A5-B7BC-F0FA-0177D2B3A44E> /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x27ff4000 - 0x27ff8ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <D358DC70-CDBE-3232-EE8A-F03B6872E1D5> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x2bb94000 - 0x2bb9affb com.apple.audio.AppleHDAHALPlugIn 1.8.4 (1.8.4fc3) <89AF8F46-15E4-2066-BDDB-05E92C1368D4> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x2de00000 - 0x2df0ffeb libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <CBCAB9D0-A82E-9445-C3A6-B3A51E48E586> /usr/lib/libmecab.1.0.0.dylib
    0x2f314000 - 0x2f33afff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x3730d000 - 0x3783fffb +com.microsoft.net.coreclr 3.0 (3.0.50106.0) <A69AD4E0-8FD8-EC42-A8F6-CB4FB012A75F> /Library/Internet Plug-Ins/Silverlight.plugin/Contents/MacOS/CoreCLR.bundle/Contents/MacOS/corecl r
    0x39cec000 - 0x3a4e7fe5 +com.microsoft.SilverlightPlugin 3.0.50106.0 (3.0.50106.0) <D5701886-56AE-296D-C19B-B8EA95E1F015> /Library/Internet Plug-Ins/Silverlight.plugin/Contents/MacOS/agcore
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <AEC44B68-A209-4093-36B0-7B740361249B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90023000 - 0x90061ff7 com.apple.CoreMedia 0.484.5 (484.5) <35725D22-4549-5568-8E8C-62E0AD0E90F7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x900a6000 - 0x9014fff7 com.apple.CFNetwork 454.9.4 (454.9.4) <2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90150000 - 0x90356feb com.apple.AddressBook.framework 5.0.1 (868) <2CCD7801-F3B8-CED3-D5D7-096AF8DC004D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x903a0000 - 0x903a4ff7 IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x903a7000 - 0x903a7ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x903a8000 - 0x903a8ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x903b4000 - 0x90570ff3 com.apple.ImageIO.framework 3.0.2 (3.0.1) <CB39B067-58B8-70DB-3E40-160604664A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90571000 - 0x90571ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90572000 - 0x9061ffe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x90620000 - 0x90620ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90621000 - 0x9067bfe7 com.apple.CorePDF 1.1 (1.1) <E4608FF6-A27D-7DFC-5620-D86762502AC0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9067c000 - 0x906f5ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x906f6000 - 0x90876feb com.apple.MediaToolbox 0.484.5 (484.5) <6996E5E1-18B6-C734-8335-FE43670C1F9C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x90877000 - 0x90cacff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90cbb000 - 0x910d1ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x910d2000 - 0x911fefff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9120d000 - 0x91218ff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <F914F427-98EA-98BC-923D-47274A90D441> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91220000 - 0x91244ff7 libJPEG.dylib ??? (???) <EDA86712-F49C-760C-BE55-9B899A4A5D1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91245000 - 0x91286ff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <C6E50C7E-EBEE-32AF-FF07-8E325E21A838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91287000 - 0x91b66ff7 com.apple.AppKit 6.6.5 (1038.29) <E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91b67000 - 0x91b9cff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <458E819A-4E3F-333E-28CE-671281B318D3> /usr/lib/libcups.2.dylib
    0x91b9d000 - 0x91c9ffef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x91ca0000 - 0x91d3bff7 com.apple.ApplicationServices.ATS 4.1 (???) <22FCDB9B-B588-D602-3991-26A2E3C51E6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91d3c000 - 0x91d50fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x91d51000 - 0x91dd3ffb SecurityFoundation 36840.0.0 (compatibility 1.0.0) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91e07000 - 0x91e47ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91e48000 - 0x91e83feb libFontRegistry.dylib ??? (???) <F50A60E1-3757-D007-A20D-A5504C17334C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91e84000 - 0x91e88ff7 libGIF.dylib ??? (???) <03880BA1-7A86-0F2B-617A-C66B1D05DD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91e89000 - 0x91e97ff7 com.apple.opengl 1.6.7 (1.6.7) <3C529790-DEE9-AC27-A879-806E4C23323C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91e98000 - 0x91fc6fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91fc7000 - 0x920bbff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x920bc000 - 0x92117ff7 com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9211e000 - 0x9211eff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9211f000 - 0x92161ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92162000 - 0x92169ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9216a000 - 0x92170ff7 libCGXCoreImage.A.dylib 543.33.0 (compatibility 64.0.0) <DD359830-97D4-0CD4-8666-DFE450E8D633> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x92184000 - 0x9218fff7 libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92190000 - 0x921cfff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <A03C5D7E-54CD-D56D-E120-9B35EBC9D8F1> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9235d000 - 0x92385ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x92386000 - 0x9239affb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9239b000 - 0x9244bff3 com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9244c000 - 0x9254dfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9254e000 - 0x92607fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x92608000 - 0x9269afe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9269b000 - 0x9269dff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9269e000 - 0x926ebfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x926ec000 - 0x926fcff3 SyndicationUI ??? (???) <180B4587-8F46-2B89-B009-ABBA82397C2F> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x926fd000 - 0x92740ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92741000 - 0x927afff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x927b0000 - 0x927ccfe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x927cd000 - 0x927feff3 libTrueTypeScaler.dylib ??? (???) <4C189FCA-A210-7255-8F70-38DF9D19F877> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x927ff000 - 0x92832ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92833000 - 0x92b57fef com.apple.HIToolbox 1.6.2 (???) <F5F99E78-5377-DD54-6138-9FC84467F938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92b58000 - 0x92b65ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92be5000 - 0x92c65feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92c66000 - 0x92c6bff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92c6c000 - 0x92e97ff3 com.apple.QuartzComposer 4.1 (156.13) <FE0BF06B-8D32-C712-7CCD-63D8918B8B6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92e98000 - 0x92f46ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f47000 - 0x92f48ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93071000 - 0x93109fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9310a000 - 0x93130fff 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
    0x93131000 - 0x931abfef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <4EFE08C4-6F2B-D7F2-BD2B-3DFF26799B24> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x931ac000 - 0x9320dfe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93239000 - 0x932aaff7 com.apple.AppleVAFramework 4.8.11 (4.8.11) <BDDDFA36-4B53-4B57-B3D4-427DA8226A80> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x932ab000 - 0x932b1fff 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
    0x93369000 - 0x9347fff7 com.apple.PubSub 1.0.4 (65.12.1) <1B79C698-A2A1-6B74-A137-67516ABE088E> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93480000 - 0x93c6f537 com.apple.CoreGraphics 1.543.33 (???) <C57E2964-80AF-6346-6D3E-23AED9D26977> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93c70000 - 0x93c85fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93c86000 - 0x94143ffb com.apple.VideoToolbox 0.484.5 (484.5) <DA9B4FA8-B91C-43AC-1D84-0BFF46BB5BCE> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9414c000 - 0x9423eff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7482933B-4AF6-ED55-AD72-4FBD1E134958> /usr/lib/libcrypto.0.9.8.dylib
    0x9423f000 - 0x94261fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94262000 - 0x942b8ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x943fc000 - 0x94414ff7 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
    0x94415000 - 0x94436fe7 com.apple.opencl 12.1 (12.1) <1BCA4F60-E612-5C1B-EF50-A810D70CDF05> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x944c5000 - 0x94562fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94563000 - 0x94883feb com.apple.CoreServices.CarbonCore 861.6 (861.6) <D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x949e5000 - 0x94a29fe7 com.apple.Metadata 10.6.3 (507.8) <53BB360A-1813-170D-827F-C1863EF15537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94a2a000 - 0x94a2bff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94a2c000 - 0x94a56ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94ac5000 - 0x94ac8ff7 libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94ac9000 - 0x94ae9fe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <03019DD7-993D-AC88-6636-179F92F315C4> /usr/lib/libresolv.9.dylib
    0x94b5e000 - 0x94b5eff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94b5f000 - 0x94bceff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94d95000 - 0x94da7ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <6BB58E90-21FA-C491-F0E4-54B69CCDBBC0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94da8000 - 0x94dafff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94de3000 - 0x94de3ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94de4000 - 0x94dedff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94dee000 - 0x94deeff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94e11000 - 0x94e41ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x94e64000 - 0x94e82ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94ea1000 - 0x94fadff7 libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94fae000 - 0x95153feb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x951b0000 - 0x95208fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95209000 - 0x95241ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95538000 - 0x95538ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95539000 - 0x955effef libFontParser.dylib ??? (???) <FA6B6B8B-1E3C-8EEB-DD0D-6C7482353179> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x955f0000 - 0x95639fe7 libTIFF.dylib ??? (???) <E45B169E-253E-E865-1501-97777D2702F2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9563a000 - 0x956b1ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x956b2000 - 0x95ee5fe7 com.apple.WebCore 6531.22 (6531.22.7) <952A0D34-63F5-F7F7-D6E5-D0AD78002F89> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ee6000 - 0x95ef6ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95ef7000 - 0x95f35ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95f36000 - 0x95f39fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95f3a000 - 0x9600bfe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <0A608513-31AD-D533-8386-10245FD62057> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9600c000 - 0x96373ff7 com.apple.QuartzCore 1.6.1 (227.18) <8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96374000 - 0x964edffb com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x964ee000 - 0x9684cfff com.apple.RawCamera.bundle 3.0.1 (523) <BB20C4C8-ACEE-7B40-C1A0-4BF4EC6B8796> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9689e000 - 0x968acfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x968ad000 - 0x96988fe7 com.apple.DesktopServices 1.5.5 (1.5.5) <ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96a1d000 - 0x96a63ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x96a64000 - 0x96a67ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96a68000 - 0x96a9efff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x96ac9000 - 0x96b0cff7 libGLU.dylib ??? (???) <CE02968E-930D-E63B-7B21-B87205F8B19A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96b49000 - 0x96b8fffb com.apple.CoreMediaIOServices 130.0 (1035) <397101F4-BA80-C8C2-F816-E2FBE5E15D4F> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x96bc9000 - 0x96d00ff7 com.apple.CoreAUC 6.04.00 (6.04.00) <0551FB8D-0894-B40B-B924-4AF51E3648AF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96d4e000 - 0x96d82ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <5FEC74CA-1D3C-B6E3-E046-3970095C44BC> /usr/lib/libssl.0.9.8.dylib
    0x96d83000 - 0x96e67ff7 com.apple.WebKit 6531.22 (6531.22.7) <87C81D6F-77B1-C517-93E6-5DEF214326A7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96e68000 - 0x96e83ff7 libPng.dylib ??? (???) <929FE8EE-277D-F6EB-D672-E6F4CEBF1504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96e84000 - 0x96eeefe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x96f3d000 - 0x9711ffff com.apple.imageKit 2.0.3 (1.0) <56AE34CD-4406-8AA2-DDBF-DBF902BD0E0A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x97120000 - 0x97164ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97165000 - 0x97196ff7 libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97197000 - 0x980e8fe7 com.apple.QuickTimeComponents.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x980e9000 - 0x980f4ff7 com.apple.CrashReporterSupport 10.6.3 (250) <E2835962-67A2-CA10-4016-467175851348> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x980f8000 - 0x98102ffb 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
    0x98137000 - 0x983a7ffb com.apple.Foundation 6.6.2 (751.21) <DA7A173A-4435-ECD6-F4AF-977D722FD2F7> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x983a8000 - 0x9852afe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x9852b000 - 0x98706ff3 libType1Scaler.dylib ??? (???) <13019E13-3A15-928F-3F13-B79BACB0FD13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x98707000 - 0x98709ff7 libRadiance.dylib ??? (???) <9358E1EF-F802-B76E-8E23-2D0695787CFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9870a000 - 0x98731ff7 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
    0x98732000 - 0x9873cfe7 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
    0x9874d000 - 0x98757ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x98758000 - 0x98764ff7 libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x9876d000 - 0x987dbff7 com.apple.ISSupport 1.9.3 (51) <9BB37FBA-E379-8D12-11C6-B9C5C9683D27> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98918000 - 0x9891cff7 libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9891d000 - 0x98abbfeb com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98abc000 - 0x98af9ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <830FED9E-3E24-004C-35D5-2C1273F79734> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x98afa000 - 0x98b4aff7 com.apple.framework.familycontrols 2.0.1 (2010) <50E74916-19A5-F2FC-AB57-76F2C8DDF0A7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98b4b000 - 0x98b9cff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98b9d000 - 0x98c67fef com.apple.CoreServices.OSServices 357 (357) <764872C3-AE30-7F54-494D-4BA3CE4F4DFB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98c9f000 - 0x98d47ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x98d48000 - 0x99041fef com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9904f000 - 0x99050ff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x99051000 - 0x9912eff7 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
    0x9912f000 - 0x99140ff7 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
    0x99157000 - 0x991bbffb 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
    0x991bc000 - 0x991bfff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <69BE578C-A364-A150-35E3-53EE00F56F05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x991e7000 - 0x99329fe3 com.apple.QTKit 7.6.6 (1729) <1EC021FB-AB8F-F8BF-0434-78C0A7B78EB2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x99349000 - 0x99359ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x99439000 - 0x9969bff3 com.apple.security 6.1.1 (37594) <1AC07F75-7E27-9662-21DA-B05DFF047B26> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9969c000 - 0x996a2ff7 com.apple.DisplayServicesFW 2.2.2 (251) <D8BB3A1F-29C7-A957-C781-794CC9550525> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x996a3000 - 0x996cfff7 MetadataLib.dylib 3.0.1 (compatibility 2.2.1) <507C17A5-A411-2CAE-66BA-B4A89E2A55E9> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <A23F9980-5CC8-A44D-6FD6-DBFCBFF4FF28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xc0000000 - 0xc0008fff +com.growl.growlframework 1.1.6 (1.1.6) <09F30FB4-59C8-DA80-8935-407A490D8A3C> /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/PlugIns/Gr owlSafari.bundle/Contents/Frameworks/Growl.framework/Growl
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Model: MacPro4,1, BootROM MP41.0081.B07, 4 processors, Quad-Core Intel Xeon, 2.66 GHz, 8 GB, SMC 1.39f5
    Graphics: ATI Radeon HD 4870, ATI Radeon HD 4870, PCIe, 512 MB
    Memory Module: global_name
    Bluetooth: Version 2.3.1f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: ATI Radeon HD 4870, Display, Slot-1
    Serial ATA Device: HL-DT-ST DVD-RW GH41N
    Serial ATA Device: WDC WD6400AAKS-41H2B0, 596.17 GB
    Serial ATA Device: WDC WD6400AAKS-41H2B0, 596.17 GB
    Serial ATA Device: WDC WD1001FALS-00U9B0, 931.51 GB
    USB Device: EyeTV Hybrid, 0x0fd9, 0x0027, 0xfa200000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9136, 0xfd300000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9137, 0xfd340000
    USB Device: Apple LED Cinema Display, 0x05ac (Apple Inc.), 0x9236, 0xfd343000
    USB Device: Display iSight, 0x05ac (Apple Inc.), 0x8508, 0xfd342000
    USB Device: Display Audio, 0x05ac (Apple Inc.), 0x2912, 0xfd341000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x5a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0x5a110000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    Thanks for the help

  • HP Simple Pass appears to have created its own Windows Log on Password

    HP Pavillion M6 1035 Lap Top
    Windows 7 64-bit
    Hi, I recently bough this computer and reluctantly (cause I knew it would cause a problem) agreed to let HP Simple Pass help me manage my passwords about a month into ownership.
    When I originally set up my computer I did not create any passwords for the log on (no need for me to).  If prompted I just clicked enter.  As far as I remember, before I set up HP Simple Pass, I was not prompted to log on at start up or I just clicked enter and- it loaded straight to my desk top.  I certainly never had to type anything. 
    After using Simple Pass, I am prompted at log on for a password, or to swipe a finger. I've been using the finger swipe just fine but today decided it was a pain and I just want it back the way it was.  That is when I discovered that Windows thinks I have a Log on password.  I have tried any and all passwords I know, including all the ones I entered into Simple Pass. I have tried just hitting enter, "password", you name it and it won't let me on.  I can still gain access with the finger swipe but in the settings for the software it does not show any information about Windows Log On.  (You can for example view other account passwords, just nothing about Windows Log On). 
    I tried accessing it through my device manager and I found where I can disable this, but alas, I need the Windows logon password that Simple Pass [evidently] assigned.
    Can someone please suggest what is going on?  I am sure this will lead to a problem in the future and I am so sick of trying to fix broken computers (hence why I bought a new one).  
    Thank you in advance

    I have only seen this a couple of times and I don't have the answer...
    I do not know how you managed to set up SimplePass without a typed in Windows password.  OK, having said that:  if you have done it, then it's done.
    I would suggest that you get yourself over to AuthenTec, sign up for their forum, and ask this question in the context of the SimplePass (maybe omitting the dislike of the product since it is, after all, their means of being in business).
    Why do this?  Because I don't think it should have happened.  From the few entries I have seen on the AuthenTec forum, Miroslav Buran (at AuthenTec) is knowlegable in his field and may be able to help you straighten this out before it causes problems.
    Be sure to explain that you are using HP SimplePass and let them know the exact version of the SmplePass Software to get the best help.  Tell them your Operating System / bit, too.
    When SimplePass IS used in conjunction with a Windows password (as intended), it works very well as a rule.
    I am sorry your introduction to the tool was rocky and your experience has been less than stellar.
    I would be very interested in hearing how this is resolved.  If I find anything helpful, I will post back to you here.
    Kind Regards,
    Dragon-Fur

  • Keynote 6.0 build order has its own window. WHY?!

    Does anyone agree with me that this is really insane?
    Why can't builds integrate in the new right-hand-side panel?
    Instead, they're forever going to be either in the way of something else, or I've got to make the window narrower and hang it off the side.
    Am I missing something? It seems INSANE!

    Well here's the workaround I used...
    Export Settings
    I set Go to next slide & next build after... both to 0 seconds.
    Slides
    I have no transition effects on the slides, but Start Transition Automatically, 0 s delay. (Not sure if it matters if you have no slide transition though.)
    In order to time my slides with the narration, I added a shape to each page. The shape has no border and no fill, so it's invisible. I set a build on that shape - just used appear & set the timing of that to be after the last real animation on the page, delayed by whatever time needed (by trial & error). So if my animation is a line of text and then the audio continues for 5 seconds after that, I set the delay for my invisible box to 5 or 6 seconds.
    Kinda kludgy, but it worked for me.
    HTH

  • Why won't Firefox open Foxit Reader in its own window?

    When browsing with Frefox, I used to be able to click on a PDF link and have Foxit Reader open the file in a separate (Foxit) window. Now no matter what I do, the PDF opens within Firefox in what I suppose is a Firefox PDF reader.
    How canI make this work the way it used to?

    Could you try the steps in this support article and see whether they solve the problem: [[How to disable the built-in PDF viewer and use another viewer]].

  • Can I embed an aquired image in the front panel or does it have to be in its own window?

    I need to be repeatedly displaying processed images and I know that I can make the image window "float" so that it is always on top and never becomes hidden when I click in the vi's front panel, but it is inconvenient that if I move the vi window or scroll within it, the image window stays where it is. I would like the image display to be a part of the front panel if that is possible, so that both move together.
    Thanks

    This is fairly simple to do.
    I have attached Make IMAQ Child.vi, which is a slightly modified version of one I originally found on the NI website.
    One required input is the filename of the parent VI, which can easily be obtained by using the "Current VI's Path" constant and Strip Path to remove the filename from the path.
    The other required input is the IMAQ window number.
    This will make the IMAQ window a child panel within the specified parent window. It will move with the parent window.
    Bruce
    Bruce Ammons
    Ammons Engineering
    Attachments:
    Make_IMAQ_Child.vi ‏39 KB

  • Is there a way for a running mapping to know its own name?

    Hi guys,
    I am running a mapping, and I need the mapping name as an in parameter for the post mapping. How can I know the mapping name?
    thanks so so so much

    Add a constant to your mapping with the following expression : get_model_name

  • Calling a subpanel, pops up in own window instead of sub panel when there is an error

    Hi all. I am working on my first real LV project for my company, and I am having some problems. The main one right now happens when I am trying to call a subVI into a subpanel. It shows up in the subpanel just fine when the program starts, but when there is an error in the error handler it skips over the invoke method and pops my subVI in its own window. Anyone have an idea on what I am doing wrong? I have included a picture of how I am trying to populate the subpanel.
    Attachments:
    subpanel.jpg ‏59 KB

    robot_mower_guy wrote:
    but when there is an error in the error handler it skips over the invoke method and pops my subVI in its own window.
    I assume you have an error handling case in your state machine.  So if an error happens in your error handler, you will have be passing that error around the shift register.  Yes, that will mean that the invoke node ot insert the VI will not run due  to the error.  You need to handle your error from the error handling state.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Using Preview to view multiple images in their own window

    So I'm using OS Tiger with Preview 3.0.9 and have selected "Open each image in its own window" in the Preview preferences. And this works, at least for the first 20 or so images. Then it automatically starts to open all subsequent images in the last window as little thumbnails that can be clicked on. When using my newer computer with Snow Leopard I am able to open (seemingly) unlimited windows, each showing its own image. However on this older maching, even with the correct preference setting, I can't view more than a few images at a time in their own window. I hate having all of the images grouped in a single window as it makes it very difficult for me to compare things. I have to keep clicking back and forth, back and forth. I want everything to be in its own window and I will choose to hide or have them floating onscreen, etc.
    Is there a limit to how many this version of Preview will show?

    Hi Steve, in 10.4.11 I just dragged 223 jpgs to Preview, all opened on one long page or series of pages.
    I'd get GraphicConverter, all 223 opened in a seperate window, but you can use it's powerful Browse function to preview & open the ones you want...
    http://www.macupdate.com/info.php/id/263

Maybe you are looking for

  • I am getting the following error while installing the data log

    ging Superisory control toolkit the error is "if you have just converted to a new version of labveiw a new version of TAg engine may be required" how do i fix this error is there any upadate for fixing this error . the version i am currently using is

  • Faxing from pc hp7520 photosmart software

    I have an HP Photosmart 7520 all in one.  It will not fax from the pc software.  It will fax fine if i do it manually on the touch screen of the printer.  What am I doing wrong?  It seems simple enough when I am using the software to fill in the blan

  • E-mail Trigerring issue

    Hi Experts,                   For a contract work-flow , Email trigerring was not happeneing .  when a contract moves from 1 phase to other , Email was getting triggered . but suddenly the email is not getting generated . Can any one pls suggest me .

  • Stock transport PO process

    Dear Gurus, I have a very critical issue at my hand.I am breaking my head on this issue  kindly help me in resloving this issue. PO is raised for Qantity 5 by Reciving plant (A) Stock is avilable in Supplying plant (B) 500 ( make to stock ) In MD04 r

  • Passing filter attributes from endeca to OAF

    Hi, We have the following scenario. The user searches for an object in endeca. In order to refine the results list, he/she selects some of the filter attributes from the guided navigation. Assuming that there are links for the items in the results li