Advanced Action works 2 times and stops working

Hi Everyone,
I'm creating a Captivate 4 (4.0.1 Build 1658) presentation of a simple LAN setup with 2 hosts.  I have a caption showing setup parameters for the hosts (IP and Hostname) and a dropdown box allowing for selection of which host to configure parameters in the upper right (screenshot below).
My advanced action executes when the submit button next to the IP field is clicked (Host Name will be next once I figure this little issue out). It checks which host is selected in the dropdown widget and assigns the IP address (HostIP) to the respective host.
As the subject states, this works 2 times and then stops working.  Here is the code:
Check If ( HostSelection is equal to Host 1 )
     begin
          Host1IP := HostIP
          rdcmndGotoFrame := 20
     end
Or Else
     begin
          Host2IP := HostIP
          rdcmndGotoFrame := 30
end
The rdcmndGotoFrame assignment seems to be the only way I can reliably pause the presentation after the button is clicked.  Not sure if this is contributing to the problem or not.
I've done this type of thing before but I can't figure out why this isn't working.  Any help would be greatly appreciated.

Hello,
To keep the playhead from moving on, use the expression:
rdcmndGotoFrame = rdinfoCurrentFrame -1
Sometimes the -1 is not necessary, you will have to check yourself. I do not know why you choose the absolute frame numbers to go to. And I do not really catch the issue for the rest.
Lilybiri

Similar Messages

  • If I have manually set "Start Time" and "Stop Time" for songs, and my hard drive is backed up in Time Machine, when files/songs are transferred on new hard drive, will my "Start Time" "Stop Time" options be there?

    My Macbook Pro will be going in for reimaging and my hard drive will be wiped, I want to know if all my iTunes preferences will be copied if I have backed them up on Time Machine. Specifically, if I have set certain "Start Time" and "Stop Time" for my songs, and I copy my iTunes library, will these "Start Time" and "Stop Time" options remain or will I have to manually set them one by one once again? I need a reply ASAP! Thanks so much!

    As far as I'm aware the start & stop times are stored in the library database, not the media files. If you backup/restore/transfer the whole library then the settings are included. If you create a complete copy of your iTunes folder on another drive you can connect to that copy by holding down option/alt as you start iTunes so you can check that everything is working properly before you send the Macbook away.
    tt2

  • Why cant i send images over email ? it worked fine three times and stopped

    i have sent an image to myself as a test from microsoft pictures as an attachment three times and then it stopped

    try turing off imessage in settings login through the app then wait (for say 20 min) connected to wifi so that apple severs can verify and fully activate imessage if this dosent work please reply.

  • Loop swf 3 times and stop

    I was sure that something would be posted here on writing
    action script to make a flash banner loop only 3 times since this
    is a fairly common standard for web banner advertising. I've been
    unable to find this help or to make it work on my own.
    My fla file has 85 frames. I tried adding this action script
    to the 85th frame, but it doesn't seem like the var increases just
    upon reaching frame 85. It's increasing multiple times in it's
    first run from frame 0 to 85. I thought it wouldn't increase until
    it went back to 1 and reached 85 again.
    Cannot seem to get ATTACH CODE to go between paragraphs. This
    is my last paragraph to read after code:
    There must be an easier was to achieve this, but having spent
    2 hours on it and searching online, I cannot figure it out. Do you
    know? Oh, I should probably mention that I started out with this
    Action Script at Frame 1 and that didn't seem to work either.
    Thanks in advance,
    Kristi

    windowswarrior,
    > Working in Flash CS2 so I'm pretty sure it's AS3.
    However,
    > your suggestion doesn't work. It just keeps looping.
    Flash CS3 is the first in the Flash family to include a "CS"
    in the
    name, so you're either working with Flash CS3 (the first to
    support
    ActionScript 3.0) or ... maybe Flash 8? If the letter, then
    you'll have to
    use ActionScript 2.0 or lower. But now that I'm looking at
    this code again,
    the ActionScript 2.0 and 3.0 versions are so similar, it
    really doesn't
    matter in this case.
    Let's assume ActionScript 3.0, and we'll take it step by
    step.
    Bear with me and start a new FLA file, because if we start
    from scratch,
    it's a lot more likely we'll catch what's going wrong where.
    1) Select File > New and choose Flash File (ActionScript
    3.0).
    2) Select frame 1 of the main timeline, open your Actions
    panel, and type
    this:
    var loop:int = 0;
    So far, we're doing nothing more than creating a variable
    (happens to be
    an integer) in frame 1 and setting it to 0. (Previous code
    showed :Number
    instead of :int, and honestly, either one will do. Because
    this number is
    only going to be an integer, :int is technically the better
    choice.)
    3) Add a keyframe to frame 10. Enter the following
    ActionScript in frame
    10:
    loop = loop + 1;
    trace(loop);
    if (loop < 3) {
    this.gotoAndPlay(2);
    } else {
    this.stop();
    At this point, the variable, loop, is incremented by 1. The
    first time
    this happens, its value becomes 1 (because 0 + 1 is, of
    course, 1). Next, a
    trace() function traces the value of loop to the Output
    panel. You'll see
    "1", without quotes, appear in the Output panel when the
    playhead enters
    this frame.
    Next, an if() statement compares the value of loop (which is
    currently
    1) to the number 3. If it's less than 3 -- at this point, it
    is -- the
    playhead is sent back to frame 2. Otherwise, it stops.
    4) Test your movie. In short order, you should see the
    numbers 1, 2, and 3
    appear in the Output panel. After that, nothing else --
    because the
    playhead has stopped at frame 10 and no longer loops.
    Let me know if that happens for you.
    David Stiller
    Contributor, How to Cheat in Adobe Flash CS3
    http://tinyurl.com/2cp6na
    "Luck is the residue of good design."

  • Is there an advanced action that will open and close the TOC?

    I like that in CP5, Adobe has allowed users to change the icon associated with opening and closing a layered Table of Contents.  With that said, unfortunately, they show up so small, I can't see what I created.  So, I was wondering, is there an advanced action or action script that I could assign to a button that will allow my users to open/close the TOC?
    Thoughts?
    Eric

    The code that zcarr posted works fine for me. I have been using it for a long time: http://www.cpguru.com/2010/01/14/tutorial-open-close-the-adobe-captivate-toc-from-your-own -button/
    However - it depends on where you use the code. If you use it in an SWF embedded/inserted into your Captivate project then it will work. If you use the code from a Flash shell that loads a Captivate SWF then it wouldn't work since the paths to the functions would be all wrong. The same goes if you use it in a play bar since again the paths would be wrong. The code is still valid though so all that would need to be changed would be the paths to the functions.
    Also the posted code and my link is AS2 code so it wouldn't work in Captivate 5. I'm sure that the above code could be convereted to AS3 but it would require a little "hack" in order to get to the right level of the Captivate SWF so the paths would work. It would probably be easier to build a small widget that would accomplish this if it's for AS3 projects.
    /Michael
    Visit my Captivate blog with tips & tricks, tutorials and Widgets.

  • IPhoto won't start... Icon bounces a few times and stops

    Hey Guys,
    I'm using iPhoto now for a long time, but a few weeks ago it simply stopped working... My iPhoto Version: 9.5.1 on Mavericks 10.9.1
    When I double-click the icon it bounces a few times and then disappears again. I tried already many different solutions like repairing disk permissions or deleting the plist-files, rebuilding the iPhoto library doesn't work because the app won't start...
    Can anybody help me?
    Thank you already now for helping me
    Macbook Pro Late 2011
    Mac OS X 10.9.1 Mavericks

    I found the solution by myself after long time using google...
    Mac Console said the following:
    "Dyld Error Message:
      Library not loaded: /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
      Referenced from: /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
      Reason: image not found"
    Here I found the solution for all who need it:
    http://www.sanebutdifferent.com/iphoto-11-nyxaudioanalysis-crash-error
    Simply downloading a new NyxAudioAnalysis.framework and replacing/copying it to the location shown by Console solved everything!
    Good Luck!

  • Perform action when Tomcat start and stop

    Hi. I'd read a thread about performing an action when Tomcat starts with configuring the web.xml file. I just wonder whether it's probable or not to perform an action when the Tomcat is stop. I mean like when the Tomcat is called to stop it'll run a class or call a servlet first before it's finally shut down. Is it possible to do that???
    Thanx!

    It should by possible with a Listener. You can see the use within the server.xml with the ServletLifecycleListener.
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    Look into the LifecycleListener Interface from the source and the implementations. I see some samples with mBeans using this interface.
    Examples:
    http://rollerweblogger.org/page/roller/20040625
    I 'have never try it out, but it should work like described!
    regards Dietmar

  • IPhoto6 won't start up after install.  Icon bounces 2-3 times and stops.

    I have a Mac G4 800 MHz iBook with OS 10.3.9. I just bought iLife 06 and installed the entire package. Every iLfe application but i-Photo 6.06 starts up and works.
    When I click on the iPhoto icon in applications, the Icon appears on the tray, bounces 1-3 times, and disappears. I have reinstalled the software, repaired permissions, and rebooted the iBook.
    Machine Model: iBook G4
    CPU Type: PowerPC G4 (3.3)
    Number Of CPUs: 1
    CPU Speed: 800 MHz
    L2 Cache (per CPU): 256 KB
    Memory: 640 MB
    Bus Speed: 133 MHz
    Boot ROM Version: 4.7.7f0
    Any suggestions would be appreciated.

    I responded to another person's post as well as yours.
    Here is the iPhoto crash log. I appreciate your interest to help.
    Host Name: Judith-Brattlies-Computer.local
    Date/Time: 2004-05-04 20:33:45 -0400
    OS Version: 10.3.3 (Build 7F44)
    Report Version: 2
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version: 2.0 (3D2)
    PID: 333
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x78000010
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90831510 classlookupMethodAndLoadCache + 0x70
    1 libobjc.A.dylib 0x90831298 objc_msgSend + 0xb8
    2 com.apple.AppKit 0x92e77ac0 -[NSApplication sendAction:to:from:] + 0x6c
    3 com.apple.AppKit 0x92e7e844 -[NSControl sendAction:to:] + 0x60
    4 com.apple.AppKit 0x92eb8abc -[NSCell _sendActionFrom:] + 0x9c
    5 com.apple.AppKit 0x92e58500 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 0x3fc
    6 com.apple.AppKit 0x92ec96cc -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 0x234
    7 com.apple.AppKit 0x92e8e904 -[NSControl mouseDown:] + 0x208
    8 com.apple.AppKit 0x92e02c60 -[NSWindow sendEvent:] + 0x10e4
    9 com.apple.AppKit 0x92df5324 -[NSApplication sendEvent:] + 0xebc
    10 com.apple.iPhoto 0x000be034 0x1000 + 0xbd034
    11 com.apple.AppKit 0x92dfd73c -[NSApplication run] + 0x240
    12 com.apple.AppKit 0x92eb9b80 NSApplicationMain + 0x1d0
    13 com.apple.iPhoto 0x00004ac0 0x1000 + 0x3ac0
    14 com.apple.iPhoto 0x000048f0 0x1000 + 0x38f0
    Thread 1:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x0001ca74 0x1000 + 0x1ba74
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x00082794 0x1000 + 0x81794
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900075c8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007118 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901917c0 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x90195f4c CFRunLoopRunSpecific + 0x148
    4 com.apple.CoreFoundation 0x901ff374 CFRunLoopRun + 0x34
    5 com.apple.DiscRecordingEngine 0x95443320 _BowelsOfDiscRecordingEngine + 0x12dfc
    6 com.apple.DiscRecordingEngine 0x954422cc _BowelsOfDiscRecordingEngine + 0x11da8
    7 com.apple.DiscRecordingEngine 0x9544ff90 _BowelsOfDiscRecordingEngine + 0x1fa6c
    8 com.apple.DiscRecordingEngine 0x95427b80 _DRWorkLoopThread + 0
    9 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.AppKit 0x92dcabe0 -[NSUIHeartBeat _heartBeatThread:] + 0x494
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x000c86bc 0x1000 + 0xc76bc
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x000c8834 0x1000 + 0xc7834
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x90831510 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x24004224 xer: 0x00000003 lr: 0x908314a8 ctr: 0x908311e0
    r0: 0x00000000 r1: 0xbfffe900 r2: 0x78000000 r3: 0x08a9a60b
    r4: 0x90887e48 r5: 0x9086bfd0 r6: 0x08a71f80 r7: 0x08a71f80
    r8: 0x00003368 r9: 0x00000000 r10: 0x00000081 r11: 0x61500000
    r12: 0x00000004 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0xa2de8104 r17: 0xa2de8104 r18: 0xa2de8104 r19: 0xa2de8104
    r20: 0x00000000 r21: 0x90887e48 r22: 0x00000000 r23: 0x08a72c80
    r24: 0xa2de8a20 r25: 0x08a9a60b r26: 0xa2de8a20 r27: 0x9086bfd0
    r28: 0x08a71f80 r29: 0x9086bfd0 r30: 0x08a70610 r31: 0x908314a8
    Binary Images Description:
    0x1000 - 0x11afff com.apple.iPhoto 2.0 (3D2) /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x173d000 - 0x1756fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x178b000 - 0x1790fff com.apple.BookService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x17c0000 - 0x17cdfff com.apple.HomePageService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/HomePageService.NetServic e/Contents/MacOS/HomePageService
    0x437d000 - 0x446cfff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x46ea000 - 0x4955fff ATIRadeon8500GLDriver /System/Library/Extensions/ATIRadeon8500GLDriver.bundle/Contents/MacOS/ATIRadeo n8500GLDriver
    0x4a56000 - 0x4a62fff com.apple.NetSlidesService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x4a7e000 - 0x4a87fff com.apple.PrintsService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x5763000 - 0x576efff com.apple.iokit.SCSITaskLib 1.3.3 /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0x704e000 - 0x7052fff com.apple.framework.iPhoto.FileExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/FileExporter.iPhotoExporter/Contents/ MacOS/FileExporter
    0x7063000 - 0x7069fff com.apple.framework.iPhoto.HTMLExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/HTMLExporter.iPhotoExporter/Contents/ MacOS/HTMLExporter
    0x707a000 - 0x707ffff com.apple.framework.iPhoto.QTExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/QTExporter.iPhotoExporter/Contents/Ma cOS/QTExporter
    0x780c0000 - 0x780c9fff libz.1.1.3.dylib /usr/lib/libz.1.1.3.dylib
    0x81b30000 - 0x81b3bfff com.apple.agl 2.4 (AGL-2.4) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x86a00000 - 0x86a43fff com.apple.NetServices 2 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/NetServices.f ramework/Versions/A/NetServices
    0x8891b000 - 0x8895bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x8b0c0000 - 0x8b70efff com.apple.QuickTimeComponents.component 6.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x8c2d0000 - 0x8c2d1fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x8c390000 - 0x8c3d1fff com.apple.QuickTimeFirewireDV.component 6.5 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFirewireDV
    0x8e990000 - 0x8ea21fff com.apple.QuickTimeMPEG4.component 6.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x90122fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90190000 - 0x9023dfff com.apple.CoreFoundation 6.3.3 (299.3) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90280000 - 0x904f9fff com.apple.CoreServices.CarbonCore 10.3.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90570000 - 0x905defff com.apple.framework.IOKit 1.3.2 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90610000 - 0x90699fff com.apple.CoreServices.OSServices 3.0 (3.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90720000 - 0x90787fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.2 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90910000 - 0x90983fff com.apple.DesktopServices 1.2.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x90b4afff com.apple.Foundation 6.3.4 (500.54) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c10000 - 0x90c1afff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x90c30000 - 0x90c49fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90c60000 - 0x90cc2fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d60000 - 0x90d82fff com.apple.opengl 1.3.2 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90da0000 - 0x90dc0fff com.apple.DirectoryService.Framework 1.6.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e10000 - 0x90e11fff com.apple.ServerControl 10.2.2 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x90e30000 - 0x90e36fff com.apple.ServerPrefs 10.2.3 /System/Library/PrivateFrameworks/ServerPrefs.framework/Versions/A/ServerPrefs
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91040000 - 0x91062fff com.apple.framework.Admin 1.3 /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x91090000 - 0x91091fff com.apple.AFPDefines 2.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x910b0000 - 0x910fffff com.apple.bom 1.2.4 (63) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x911c0000 - 0x911cafff com.apple.framework.machinesettings 1.3 /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
    0x91270000 - 0x91279fff com.apple.IntlPreferences 1.1 /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x912a0000 - 0x912bdfff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91320000 - 0x913defff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91460000 - 0x91473fff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x914a0000 - 0x91509fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91560000 - 0x91619fff com.apple.QD 3.4.63 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91670000 - 0x916a8fff com.apple.AE 1.3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x916e0000 - 0x91773fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917e0000 - 0x917f0fff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91810000 - 0x9182afff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91850000 - 0x91860fff com.apple.ImageCapture 2.1.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91890000 - 0x9189cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x918c0000 - 0x918cdfff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x918f0000 - 0x9193efff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91990000 - 0x9199bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x919c0000 - 0x91a33fff com.apple.NavigationServices 3.3.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91a90000 - 0x91a90fff com.apple.audio.units.AudioUnit 1.3.1 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91ab0000 - 0x91ac4fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91ae0000 - 0x91aebfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b10000 - 0x91b2afff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x91b50000 - 0x91b5ffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x91b80000 - 0x91b93fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91bb0000 - 0x91d44fff com.apple.QuickTime 6.5.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91e10000 - 0x91e7bfff com.apple.HTMLDisplay 1.3 (132) /System/Library/PrivateFrameworks/HTMLDisplay.framework/Versions/A/HTMLDisplay
    0x91f20000 - 0x91f2cfff com.apple.framework.Apple80211 3.3 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x92050000 - 0x92055fff com.apple.SetupAssistant.International 1.3.1 /System/Library/PrivateFrameworks/International.framework/Versions/A/Internatio nal
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x920c0000 - 0x922a7fff com.apple.security 2.2 (164.1) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92430000 - 0x92468fff com.apple.LaunchServices 10.3 (84) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x92650000 - 0x926f3fff libcrypto.0.9.dylib /usr/lib/libcrypto.0.9.dylib
    0x92740000 - 0x92777fff com.apple.CFNetwork 1.2.1 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x927d0000 - 0x92b54fff com.apple.HIToolbox 1.3.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92d30000 - 0x92d80fff com.apple.HIServices 1.4.0 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92dc0000 - 0x932befff com.apple.AppKit 6.3.2 (743.20) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x935d0000 - 0x938a6fff com.apple.CoreGraphics 1.203.12 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939a0000 - 0x939b4fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93b50000 - 0x93bf5fff com.apple.audio.toolbox.AudioToolbox 1.3.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94060000 - 0x94078fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x940c0000 - 0x940c0fff com.apple.DiscRecording 2.1.6 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94180000 - 0x9418ffff com.apple.frameworks.preferencepanes 10.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94610000 - 0x9462afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94a30000 - 0x94af2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x94b20000 - 0x94bacfff com.apple.ink.framework 1.1.1 (55.6) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94bd0000 - 0x94c01fff com.apple.securityinterface 1.0 (36) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x953d0000 - 0x95402fff com.apple.DiscRecordingContent 2.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95420000 - 0x95493fff com.apple.DiscRecordingEngine 2.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95e40000 - 0x95eadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a20000 - 0x96ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96b40000 - 0x96b6efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96bf0000 - 0x96c7ffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96e80000 - 0x96e90fff com.apple.vecLib 3.0.1 (vecLib 3.0.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    Host Name: Judith-Brattlies-Computer.local
    Date/Time: 2004-05-04 20:48:32 -0400
    OS Version: 10.3.3 (Build 7F44)
    Report Version: 2
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version: 2.0 (3D2)
    PID: 388
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x14807b00
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x908311f4 objc_msgSend + 0x14
    1 com.apple.AppKit 0x92de4858 _NSTargetForSendAction + 0x98
    2 com.apple.AppKit 0x92e77a84 -[NSApplication sendAction:to:from:] + 0x30
    3 com.apple.AppKit 0x92e7e844 -[NSControl sendAction:to:] + 0x60
    4 com.apple.AppKit 0x92eb8abc -[NSCell _sendActionFrom:] + 0x9c
    5 com.apple.AppKit 0x92e58500 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 0x3fc
    6 com.apple.AppKit 0x92ec96cc -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 0x234
    7 com.apple.AppKit 0x92e8e904 -[NSControl mouseDown:] + 0x208
    8 com.apple.AppKit 0x92e02c60 -[NSWindow sendEvent:] + 0x10e4
    9 com.apple.AppKit 0x92df5324 -[NSApplication sendEvent:] + 0xebc
    10 com.apple.iPhoto 0x000be034 0x1000 + 0xbd034
    11 com.apple.AppKit 0x92e95ac4 -[NSApplication _modalSession:sendEvent:] + 0x1b8
    12 com.apple.AppKit 0x92eb0894 -[NSApplication _realDoModalLoop:peek:] + 0x138
    13 com.apple.AppKit 0x92f5b5ec -[NSApplication runModalForWindow:] + 0xb0
    14 com.apple.iPhoto 0x0006abd8 0x1000 + 0x69bd8
    15 com.apple.iPhoto 0x00047a28 0x1000 + 0x46a28
    16 com.apple.AppKit 0x92e77ac0 -[NSApplication sendAction:to:from:] + 0x6c
    17 com.apple.AppKit 0x92ead30c -[NSMenu performActionForItemAtIndex:] + 0x188
    18 com.apple.AppKit 0x92ef1c2c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 0x68
    19 com.apple.AppKit 0x92e2ee08 _NSHandleCarbonMenuEvent + 0x174
    20 com.apple.AppKit 0x92dd2d84 _DPSNextEvent + 0x4d0
    21 com.apple.AppKit 0x92de93b0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    22 com.apple.AppKit 0x92dfd718 -[NSApplication run] + 0x21c
    23 com.apple.AppKit 0x92eb9b80 NSApplicationMain + 0x1d0
    24 com.apple.iPhoto 0x00004ac0 0x1000 + 0x3ac0
    25 com.apple.iPhoto 0x000048f0 0x1000 + 0x38f0
    Thread 1:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x000c86bc 0x1000 + 0xc76bc
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x000c8834 0x1000 + 0xc7834
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x0001ca74 0x1000 + 0x1ba74
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x00082794 0x1000 + 0x81794
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x900075c8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007118 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901917c0 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x90195f4c CFRunLoopRunSpecific + 0x148
    4 com.apple.CoreFoundation 0x901ff374 CFRunLoopRun + 0x34
    5 com.apple.DiscRecordingEngine 0x95443320 _BowelsOfDiscRecordingEngine + 0x12dfc
    6 com.apple.DiscRecordingEngine 0x954422cc _BowelsOfDiscRecordingEngine + 0x11da8
    7 com.apple.DiscRecordingEngine 0x9544ff90 _BowelsOfDiscRecordingEngine + 0x1fa6c
    8 com.apple.DiscRecordingEngine 0x95427b80 _DRWorkLoopThread + 0
    9 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.AppKit 0x92dcabe0 -[NSUIHeartBeat _heartBeatThread:] + 0x494
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x908311f4 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x44044224 xer: 0x20000004 lr: 0x92de4858 ctr: 0x908311e0
    r0: 0x92de4858 r1: 0xbfffd590 r2: 0x04d8b17f r3: 0x04dddd80
    r4: 0x9088cf18 r5: 0x9089f718 r6: 0x0042ad80 r7: 0x04f37800
    r8: 0x000042c8 r9: 0x02648083 r10: 0x00000081 r11: 0xa2dc1f8c
    r12: 0x14807b00 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0xa2de8104 r17: 0xa2de8104 r18: 0x00000001 r19: 0xa2de8104
    r20: 0x0042ad80 r21: 0x00000000 r22: 0xa2de8104 r23: 0x9086bfd0
    r24: 0x00000000 r25: 0x04f37800 r26: 0x04f37800 r27: 0x9086bfd0
    r28: 0x04f37800 r29: 0xa2def450 r30: 0x04dddd80 r31: 0x92de47cc
    Binary Images Description:
    0x1000 - 0x11afff com.apple.iPhoto 2.0 (3D2) /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x173d000 - 0x1756fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x17ec000 - 0x17f1fff com.apple.BookService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x4383000 - 0x4472fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x46f0000 - 0x495bfff ATIRadeon8500GLDriver /System/Library/Extensions/ATIRadeon8500GLDriver.bundle/Contents/MacOS/ATIRadeo n8500GLDriver
    0x4a86000 - 0x4a93fff com.apple.HomePageService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/HomePageService.NetServic e/Contents/MacOS/HomePageService
    0x4ab7000 - 0x4ac3fff com.apple.NetSlidesService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x4adf000 - 0x4ae8fff com.apple.PrintsService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x4c73000 - 0x4c77fff com.apple.framework.iPhoto.FileExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/FileExporter.iPhotoExporter/Contents/ MacOS/FileExporter
    0x575e000 - 0x5769fff com.apple.iokit.SCSITaskLib 1.3.3 /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0x700a000 - 0x7010fff com.apple.framework.iPhoto.HTMLExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/HTMLExporter.iPhotoExporter/Contents/ MacOS/HTMLExporter
    0x7021000 - 0x7026fff com.apple.framework.iPhoto.QTExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/QTExporter.iPhotoExporter/Contents/Ma cOS/QTExporter
    0x780c0000 - 0x780c9fff libz.1.1.3.dylib /usr/lib/libz.1.1.3.dylib
    0x81b30000 - 0x81b3bfff com.apple.agl 2.4 (AGL-2.4) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x86a00000 - 0x86a43fff com.apple.NetServices 2 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/NetServices.f ramework/Versions/A/NetServices
    0x8891b000 - 0x8895bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x8b0c0000 - 0x8b70efff com.apple.QuickTimeComponents.component 6.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x8c2d0000 - 0x8c2d1fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x8c390000 - 0x8c3d1fff com.apple.QuickTimeFirewireDV.component 6.5 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFirewireDV
    0x8e990000 - 0x8ea21fff com.apple.QuickTimeMPEG4.component 6.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x90122fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90190000 - 0x9023dfff com.apple.CoreFoundation 6.3.3 (299.3) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90280000 - 0x904f9fff com.apple.CoreServices.CarbonCore 10.3.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90570000 - 0x905defff com.apple.framework.IOKit 1.3.2 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90610000 - 0x90699fff com.apple.CoreServices.OSServices 3.0 (3.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90720000 - 0x90787fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.2 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90910000 - 0x90983fff com.apple.DesktopServices 1.2.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x90b4afff com.apple.Foundation 6.3.4 (500.54) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c10000 - 0x90c1afff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x90c30000 - 0x90c49fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90c60000 - 0x90cc2fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d60000 - 0x90d82fff com.apple.opengl 1.3.2 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90da0000 - 0x90dc0fff com.apple.DirectoryService.Framework 1.6.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e10000 - 0x90e11fff com.apple.ServerControl 10.2.2 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x90e30000 - 0x90e36fff com.apple.ServerPrefs 10.2.3 /System/Library/PrivateFrameworks/ServerPrefs.framework/Versions/A/ServerPrefs
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91040000 - 0x91062fff com.apple.framework.Admin 1.3 /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x91090000 - 0x91091fff com.apple.AFPDefines 2.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x910b0000 - 0x910fffff com.apple.bom 1.2.4 (63) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x911c0000 - 0x911cafff com.apple.framework.machinesettings 1.3 /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
    0x91270000 - 0x91279fff com.apple.IntlPreferences 1.1 /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x912a0000 - 0x912bdfff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91320000 - 0x913defff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91460000 - 0x91473fff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x914a0000 - 0x91509fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91560000 - 0x91619fff com.apple.QD 3.4.63 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91670000 - 0x916a8fff com.apple.AE 1.3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x916e0000 - 0x91773fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917e0000 - 0x917f0fff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91810000 - 0x9182afff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91850000 - 0x91860fff com.apple.ImageCapture 2.1.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91890000 - 0x9189cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x918c0000 - 0x918cdfff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x918f0000 - 0x9193efff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91990000 - 0x9199bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x919c0000 - 0x91a33fff com.apple.NavigationServices 3.3.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91a90000 - 0x91a90fff com.apple.audio.units.AudioUnit 1.3.1 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91ab0000 - 0x91ac4fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91ae0000 - 0x91aebfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b10000 - 0x91b2afff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x91b50000 - 0x91b5ffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x91b80000 - 0x91b93fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91bb0000 - 0x91d44fff com.apple.QuickTime 6.5.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91e10000 - 0x91e7bfff com.apple.HTMLDisplay 1.3 (132) /System/Library/PrivateFrameworks/HTMLDisplay.framework/Versions/A/HTMLDisplay
    0x91f20000 - 0x91f2cfff com.apple.framework.Apple80211 3.3 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x92050000 - 0x92055fff com.apple.SetupAssistant.International 1.3.1 /System/Library/PrivateFrameworks/International.framework/Versions/A/Internatio nal
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x920c0000 - 0x922a7fff com.apple.security 2.2 (164.1) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92430000 - 0x92468fff com.apple.LaunchServices 10.3 (84) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x92650000 - 0x926f3fff libcrypto.0.9.dylib /usr/lib/libcrypto.0.9.dylib
    0x92740000 - 0x92777fff com.apple.CFNetwork 1.2.1 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x927d0000 - 0x92b54fff com.apple.HIToolbox 1.3.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92d30000 - 0x92d80fff com.apple.HIServices 1.4.0 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92dc0000 - 0x932befff com.apple.AppKit 6.3.2 (743.20) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x935d0000 - 0x938a6fff com.apple.CoreGraphics 1.203.12 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939a0000 - 0x939b4fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93b50000 - 0x93bf5fff com.apple.audio.toolbox.AudioToolbox 1.3.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94060000 - 0x94078fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x940c0000 - 0x940c0fff com.apple.DiscRecording 2.1.6 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94180000 - 0x9418ffff com.apple.frameworks.preferencepanes 10.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94610000 - 0x9462afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94a30000 - 0x94af2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x94b20000 - 0x94bacfff com.apple.ink.framework 1.1.1 (55.6) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94bd0000 - 0x94c01fff com.apple.securityinterface 1.0 (36) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x953d0000 - 0x95402fff com.apple.DiscRecordingContent 2.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95420000 - 0x95493fff com.apple.DiscRecordingEngine 2.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95e40000 - 0x95eadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a20000 - 0x96ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96b40000 - 0x96b6efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96bf0000 - 0x96c7ffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96e80000 - 0x96e90fff com.apple.vecLib 3.0.1 (vecLib 3.0.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    Host Name: Judith-Brattlies-Computer.local
    Date/Time: 2004-05-04 20:49:40 -0400
    OS Version: 10.3.3 (Build 7F44)
    Report Version: 2
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version: 2.0 (3D2)
    PID: 394
    Thread: 0
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x9083be80
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x9083be80 objctrap + 0
    1 libobjc.A.dylib 0x9083bdb8 objcerror + 0x50
    2 libobjc.A.dylib 0x9083bd44 _objcerror + 0x40
    3 com.apple.AppKit 0x92de4858 _NSTargetForSendAction + 0x98
    4 com.apple.AppKit 0x92e77a84 -[NSApplication sendAction:to:from:] + 0x30
    5 com.apple.AppKit 0x92e7e844 -[NSControl sendAction:to:] + 0x60
    6 com.apple.AppKit 0x92eb8abc -[NSCell _sendActionFrom:] + 0x9c
    7 com.apple.AppKit 0x92e58500 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 0x3fc
    8 com.apple.AppKit 0x92ec96cc -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 0x234
    9 com.apple.AppKit 0x92e8e904 -[NSControl mouseDown:] + 0x208
    10 com.apple.AppKit 0x92e02c60 -[NSWindow sendEvent:] + 0x10e4
    11 com.apple.AppKit 0x92df5324 -[NSApplication sendEvent:] + 0xebc
    12 com.apple.iPhoto 0x000be034 0x1000 + 0xbd034
    13 com.apple.AppKit 0x92e95ac4 -[NSApplication _modalSession:sendEvent:] + 0x1b8
    14 com.apple.AppKit 0x92eb0894 -[NSApplication _realDoModalLoop:peek:] + 0x138
    15 com.apple.AppKit 0x92f5b5ec -[NSApplication runModalForWindow:] + 0xb0
    16 com.apple.iPhoto 0x0006abd8 0x1000 + 0x69bd8
    17 com.apple.iPhoto 0x00047a28 0x1000 + 0x46a28
    18 com.apple.AppKit 0x92e77ac0 -[NSApplication sendAction:to:from:] + 0x6c
    19 com.apple.AppKit 0x92ead30c -[NSMenu performActionForItemAtIndex:] + 0x188
    20 com.apple.AppKit 0x92ef1c2c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 0x68
    21 com.apple.AppKit 0x92e2ee08 _NSHandleCarbonMenuEvent + 0x174
    22 com.apple.AppKit 0x92dd2d84 _DPSNextEvent + 0x4d0
    23 com.apple.AppKit 0x92de93b0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    24 com.apple.AppKit 0x92dfd718 -[NSApplication run] + 0x21c
    25 com.apple.AppKit 0x92eb9b80 NSApplicationMain + 0x1d0
    26 com.apple.iPhoto 0x00004ac0 0x1000 + 0x3ac0
    27 com.apple.iPhoto 0x000048f0 0x1000 + 0x38f0
    Thread 1:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x000c86bc 0x1000 + 0xc76bc
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x000c8834 0x1000 + 0xc7834
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x0001ca74 0x1000 + 0x1ba74
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.iPhoto 0x00082794 0x1000 + 0x81794
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x900075c8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007118 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901917c0 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x90195f4c CFRunLoopRunSpecific + 0x148
    4 com.apple.CoreFoundation 0x901ff374 CFRunLoopRun + 0x34
    5 com.apple.DiscRecordingEngine 0x95443320 _BowelsOfDiscRecordingEngine + 0x12dfc
    6 com.apple.DiscRecordingEngine 0x954422cc _BowelsOfDiscRecordingEngine + 0x11da8
    7 com.apple.DiscRecordingEngine 0x9544ff90 _BowelsOfDiscRecordingEngine + 0x1fa6c
    8 com.apple.DiscRecordingEngine 0x95427b80 _DRWorkLoopThread + 0
    9 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90012668 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a03180 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.AppKit 0x92dcabe0 -[NSUIHeartBeat _heartBeatThread:] + 0x494
    3 com.apple.Foundation 0x90a3a2c4 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x900247e8 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x9083be80 srr1: 0x0202f030 vrsave: 0x00000000
    cr: 0x44044244 xer: 0x20000004 lr: 0x9083bdb8 ctr: 0x90010900
    r0: 0x9083bdb4 r1: 0xbfffc4e0 r2: 0x00000008 r3: 0x0000008f
    r4: 0x00000000 r5: 0x0000008f r6: 0x00000000 r7: 0x00000000
    r8: 0x00000000 r9: 0xa0008e82 r10: 0x00000016 r11: 0xa000416c
    r12: 0x90010900 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0xa2de8104 r17: 0xa2de8104 r18: 0x00000001 r19: 0xa2de8104
    r20: 0x0042ad80 r21: 0x00000000 r22: 0xa2de8104 r23: 0x9086bfd0
    r24: 0x00000000 r25: 0x04f3bbc0 r26: 0x04f3bbc0 r27: 0x9083f3b4
    r28: 0x04dd3300 r29: 0x04dd3300 r30: 0x04dd3300 r31: 0x9083bd78
    Binary Images Description:
    0x1000 - 0x11afff com.apple.iPhoto 2.0 (3D2) /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x173d000 - 0x1756fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x17ec000 - 0x17f1fff com.apple.BookService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x4383000 - 0x4472fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x46f0000 - 0x495bfff ATIRadeon8500GLDriver /System/Library/Extensions/ATIRadeon8500GLDriver.bundle/Contents/MacOS/ATIRadeo n8500GLDriver
    0x4a86000 - 0x4a93fff com.apple.HomePageService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/HomePageService.NetServic e/Contents/MacOS/HomePageService
    0x4ab7000 - 0x4ac3fff com.apple.NetSlidesService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x4adf000 - 0x4ae8fff com.apple.PrintsService 2 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x575e000 - 0x5769fff com.apple.iokit.SCSITaskLib 1.3.3 /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0x7007000 - 0x700bfff com.apple.framework.iPhoto.FileExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/FileExporter.iPhotoExporter/Contents/ MacOS/FileExporter
    0x701c000 - 0x7022fff com.apple.framework.iPhoto.HTMLExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/HTMLExporter.iPhotoExporter/Contents/ MacOS/HTMLExporter
    0x7033000 - 0x7038fff com.apple.framework.iPhoto.QTExporter 2.0 (1.5) /Applications/iPhoto.app/Contents/PlugIns/QTExporter.iPhotoExporter/Contents/Ma cOS/QTExporter
    0x780c0000 - 0x780c9fff libz.1.1.3.dylib /usr/lib/libz.1.1.3.dylib
    0x81b30000 - 0x81b3bfff com.apple.agl 2.4 (AGL-2.4) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x86a00000 - 0x86a43fff com.apple.NetServices 2 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/NetServices.f ramework/Versions/A/NetServices
    0x8891b000 - 0x8895bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x8b0c0000 - 0x8b70efff com.apple.QuickTimeComponents.component 6.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x8c2d0000 - 0x8c2d1fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x8c390000 - 0x8c3d1fff com.apple.QuickTimeFirewireDV.component 6.5 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFirewireDV
    0x8e990000 - 0x8ea21fff com.apple.QuickTimeMPEG4.component 6.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x90122fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90190000 - 0x9023dfff com.apple.CoreFoundation 6.3.3 (299.3) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90280000 - 0x904f9fff com.apple.CoreServices.CarbonCore 10.3.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90570000 - 0x905defff com.apple.framework.IOKit 1.3.2 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90610000 - 0x90699fff com.apple.CoreServices.OSServices 3.0 (3.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90720000 - 0x90787fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.2 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90910000 - 0x90983fff com.apple.DesktopServices 1.2.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x90b4afff com.apple.Foundation 6.3.4 (500.54) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c10000 - 0x90c1afff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x90c30000 - 0x90c49fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90c60000 - 0x90cc2fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d60000 - 0x90d82fff com.apple.opengl 1.3.2 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90da0000 - 0x90dc0fff com.apple.DirectoryService.Framework 1.6.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e10000 - 0x90e11fff com.apple.ServerControl 10.2.2 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x90e30000 - 0x90e36fff com.apple.ServerPrefs 10.2.3 /System/Library/PrivateFrameworks/ServerPrefs.framework/Versions/A/ServerPrefs
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91040000 - 0x91062fff com.apple.framework.Admin 1.3 /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x91090000 - 0x91091fff com.apple.AFPDefines 2.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x910b0000 - 0x910fffff com.apple.bom 1.2.4 (63) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x911c0000 - 0x911cafff com.apple.framework.machinesettings 1.3 /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
    0x91270000 - 0x91279fff com.apple.IntlPreferences 1.1 /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x912a0000 - 0x912bdfff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91320000 - 0x913defff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91460000 - 0x91473fff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x914a0000 - 0x91509fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91560000 - 0x91619fff com.apple.QD 3.4.63 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91670000 - 0x916a8fff com.apple.AE 1.3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x916e0000 - 0x91773fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917e0000 - 0x917f0fff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91810000 - 0x9182afff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91850000 - 0x91860fff com.apple.ImageCapture 2.1.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91890000 - 0x9189cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x918c0000 - 0x918cdfff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x918f0000 - 0x9193efff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91990000 - 0x9199bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x919c0000 - 0x91a33fff com.apple.NavigationServices 3.3.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91a90000 - 0x91a90fff com.apple.audio.units.AudioUnit 1.3.1 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91ab0000 - 0x91ac4fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91ae0000 - 0x91aebfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b10000 - 0x91b2afff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x91b50000 - 0x91b5ffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x91b80000 - 0x91b93fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91bb0000 - 0x91d44fff com.apple.QuickTime 6.5.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91e10000 - 0x91e7bfff com.apple.HTMLDisplay 1.3 (132) /System/Library/PrivateFrameworks/HTMLDisplay.framework/Versions/A/HTMLDisplay
    0x91f20000 - 0x91f2cfff com.apple.framework.Apple80211 3.3 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x92050000 - 0x92055fff com.apple.SetupAssistant.International 1.3.1 /System/Library/PrivateFrameworks/International.framework/Versions/A/Internatio nal
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x920c0000 - 0x922a7fff com.apple.security 2.2 (164.1) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92430000 - 0x92468fff com.apple.LaunchServices 10.3 (84) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x92650000 - 0x926f3fff libcrypto.0.9.dylib /usr/lib/libcrypto.0.9.dylib
    0x92740000 - 0x92777fff com.apple.CFNetwork 1.2.1 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x927d0000 - 0x92b54fff com.apple.HIToolbox 1.3.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92d30000 - 0x92d80fff com.apple.HIServices 1.4.0 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92dc0000 - 0x932befff com.apple.AppKit 6.3.2 (743.20) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x935d0000 - 0x938a6fff com.apple.CoreGraphics 1.203.12 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939a0000 - 0x939b4fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93b50000 - 0x93bf5fff com.apple.audio.toolbox.AudioToolbox 1.3.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94060000 - 0x94078fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x940c0000 - 0x940c0fff com.apple.DiscRecording 2.1.6 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94180000 - 0x9418ffff com.apple.frameworks.preferencepanes 10.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94610000 - 0x9462afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94a30000 - 0x94af2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x94b20000 - 0x94bacfff com.apple.ink.framework 1.1.1 (55.6) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94bd0000 - 0x94c01fff com.apple.securityinterface 1.0 (36) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x953d0000 - 0x95402fff com.apple.DiscRecordingContent 2.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95420000 - 0x95493fff com.apple.DiscRecordingEngine 2.1.6 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95e40000 - 0x95eadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a20000 - 0x96ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96b40000 - 0x96b6efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96bf0000 - 0x96c7ffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96e80000 - 0x96e90fff com.apple.vecLib 3.0.1 (vecLib 3.0.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib

  • IPod Shuffle 2nd Gen, blinks 3 times and stops (Only connected to power outlet))

    Its a iPod Shuffle 2nd generation of 1GB. When I connect it to a power outlet via Apple's USB Adapter, it blinks 3 times and then it stops until I reconnect it again (reconnecting leads to the same thing). When I turn it on, it functions normally. I haven't used it in a long time ago, but I connected it a long time to iTunes to pass songs and when I turn it on it'
    When I connect it to iTunes, it's the same, but iTunes recognizes it as a non-problem iPod. It even charges connected to iTunes (but it only blinks 3 times after connecting it and it's over, but keeps connected)
    I think it even charges with iTunes, i can copy songs and everything. But I don't want to be stuck at a computer every time i need to charge

    Hello adrian,
    Thank you for contacting Apple Support Communities.
    The iPod user guide has a section covering the actions of the status lights. See page 8 in the following guide:
    iPod shuffle Features Guide
    http://manuals.info.apple.com/MANUALS/0/MA197/en_US/iPod_shuffle_Features_Guide. pdf
    Regards,
    Jeff D.

  • Add advanced action to submit button and setting different objectives score for the same course

    Hi, i would like to increase a counter in a quiz slide when the user press the submit button, using advanced actions.
    It's like if the submit button is somehow inhibited from certain options, and i cannot find how to add an advanced action to it.
    what i need, is to allow unlimited attempt until the user selects the right answer. each time the user click on submit, a counter increases by one. When user finally select the right answer, we read the counter value and assign a different score, depending on the attempt (for example: 1st attempt=20 points, 2nd attempt=10 points, 3rd attempt=0 points)
    After that, i need to save all score obtained for a certain group of quiz slide separately from the "main score" (i think the main score is stored in cmi.objectives.0.score)  to have partials scores for a course. I examined the "advanced interactions" panel and i noticed that for each quiz slide there is a specific interaction ID and each quiz slide is associated typically to the same Objective ID. What i need is to associate different groups of slides to different Objective ID's.
    In Storyline i was able to do this by passing to the lms a cmi.objectives.n.score (where "n" is the place in the objectives array) and i did it by executing a javascript on success for each question slide. (each javascript added the score of previous slides in the same group to obtain the total score of the group to be passed to lms with a specific function).
    examining captivate scorm functions in the published scormdriver.js i found the following function
    function SCORM_SetObjectiveScore(strObjectiveID,intScore,intMaxScore,intMinScore)
    so i think it can be done the same way in captivate executing javascript in the right way.
    Is there also an easier solution to write different scores to different obectives in the same course?
    many thanks for any help!

    Have a look at:
    Question Question Slides in Captivate - Captivate blog
    Question Question Slides - Part 2 - Captivate blog
    Indeed, Submit button is part of the Question slide, not a normal button. You can add a custom shape button, but it will never replace what happens when the Submit button is clicked: validation of the answer, showing captions, adding to score etc. Making the score depending on the attempt is not possible with default functionality, it is possible with custom question slides, but then the reporting to LMS is another issue. You should try to do it by JS, or if you only need SWF-output you could use the Master widget by InfoSemantics.
    Link score to attempts in Custom questions - Captivate blog
    Lilybiri

  • Can you tell me why we play only one song at a time and stop now???????

    OK....I will try to stop seething and write clearly. DL'd ITunes V8.0 which ran great for about a week. Now when I try to play from Music library it will play the first song then stop. If I try to advance using the forward button it stops playing as well. This only happens in the Music Library. Playlists function as normal. Please tell me this isn't another Apple "Enhancement". Ugh.

    Are the little checkboxes to the left of name ticked? If not iTunes will not advance to the next track as iTunes skips unchecked tracks.
    To check all, press ctrl & click in one of the little boxes or use select all, then right click in the selection and choose check all.
    Usually this affects both the music library and playlists so I am not sure about it.

  • Advance actions work while in Captivate, but not when Published

    Hey,
    So I have a button which is suppose to both send you to the next slide and open up a web page in a new window. While in Captivate (5.5), it works, and wonderfully. However, after I publish it...pushing the button does nothing. Any thoughts as to why?

    Your Grand Kids" graphic is overlapping the left part of the navbar. Reduce the size of that graphic or move it off the navbar.
    OT

  • SAVING ISSUES!!! Firefox won't save passwords, won't ask to save them. I've used this for 2 years +. I know where the settings are. New comp, Windows 7, Ffx 4. Prompted to save the password 5 times and stopped

    The settings are all correct. New machine. Only has the operating system and Firefox. No conflicting programs. It did 5 then stopped. Nothing has been added or changed since downloading FF.

    Same issue here. I am '''NOT '''running in Private Browsing mode.
    This may be an issue related to other add-ons, or not. I tried the remember-password bookmarklet with one site and it Worked! But when I looked in the saved passwords, the new userid and password were not there. I waited a few minutes and looked again, and mysteriously, it was there. Perhaps a caching issue. Exceptions box is empty.
    I think this in an important issue that must be tracked and not assumed is always an operator-error.

  • Powe Mac G5 early 2004 gives error (no memory installed) Do I need to replace the Logic Board. Machine powers up,2beeps and power lights blinks 2 times and stops there, No video or any thing?

    I just recently aquired a Power Mac G5 early 2004.
    When I power the system up. I get 2 beeps
    and the small front panel light blinks 2 times continuously.
    The error codes show that it means a memory problem or
    no memory present. Memory is installed.
    In this case do I need to replace the mother board.
    The system goes no futher, no video or any thing.

    Well, it's possible that someone pulled the original RAM from the computer before they sold it, and repalced it with incompatible RAM. That, believe it of not, would be the best of all world in this case, as a working G5 logic board and its installation could cost as much as a refurbed Intel mac.
    I would contact the seller if you did not personally see the computer working before you bought it.
    As the computer had to be moved about--possibly shipped--to change hands, first check that all internal cards and RAM Modules are fully seated. They can work loose in some models.

  • Script runs a few times and stops running without errors

    Hello.
    I'm developing a management pack from VSAE to monitor RLM license services. I have been able to successfully discover the classes I have created.
    I'm trying to write a script performance collection rule to measure the available licenses of every instance of RLM_License class. This is what the Data Source looks like:
    <?xml version="1.0" encoding="utf-8"?>
    <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:noNamespaceSchemaLocation="C:\Users\jnegroadmin\AppData\Local\Temp\tmp5445.tmp">
    <IntervalSeconds>60</IntervalSeconds>
    <SyncTime />
    <ScriptName>RulesPerformanceRLMLicenseAvailable.vbs</ScriptName>
    <Arguments>"$Target/Host/Host/Property[Type='UTAD.RLM.RLMService']/UtilPath$" "$Target/Host/Property[Type='UTAD.RLM.RLMLicenseFile']/FilePath$" "$Target/Property[Type='UTAD.RLM.RLMLicense']/ProductName$"</Arguments>
    <ScriptBody>$IncludeFileContent/Health Model/RulesPerformanceRLMLicenseAvailable.vbs$</ScriptBody>
    <TimeoutSeconds>20</TimeoutSeconds>
    <ObjectName>RLM License</ObjectName>
    <CounterName>Available Licenses</CounterName>
    <InstanceName>$Target/Property[Type="UTAD.RLM.RLMLicense"]/ProductName$</InstanceName>
    <Value>$Data/Property[@Name='Value']$</Value>
    </Configuration>
    and this is the script:
    Set oAPI = CreateObject("MOM.ScriptAPI")
    'Call oAPI.LogScriptEvent(WScript.ScriptName,951,0,"Script was launched successfully")
    sUtilPath = WScript.Arguments(0)
    sFilePath = WScript.Arguments(1)
    sProduct = WScript.Arguments(2)
    Call oAPI.LogScriptEvent(WScript.ScriptName,951,0,sUtilPath + " " + sFilePath + " " + sProduct)
    dim array,count
    sCommandPath = sUtilPath & " rlmstat -c """ & sFilePath & """ -avail -p " & sProduct
    Set objShell = wscript.createobject("wscript.shell")
    Set oExec = objShell.Exec(sCommandPath)
    count = -1
    Do
    line = OExec.StdOut.ReadLine()
    if InStr(1, line, "available") > 0 then
    array = Split(line,":")
    count = Mid(array(1),2)
    End If
    Loop While Not OExec.Stdout.atEndOfStream
    'Call oAPI.LogScriptEvent(WScript.ScriptName,951,0,count)
    Set oBag = oAPI.CreatePropertyBag()
    Call oBag.AddValue("Value",count)
    oAPI.Return(oBag)
    The rule runs a few times on the server, I see the data on the Prrformance Window, and the event logs. But then, I stop receiving event logs and data on the performance rule. I only see event logs for New Configuration and credentials loading.
    I don't know what I'm doing wrong. Other rules from Microsoft MPs are running correctly and gathering data on that server.

    Please refer to the below blog for the best practice when we create MP manually.
    http://blogs.technet.com/b/antoni/archive/2013/10/09/system-center-service-manager-operations-manager-management-pack-and-naming-convention-best-practices.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for

  • Prompt in WEBI over BICS doesn't display values without searchin

    Hello, I'm using BI 4.1 SP04 over BW 7.3. Using BICS connection over a query, I'm trying to filter 0PRODH1 (material hierarchy). Tried to put variable inside the BW query for getting a prompt inside the WEBI, but I keep getting multi values (becasue

  • Jax-ws 2.1 - problems returning hashtable and hashmap

    Hi, We're developing a set of applications that communicate via web services. The company decided that to do this we should use jax-ws 2.1. Everything is going ok, its really easy to use, except for a web method that returns a java.util.Hashtable. In

  • [SOLVED]Network/Wireless, after 15mins, locks sudo [..]

    Hello, I have been using Ubuntu for a while and wanted to move to Arch Linux. I did. Got everything set up but have one major problem. Wireless. I have my wireless driver installed through Ndiswrapper and works. Connecting to the router is fine. No p

  • My iphone died after installing iOS 5.

    I was going to update my iphone 4 to iOS 5 at the first day it came out. But something went wrong and my iphone died and now it keeps restarting when i try to turn it on. If someone know what to do i be very gladly

  • N97 Very Unusual Problem.

    I have recently upgraded my N 97 to Firmware version .12 and am desperately waiting for v20. However there is a problem.. if someone already found a solution throw some light on this. Whenever i connect my phone via the ovi suit (PC suit) to the comp