Logic Express 7.2.3 Freezes Tested 2 In Computers

Hi,
Thete is a lot of time that I don´t use Logic, but Now I need to do some exercices for my School. Well, I´ve started the program over my iMac Core 2 Duo and I´ve detected the following:
The application crashes when I try to acces to any Item of the file menu; save, load, import, etc.
I´ve installed the program on my PowerBook G4 and the results are the same.
Both machines are updated to 10.4.10 (v001) intel and 10.4.10 ppc.
Need some Idea about this. Thanks.

Hi, Finally I´ve solved the problem...
The cause of my troubles has been the Shape Shifter application. When you change the original icon set or the original mac Os X theme Logic becomes unstable and freezes. Therefore I recommends you don´t use this kind of applications working with logic.
Thanks for all.
iMac 17" Core 2 Duo - PowerBook 12"   Mac OS X (10.4.8)  
iMac 17" Core 2 Duo - PowerBook 12"   Mac OS X (10.4.8)  

Similar Messages

  • My macbook pro keeps freezing in logic express 9

    hi i have a macbook pro 15 in 2.8ghz 8 gigs of ram and a 500g hard drive running at 7200 rpms, i bought the computer for recording, but the issue im having is in logic express 9, ive been having this problem when I am mixing down tracks and out of no where my computer completely freezes and i cant do anything but shut down the computer from the power button, can any one help my please? :-/

    Welcome to Apple Discussions.
    I would recommend posting in the Logic Express forum, I doubt too many people in this forum use it.
    http://discussions.apple.com/forum.jspa?forumID=1218
    Roger

  • Dynamic Logical Expressions in ABAP: IF (lt_cond)...

    is it possible to have a dynamically constructured logical expression?
    I have a condition I need to use in an IF, but I want to avoid hard-coding, so I dynamicallybuild it.
    for a simple example:
    CONCATENATE ITAB-f1
               'EQ'
               varValue
               INTO lt_cond SEPARATED BY SPACE.
    IF (lt_cond).
      WRITE:/ 'Success'.
    ENDIF.
    Is it possible to do this?
    NL

    I am trying to use the macro to check an IF (cond).
    cond is a dynamically constructed condition.
    The bold part of my code way below is my problem area.
    I'm having no trouble getting COND constructed. But I am having trouble between my macro and the processing as my error always tells me I'm calling my macro without 2 actual parameters. Or when I DEFINE my macro with &1 instead of &1 &2, I get 'incorrect logical expression'.
    I've read all the documentation I can find on this, but i still cannot figure out why my macro is not processing.
    Code is lengthy, but if you can, please help.
    I'm anticipating the output to be 'FAILURE' at this point. I just want the condition COND to be processed.
    data: tabfield(20) type c,
          orcheck type I,
          cond type string.
    DATA: BEGIN OF ITAB_NOTIDX OCCURS 0,
          FIELD LIKE ZDOLTARC02-SEARCHFLD,
          VALUE LIKE ZDOLTARC03-VALUE,
          STRUCTURE LIKE ZDOLTARC02-STRUCTURE,
          AOBJ LIKE ZDOLTARC02-A_OBJ,
          END OF ITAB_NOTIDX.
    DATA: BEGIN OF ITAB_AOBJ OCCURS 0,
          AOBJ LIKE ZDOLTARC02-A_OBJ,
          END OF ITAB_AOBJ.
    DATA: ITAB_AOBJF LIKE ITAB_AOBJ.
    DATA: ITAB_NOTIDXF LIKE ITAB_NOTIDX.
    DATA: varAOBJ LIKE ZDOLTARC02-A_OBJ.
    ITAB_NOTIDXF-FIELD = 'LIFNR'.
    ITAB_NOTIDXF-VALUE = '123'.
    ITAB_NOTIDXF-STRUCTURE = 'BKPF'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'LIFNR'.
    ITAB_NOTIDXF-VALUE = 'ABC'.
    ITAB_NOTIDXF-STRUCTURE = 'BKPF'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'LIFNR'.
    ITAB_NOTIDXF-VALUE = '001'.
    ITAB_NOTIDXF-STRUCTURE = 'BKPF'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'SAKNR'.
    ITAB_NOTIDXF-VALUE = '111'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'SAKNR'.
    ITAB_NOTIDXF-VALUE = '222'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'KUNNR'.
    ITAB_NOTIDXF-VALUE = 'CCC'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'KUNNR'.
    ITAB_NOTIDXF-VALUE = 'DDD'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    LOOP AT ITAB_NOTIDX.
      WRITE:/ ITAB_NOTIDX-FIELD, ITAB_NOTIDX-VALUE, ITAB_NOTIDX-STRUCTURE, ITAB_NOTIDX-AOBJ.
    ENDLOOP.
    DATA: VARFIELDNAME LIKE ZDOLTARC02-FIELD.
    CONCATENATE cond
               INTO Cond.
    SORT ITAB_NOTIDX BY AOBJ FIELD.
    varFieldName = Itab_NOTIDX-FIELD.
    ORCHECK = 0.
    ITAB_AOBJF = 'FI_DOCUMNT'.
    APPEND ITAB_AOBJF TO ITAB_AOBJ.
    LOOP AT ITAB_AOBJ.
       MOVE ITAB_AOBJ-AOBJ TO varAOBJ.
       WRITE:/ varAOBJ.
       LOOP AT ITAB_NOTIDX WHERE AOBJ EQ varAOBJ.
               WRITE:/ 'LOOP TEST'.
            IF ITAB_NOTIDX-FIELD EQ varFieldName.
                 WRITE:/ VARFIELDNAME.
                 IF ORCHECK <> 0.
                 CONCATENATE cond
                                'OR'
                                INTO cond SEPARATED BY SPACE.
                 ENDIF.
                 CONCATENATE ITAB_NOTIDX-STRUCTURE
                        ITAB_NOTIDX-FIELD
                        INTO tabfield.
                 CONCATENATE cond
                        tabfield
                        'EQ'
                        '''' ITAB_NOTIDX-value ''''
                        INTO cond SEPARATED BY SPACE.
                 ORCHECK = ORCHECK + 1.
            ELSE.
                MOVE ITAB_NOTIDX-FIELD TO varFieldName.
              WRITE:/ '2', VARFIELDNAME.
                CLEAR TABFIELD.
              ORCHECK = 0.
              CONCATENATE ITAB_NOTIDX-STRUCTURE
                    varFieldName
                    INTO TABFIELD.
                 CONCATENATE cond
                        'AND'
                        TABFIELD
                    'EQ'
                    '''' ITAB_NOTIDX-VALUE ''''
                        INTO cond SEPARATED BY SPACE.
                    ORCHECK = ORCHECK + 1.
            ENDIF.
       ENDLOOP.
    ENDLOOP.
    CONCATENATE COND
                INTO COND.
    write:/ COND. "constructed properly
    <b>DEFINE my_dynamic_check.
    if &1, &2.
      write:/ 'Success'.
    else.
      write:/ 'Failed'.
    endif.
    END-OF-DEFINITION.
    my_dynamic_check (cond).</b>

  • Logic Express 7 crashes before files finish loading + crash report?!!

    Hi I'm a newbie!
    And I'm going crazy here. Hope someone can help me. Was trying to get into a studio to work on this track in 2 days time.
    I'm running LE7(vers 7.1.1) and started a song that had about 3 Garriton Personal Orchestra(GPO) sounds alongside some EXS sounds. It started crashing quite a bit. Screen was freezing, crashed when I tried to play the song etc.
    Now when I try to load the song, Logic starts loading the EXS files then pauses at one particular file(PS-11 wav). It continues to successfully load the GPO files,leaving just the last PS-11 wav to be found but then a notice appears saying 'sample not found' and the whole thing shuts down leaving just the desktop on the screen, even if LE7 was running prior to that. It opens other songs as normal.
    I've checked - Library/Application Support/Logic/Sampler Instruments the exs folder IS in there
    I checked - Library/Application Support/Logic/EXS Factory Samples and the wav file (and all other PS-11 wavs) were not in there. So I found them and put them back(was that correct thing to do?).
    I rebooted .... and still same problem. I've been looking on the forum for others clues but to no joy.
    All this stuff does facinate me but I desperately need to get on with the track.
    Would this crash report help to clarify? Somebody. Please... Help!
    from crash reporter
    Host Name: sdb-powerbook-g4-12
    Date/Time: 2007-11-11 15:12:09.286 +0000
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Logic Express
    Path: /Applications/Logic Express.app/Contents/MacOS/Logic Express
    Parent: WindowServer [58]
    Version: 7.1.1 (7.1.1(886))
    Build Version: 5
    Project Name: LogicExpressUpdate
    Source Version: 1020000
    PID: 200
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 ...estra.MusicDevice.component 0x1278e528 strcpy + 8
    1 ...estra.MusicDevice.component 0x12913ce4 QuerySearchDialog::DoIt(BString&) + 136
    2 ...estra.MusicDevice.component 0x128a36b4 BZone::SetSample(BFileName const&, BFileName const&, BSamplePool*, bool, int, ProgressDialog*, bool, bool, long, bool) + 2196
    3 ...estra.MusicDevice.component 0x128a4620 BZone::PrsSetSample(BChainedList<BPrsVTag>&, unsigned short, BSamplePool*, BFileName&, short, bool, int, ProgressDialog*, bool) + 1480
    4 ...estra.MusicDevice.component 0x12803c28 PrsSetVTagList + 568
    5 ...estra.MusicDevice.component 0x127f2158 yyparse + 2248
    6 ...estra.MusicDevice.component 0x12801060 BParser::ReadPatchFromMemory(void*, int, int, bool) + 1256
    7 ...estra.MusicDevice.component 0x1281b824 BEngine::LoadPatchMem(void*, int) + 432
    8 ...estra.MusicDevice.component 0x128655d8 BEngine::setChunk(NI::GP::MemoryStream&, bool) + 432
    9 ...estra.MusicDevice.component 0x127b0470 NI::AB::InterfaceAU::setChunk(NI::GP::MemoryStream&, bool) + 140
    10 ...estra.MusicDevice.component 0x127afb5c NI::AB::InterfaceAU::RestoreState(void const*) + 208
    11 ...estra.MusicDevice.component 0x1279980c AUBase::DispatchSetProperty(unsigned long, unsigned long, unsigned long, void const*, unsigned long) + 1056
    12 ...estra.MusicDevice.component 0x12795f9c AUBase::ComponentEntryDispatch(ComponentParameters*, AUBase*) + 660
    13 ...estra.MusicDevice.component 0x12798020 MusicDeviceBase::ComponentEntryDispatch(ComponentParameters*, MusicDeviceBase*) + 256
    14 ...estra.MusicDevice.component 0x12936690 NIAudioUnitSynthEntry + 344
    15 ...ple.CoreServices.CarbonCore 0x90bddbd4 CallComponent + 260
    16 ...apple.audio.units.AudioUnit 0x942f6644 AudioUnitSetProperty + 56
    17 com.apple.logic.express 0x005b9200 0x1000 + 5997056
    18 com.apple.logic.express 0x002d9008 0x1000 + 2981896
    19 com.apple.logic.express 0x002da35c 0x1000 + 2986844
    20 com.apple.logic.express 0x002e1edc 0x1000 + 3018460
    21 com.apple.logic.express 0x002e20e4 0x1000 + 3018980
    22 com.apple.logic.express 0x002e24a8 0x1000 + 3019944
    23 com.apple.logic.express 0x002e2718 0x1000 + 3020568
    24 com.apple.logic.express 0x00168fe4 0x1000 + 1474532
    25 com.apple.logic.express 0x002eea3c 0x1000 + 3070524
    26 com.apple.logic.express 0x000b47b4 0x1000 + 735156
    27 com.apple.logic.express 0x0009faf0 0x1000 + 649968
    28 com.apple.logic.express 0x001f0af0 0x1000 + 2030320
    29 com.apple.logic.express 0x001f1214 0x1000 + 2032148
    30 com.apple.logic.express 0x001f9b5c 0x1000 + 2067292
    31 com.apple.logic.express 0x001f9c0c 0x1000 + 2067468
    32 com.apple.logic.express 0x001ffd18 0x1000 + 2092312
    33 com.apple.logic.express 0x00200988 0x1000 + 2095496
    34 com.apple.logic.express 0x000e1b98 0x1000 + 920472
    35 com.apple.HIToolbox 0x93297934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    36 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    37 com.apple.HIToolbox 0x9329de90 SendEventToEventTarget + 40
    38 com.apple.HIToolbox 0x933167e8 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 380
    39 com.apple.HIToolbox 0x93346694 SendMenuItemSelectedEvent + 136
    40 com.apple.HIToolbox 0x9334659c FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 144
    41 com.apple.HIToolbox 0x9332da48 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 404
    42 com.apple.HIToolbox 0x9332d530 MenuSelect + 100
    43 com.apple.HIToolbox 0x933297a4 HandleMouseEvent(OpaqueEventRef*) + 84
    44 com.apple.HIToolbox 0x9332d4b8 StandardMenuBarEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 56
    45 com.apple.HIToolbox 0x93297934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    46 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    47 com.apple.HIToolbox 0x9329de90 SendEventToEventTarget + 40
    48 com.apple.HIToolbox 0x9348d3f0 HandleMouseEvent(OpaqueEventRef*) + 388
    49 com.apple.HIToolbox 0x9329e1fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    50 com.apple.HIToolbox 0x93297b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    51 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    52 com.apple.HIToolbox 0x9329de90 SendEventToEventTarget + 40
    53 com.apple.HIToolbox 0x932dec04 ToolboxEventDispatcher + 92
    54 com.apple.HIToolbox 0x932deb90 HLTBEventDispatcher + 16
    55 com.apple.HIToolbox 0x932dd148 RunApplicationEventLoop + 148
    56 com.apple.logic.express 0x001f6930 0x1000 + 2054448
    57 com.apple.logic.express 0x000a1f84 0x1000 + 659332
    58 com.apple.logic.express 0x000058ec 0x1000 + 18668
    59 com.apple.logic.express 0x0000571c 0x1000 + 18204
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145863c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914583dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 com.apple.audio.CoreAudio 0x91469794 CAGuard::WaitFor(unsigned long long) + 204
    3 com.apple.audio.CoreAudio 0x914696a4 CAGuard::WaitUntil(unsigned long long) + 304
    4 com.apple.audio.CoreAudio 0x914678e8 HP_IOThread::WorkLoop() + 852
    5 com.apple.audio.CoreAudio 0x91467580 HPIOThread::ThreadEntry(HPIOThread*) + 16
    6 com.apple.audio.CoreAudio 0x914583dc CAPThread::Entry(CAPThread*) + 96
    7 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c4b8 semaphorewaittrap + 8
    1 libSystem.B.dylib 0x90030ed0 pthreadcondwait + 516
    2 com.apple.logic.express 0x0057b950 0x1000 + 5744976
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf8410 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c003ac TimerThread + 60
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.audio.midi.CoreMIDI 0x96d7fac8 XServerMachPort::ReceiveMessage(int&, void*, int&) + 84
    3 com.apple.audio.midi.CoreMIDI 0x96d72c80 MIDIInPortThread::Run() + 64
    4 com.apple.audio.midi.CoreMIDI 0x96d76f44 XThread::RunHelper(void*) + 28
    5 com.apple.audio.midi.CoreMIDI 0x96d8087c CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9004a6e8 syscallthreadswitch + 8
    1 com.apple.Foundation 0x92bf95dc +[NSThread sleepUntilDate:] + 152
    2 com.apple.AppKit 0x9381aa10 -[NSUIHeartBeat _heartBeatThread:] + 1100
    3 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000001278e528 srr1: 0x000000000000d930 vrsave: 0x0000000000000000
    cr: 0x44022244 xer: 0x0000000000000007 lr: 0x0000000012913ce4 ctr: 0x000000009000b340
    r0: 0x0000000012913cb0 r1: 0x00000000bfffd3e0 r2: 0x00000000bfffd437 r3: 0x00000000bfffd438
    r4: 0x00000000ffffffff r5: 0x00000000000009f7 r6: 0x0000000000000000 r7: 0x0000000000000000
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000024022282
    r12: 0x000000009000b340 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000001
    r16: 0x0000000000000001 r17: 0x0000000000000000 r18: 0x0000000012ac2e5c r19: 0x0000000000000001
    r20: 0x0000000000000000 r21: 0x0000000000000001 r22: 0x00000000bfffd870 r23: 0x00000000bfffe214
    r24: 0x0000000015b50020 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x0000000000000000
    r28: 0x0000000012913c80 r29: 0x000000007ce5da31 r30: 0x00000000bfffd6a8 r31: 0x0000000013808c00
    Binary Images Description:
    0x1000 - 0x6cdfff com.apple.logic.express 7.1.1 (7.1.1(886)) /Applications/Logic Express.app/Contents/MacOS/Logic Express
    0xd7f000 - 0xd9efff com.apple.prokit.TigerPanels 4.0.1 (689.2) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/TigerPa nels.bundle/Contents/MacOS/TigerPanels
    0xfaa000 - 0xfabfff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x1d89000 - 0x1d98fff com.apple.reslib 1.1.1 /Applications/Logic Express.app/Contents/Resources/EGT.res/Contents/MacOS/EGT
    0x1dcb000 - 0x1ddbfff com.apple.reslib 1.6.1 /Applications/Logic Express.app/Contents/Resources/EMX.res/Contents/MacOS/EMX
    0x1ea9000 - 0x1eb8fff com.apple.reslib 1.6.0 /Applications/Logic Express.app/Contents/Resources/ES1.res/Contents/MacOS/ES1
    0x1f1c000 - 0x1f2bfff com.apple.reslib 1.6.0 /Applications/Logic Express.app/Contents/Resources/EVD6.res/Contents/MacOS/EVD6
    0x62e3000 - 0x62f6fff com.apple.reslib 1.12.9 /Applications/Logic Express.app/Contents/Resources/EFX.res/Contents/MacOS/EFX
    0x68ae000 - 0x68befff com.apple.reslib 1.6.1 /Applications/Logic Express.app/Contents/Resources/EXS24.res/Contents/MacOS/EXS24
    0xa160000 - 0xa1c9fff com.apple.AppleIntermediateCodec 1.0.1 (124) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xa368000 - 0xa3e1fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xabef000 - 0xabf0fff com.apple.MIDIDevicePlugIn.CS-32 1.00 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0xabf9000 - 0xabfafff com.apple.MIDIDevicePlugIn.TranzPort 2.31 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
    0xaf9f000 - 0xafa1fff com.apple.MIDIDevicePlugIn.FW-1884 1.20a1 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0xafd1000 - 0xafd5fff com.apple.MIDIDevicePlugIn.Logic Control 2.31 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0xafe5000 - 0xafe7fff com.apple.MIDIDevicePlugIn.microKONTROL 1.00 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
    0xaff1000 - 0xaff2fff com.apple.MIDIDevicePlugIn.US-2400 1.0.0 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
    0xb114000 - 0xb114fff com.apple.MIDIDevicePlugIn.US-428 1.00 /Applications/Logic Express.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
    0x10000000 - 0x100d2fff com.apple.AECore 1.1.1 /Applications/Logic Express.app/Contents/Frameworks/AECore.framework/Versions/A/AECore
    0x11000000 - 0x1105cfff com.apple.LoopCore 1.1.1 /Applications/Logic Express.app/Contents/Frameworks/LoopCore.framework/Versions/A/LoopCore
    0x12000000 - 0x1201bfff com.apple.DfSearchEngineWrapper 1.1.1 /Applications/Logic Express.app/Contents/Frameworks/DfSearchEngineWrapper.framework/Versions/A/DfSe archEngineWrapper
    0x12783000 - 0x12a26fff Garritan Personal Orchestra.MusicDevice.component 1.1.8.004 (1.1.8, Copyright © 2005 Native-Instruments) /Library/Audio/Plug-Ins/Components/PersonalOrchestra.component/Contents/MacOS/P ersonalOrchestra
    0x20000000 - 0x20056fff com.apple.LogicLoopBrowser 1.0 (1.6) /Applications/Logic Express.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoop Browser
    0x41840000 - 0x41866fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x419b0000 - 0x419effff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x41a30000 - 0x41a35fff com.apple.CoreMediaAuthoringPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 4.0 (129.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f13000 - 0x92f31fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3c000 - 0x92f96fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb4000 - 0x92fb4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb6000 - 0x92fcafff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffe000 - 0x93013fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93025000 - 0x930acfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c0000 - 0x930cbfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d5000 - 0x93102fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311c000 - 0x9312bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93137000 - 0x9319dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ce000 - 0x9321dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327a000 - 0x93287fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936ee000 - 0x936fafff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936ff000 - 0x9371ffff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93773000 - 0x93773fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93775000 - 0x93da8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94135000 - 0x941a7fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e0000 - 0x942a4fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f6000 - 0x942f6fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942f8000 - 0x944b8fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94502000 - 0x9453ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94547000 - 0x94597fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a0000 - 0x945bafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945ca000 - 0x945eafff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94627000 - 0x9466cfff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9478b000 - 0x9479afff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a2000 - 0x947affff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f5000 - 0x9480efff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94815000 - 0x94b34fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c18000 - 0x94c89fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94dfe000 - 0x94f2efff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fc0000 - 0x94fcffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fd7000 - 0x95004fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9500b000 - 0x9501bfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9501f000 - 0x9504efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9505e000 - 0x9507bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9546d000 - 0x9546dfff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9546f000 - 0x954f2fff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x9551f000 - 0x95565fff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x96096000 - 0x96098fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x96445000 - 0x965d4fff com.apple.prokit 4.0.1 (689.2) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x96d72000 - 0x96db1fff com.apple.audio.midi.CoreMIDI 1.5 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x97199000 - 0x971b8fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x979be000 - 0x979cbfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98df5000 - 0x999bbfff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99c14000 - 0x99c18fff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99ea0000 - 0x99f6dfff com.apple.QuickTimeMPEG4.component 7.2 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    and from consol log
    Mac OS X Version 10.4.10 (Build 8R218)
    2007-11-11 15:09:17 +0000
    2007-11-11 15:09:18.954 SystemUIServer[79] lang is:en
    Nov 11 15:12:12 sdb-powerbook-g4-12 crashdump[207]: Logic Express crashed
    Nov 11 15:12:14 sdb-powerbook-g4-12 crashdump[207]: crash report written to: /Users/sdb/Library/Logs/CrashReporter/Logic Express.crash.log
    2007-11-11 15:12:49.215 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.481 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.485 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.488 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.491 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.500 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.503 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.506 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.509 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.538 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.542 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.545 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.548 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.551 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.555 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.559 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.562 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.567 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.570 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.573 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.576 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.579 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.582 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.585 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.595 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'
    2007-11-11 15:12:50.598 SyndicationAgent[209] WARNING: BestCalendarDateFromString - can't interpret: 'Sun 11 Nov 2007 04:26:11 -800'

    Hi Rob
    I've had exactly the same problem as you. Since installing the ProKit 5.1 update Logic Pro 7 just crashes on attempting to start the application.
    Now I know we all should upgrade to Logic Pro 9 but some of us just dont have the cash. This wasnt even mentioned on the Apple site at all, no warnings, no mention that it only works with Logic 8 & 9.
    I'm really annoyed and angry now since I've lost 2 days of work thanks to this. And it feels like Apple is operating like Microsoft in the way they want to bleed money out of everyone. A simple warning to users of Logic 7 would have been nice.
    So to conclude, Rob - I really feel for you. I know your pain. And trust me, I'm not going to take it lying down. A warning should have been issued. I expected this type of issue from the migration from OS9 to OSX years ago but not from OSX to another OSX!

  • Logic Express and Silent Violins ...

    Hi all,
    I am new to Logic Express and try to explore it's capabilities ...
    My endpoint is this: I want to be able to record a silent violin (normal analog audio output) directly as a MIDI file onto Logic Express.
    I have searched the net, but have been unable sofar to find a solution. Is it possible at all? Is there a plug-in that converts WAV.files straight into MIDI as you record?
    Or is there any other hardware or software based possibility?
    There used to be a company by the name ZETA which produced violins with their own proprietory MIDI converter. Problem is, they are out of business and their MIDI converter was only working with their own instruments. I am looking to use a Yamaha Silent Violin to achieve that.
    All help is greatly appreciated!
    nickler66

    Hi,
    there's an onboard solution from Logic: Open you recorded Audio in the sample editor. Select Factory -> audio to score. Depending on your audio material, you must fiddle around with the settings to get an acceptable result. The engine will generate a MIDI region overlapping your audio file. Drag it to a software instrument track to test the results.
    Otherwise, i would recommend the Roland GK3 Guitar to MIDI converter pickup. I don't know if it works with a violin as well, but i heard of other people using it. Cost around 150-200$
    Fox

  • Logical Expression (Rel Operators)

    Hi,
    Can any Please provide the more Detailed information and
    Example Programs on Logical Expressions  Operators( CO, CA, CN ,NA .... )
    Regards,

    Hi,
    Logical expressions
    A logical expression compares the value in one field with the value in another field. Although the most common logical expressions compare the contents of two numeric fields, string fields can also be compared. It is important to understand (and remember) the different types of logical expression for strings as they can make it much easier to work within the string processing model.
    A logical expression would be:
    if logical expression.
      code goes here
    endif.
    There are 8 relational operators for strings
    CO - contains
    Use this to test if field a contains field b. For example:
    CUSNM = 'Mrs. Johnson'
    TEST = 'Mrs.'
    CUSNM CO TEST returns a true value.
    Note:Test that CUSNM contains a value. If the field is blank ABAP returns a false true.
    if ( p_matnr co ' 0123456789' ).
    shift p_matnr right deleting trailing ' '.
    overlay p_matnr with '00000000000000000'.
    else.
    shift p_matnr left deleting leading ' '.
    endif.
    CN - does not contain
    Inverse of contains
    CA - contains any
    NA - contains none
    Inverse of contains any
    CS - contains string
    NS - does not contain string
    Inverse of contains string
    CP - contains pattern
    Allow you do do some rudimentary pattern matching. Use "" to match any string and "+" to match a single character. "#" is used as the escape character, allowing you to match "","+" or "#" itself. The comparison is not case-sensitive.
    CN - does not contain pattern
    Inverse of contains pattern
    Regards,
    Sravanthi

  • How to set up a pro headphone mix  in logic express 8

    using logic express 8 software, avalon tube amp, 4 channel head phone mixer, yamaha O1V digital mixer and running through a line 6 toneport UX2 unit cant figure out how to get a nice individual headphone mix for vocals with effect inserts inside logic express 8 don't care how to achieve it just need to do it thanks

    I've copied above post and corrected confusing language. Sorry I was typing too fast.
    Cheers
    Dee
    Hi
    To run RMX multi timbrally in stereo mode:
    Go to RMX in the environment. Change the MIDI channel of RMX to "all".
    Create a multi instrument (using the new menu). It's a good idea to rename the mulit to RMX Multi. Cable multi instrument icon to the RMX channel using arrow tool. (Chose "remove" if a dialogue box promots you to "Remove channels port setting?").
    Beginning on channel 8 move backwards and click 8 thru 1on the multi instrument using the Midi tool.
    Go back to the arrange window. You should see a track called "RMX Multi 1" (if you renamed the Multi in environment "RMX Multi").
    Create a new track for the remaining of the 8 Midi channels (if your Multi requires 8 channels). Also .. create an instrument tracks and assign it to RMX - that is your master RMX track where RMX is instansiated.
    You now have a master track where RMX is instansiated and one track for each of your 8 channels within RMX.
    You can play/place MIDI data in to each of the MIDI tracks - or drag and drop from RMX into any of these sub channels. You can also use automation on these. For any DSP use the master track.
    To run RMX as a multi:
    Essentially it's the same thing. Except in the mixer section of RMX assign track 2 to output B, track 3 to output C, etc ....
    Go to the environment and create a stereo aux track for each MIDI channel you need in your multi. In the input section of the aux strip assign as follows: for B, 3/4, for C 5/6, etc ... (A is 1/2 and is where you have your instance of RMX).
    The only advantage of multi mode is if you need discreet DSP on individual tracks.
    In Stereo multi timbral mode you can freeze tracks.
    Hope this helps.
    Let me know.
    Cheers
    Dee

  • Every second G-note is missed by Logic Express

    Hi,
    I have really strange problem: logic express misses every second G-note (two octaves down from middle-C) that I press from MIDI-keyboard. It also misses all G-notes if I press something before the G-note.
    This is not a keyboard problem: I have found same issue with two different keyboards and three different USB-midi-inputs. Neither it's hardware problem, I can switch octave from keyboard and it still happends. When I try "test midi" from OS X, I hear every note coming in to my mac, but every second G-note is missed by Logic. It's clearly something inside Logic Express since OS X receives the notes from keyboards all the time.
    I have newest update for Logic Express and all OS X updates up to date.
    Any ideas?

    Hi there,
    Just to make sure, download this:
    http://www.snoize.com/MIDIMonitor/
    Then check on the keyboard to make sure that it's producing what you expect.
    Next, have you reassigned that key to a Logic Express key command? Or perhaps to another programme somewhere?
    You could always try reseting the key commands, assuming you haven't set up lots of custom ones.
    Open up the Environment (Command-8) and look at the the Clicks and Ports layer. There's a diagnostic tool in there that shows you what notes are coming in to Logic. That doesn't necessarily means what notes are going to the sequencer since you can filter notes out in the environment.
    I'd also have a look at the Transform Window to see whether there's something wrong in that.
    Sorry not to give you detailed instructions for all of these different actions - this post would be pages long so have a look in the manual and see if you can't figure out some of these advanced functions.
    Pete

  • Logic Express 7 on intel mac

         I just purchased an intel mac and have installed Logic Express 7 on it.  I cannot get it to record audio (states "audio disabled") and it won't respond to midi commands.  Everything basic about the program seems to be up and running besides this.  As I've never used this program I'm not sure if I'm doing something wrong in the set up or if the program won't run on my intel mac. Garageband 09 works immediately for me upon opening, as does Soundtrack 3.  Am I missing something or do I have to upgrade?  Thank you much for your assistance.     

    It seems that the Mini behaves well in general terms, but as mentioned by Mike Conelly in this post, under certain special circumstances, the computer "seems to choke when there were a bunch of plugs on the same track, performance was much better when I only had 10 short on each track instead of 15. This may improve some of the results already reported if you left 15 running on the first track, feel free to double check your results if you think it will make a difference on your box".
    Comparing his benchmarks to others listed in the forum, is really encouraging.
    I understand that LE is a lot less resource consuming than LP, so probably I'll end buying one soon. If so, I'll post my results. At this time, my iBook is collapsing when using two or three software instruments with big chords...
    Last but not least, I'll always have the freeze feature to save CPU...
    Thanks again!

  • How to mixdown in Logic Express?

    I've searched and searched and have probably just missed it--but where is the button or whatever is used in Logic Express that creates a file of your final mix, test mix of your project located?

    Appreciate the info.
    Feel like an old dog trying to learn a bunch of new tricks as I am a longtime Cakewalk/Sonar user who "switched" in the last month.
    Thanks for the accurate and timely answer:)

  • Why Is Logic Express 9 Afraid Of 2 GB Files?

    I use GarageBand to record my podcasts. Sometimes - when the duration of the mono recording is approximately 1 hr - GB (32-bit) will crash when I try to export to MP3, because it's running out of available memory. I'll leave aside what I know about programming in 32-bit, and how UNIX-based OSes shouldn't have too much difficulty turning a 1 gigabyte GB proprietary data file into a 30 megabyte MP3.
    I purchased Logic Express 9 because it could operate in 64-bit mode, and be able to get to the remaining 4 Gb of RAM on my iMac that GB couldn't see. For podcasts around 1 hr, this worked. However, now I've got a 2-hr podcast from GB, and LE9 is complaining that "the maximum file size of 2 GB has been exceeded." There's a post at:
    http://discussions.apple.com/message.jspa?messageID=6149049
    but back in 2008 the posters expected Apple to fix this. The last post was three years ago.
    Back in the days when Macs came equipped with drives that had 10's of gigabytes of disk space, I could see where putting 2 Gb out into the file system might be dicey. But my new iMac has over 1,000 Gb of space. Apple, are you kidding me? This is an arbitrary limitation for a machine that is both 64-bit and has 8 Gb of RAM not to mention 500 Gb of free disk space. ***?
    The previous article had some suggestions that I'm about to try. But this is just stupid.
    So, just to ask: is Logic Studio better? Did Apple hamstring Express? What about Logic Pro?
    Cheers,
    karl

    Fox:
    My apologies for taking so long to  get back to you. I need to pay more attention!
    So, GB really does crash when trying to export to MP3 of anything longer than about 1 hour 15 minutes or so. I did find a fix for this - there's an option in Preferences that if turned off GB will stop trying to do some kind of whole-track normalization while it does the MP3-compression. I haven't tried this on the 2-hour recording, but it works for the 1:15 recording. While in its failure behavior (i.e., before I turned off the option), I watched the memory usage of the entire machine while GB attempted to compress the MP3 and it crashed ("The application GarageBand has unexpectedly quit") as soon as it ran out of memory (i.e., its memory demands were 4+ Gb, which is the max for all 32-bit apps).
    LE spins the beachball and then displays the aforementioned message about a max file size of 2 Gb. LE is running in 64-bit mode, but I have no idea why a file size of 2 Gb is a problem for it. Especially when the resulting MP3 file is smaller than 100 Mb.
    My guess: Apple didn't stress-test either of these products with Really Large Files.
    Good luck with your endeavor!
    Cheers,
    karl

  • Need Help!! recording Korg MS2000 in Logic express 8.

    So I've been trying to record sounds from my korg ms2k in logic express 8 but I can't seem to access any of the sounds. My connections are solid because I tested them in macs audio MIDI setup, plus I'm able to use the ms2k to control the software instruments which came with logic. I created an environment based on tutorials I could find online, connected my MIDI port found in the physical input to the sequencer input & armed the track but nothing happens. I also performed a data dump on my korg and downloaded a patch librarian but I'm not really sure how to access it within logic. I'm kinda new to all this and it's highly probable that I'm missing some steps or doing something wrong. If any one can give me a hand with this I truly would appreciate it. Thanks.

    I see ... well since you can record using the internal virtual instruments your midi data is going to Logic so it HAS to be something in the settings. Wish I could be more specific but I personally haven't used that function. If you don't get an answer here try this forum.
    http://community.sonikmatter.com/forums/index.php
    They are VERY "business like" and not much on pleasant small talk BUT they know what they're talking about and can probably tell you exactly what you need to do.
    Good luck.

  • Final Cut to Logic Express 8, back to Final cut?

    My buddy uses an older version of Final Cut Pro, v4 maybe? I forget. Anyway, he needs to work on the audio track, it's got some pops and glitches. I was thinking of having him export the file as a QT somehow, and I could open it in my copy of Logic Express 8. I could experiment with plugins and correction tools in LE8, then when fixed, he could somehow take the file back for final editing.
    Is this possible with LE8? I know it's supposed to work, but is it worth all the effort?

    Hi Guys ,
    i had so much problems with this but figured it out after testing and checking settings and reading some tutorials . I wanted to share what i did simply in case it may help some one with a similar or same problem.
    this is whats i did
    After Exporting Audio from Final Cut :
    Now In Logic > Preferences > Global > Video > go to bottom right hand corner click > Video project settings > Audio – and change Sample rate to 48 khz
    Save and bounce file at 48khz . Now import the file into Final Cut Pro where it should Synch perfect!
    Hope this may help someone
    cheers
    FC

  • No Audio from Logic Express

    I was using an outdated sound card in my Mac G4, I was only hearing sounds out of the little built in Mac speaker, I was told I needed an Audio Interface, so I got a fast track USB pro from M-Audio. Installed everything, now the Mac recognizes it because I was able to switch the "built in Audio" to "Fast Track USB". Even his the "test" button and it works. I now select a sound from the esx24 sample player, and before, i could only hear sound from the built in mac speaker, now however, nothing plays. I see the meter going in logic and it is recignizing the midi input notes but still no Audio sound. This leads me to believe its something within Logic Express 7.2. Can anyone throw out any suggestions?
    Regards all
    Cheers and thanks for listening
    Daniel

    When you switched from "built in audio" to "fast Track" that must have been in the Audio Midi setup of the utilities folder?
    You have to do it in Logic as well places.
    In case you haven't done that in Logic I will go through the steps.
    Inside Logic go to the Audio menu at the very top (not the smaller audio on the arrange screen), then Audio Hardware and Drivers, then you will see the tab for drivers there and should be pretty much the same as you did before. Fast Track should show up there. Notice you can also set the buffer size here as well as a tab for 24 bit recording. Or at least you can in Logic Pro. I don't actually have Logic Express, but I know your issue is were it is in LP.
    Best
    Robyn

  • Will Logic Express 8 run if I upgrade my G3 B&W?

    My system I'm running at the moment is: G3 PowerMac 400Mhz/1MB Cache
    512MB PC100 RAM
    ATI Rage128 16MB Video Card
    MOTU PCI-324 Audio Card/MOTU 2408 MKII
    Adaptec SCSI PCI Card
    Western Digital 40GB IDE Hard Drive
    Original Apple 9GB Hard Drive
    40GB IBM 10000Rpm SCSI Hard Drive
    17GB IBM 10000Rpm SCSI Hard Drive
    I am looking at upgrading the Processor to: G4 1GHz Powerlogix ZIF Upgrade
    1GB PC100 RAM
    ATI Radeon 9200 Mac Edition 128MB
    If I upgrade to this will my machine then run Logic Express 8, or will it do as it does now and just act like it is starting by bouncing the icon in the dock then stopping? At the moment I cannot run Adobe CS3 Design/Web Premium or my Logic Express 8. Please Help!!!

    Hi Spencer,
    As a general rule the minumum system requirements listed for a software are just that, the minimum required for the effective use of the program. If you make the changes you're talking about you may be able to run the program but it will probably not run well. I'm running Express 8 on a 1.83GHz intel iMac with 2 gigs ram. My current project involves only seven software instruments and six enternal midi tracks (which use almost no cpu) and I'm still nearing %70 on my cpu meter. Before I finish I will definately be freezing tracks to free up cpu. My system is much faster and double the ram of what you're talking about. If you really want to run Express 8 properly you will probably need to replace your computer.
    Rainguitar

Maybe you are looking for

  • ITunes won't open.(No error message)

    Every time I try opening iTunes, it loads for a few seconds. I can see it in my processes. After the few seconds it disappeares. I'm not too sure if something is blocking it. I don't have an anti-virus running at the moment, so it isn't that. Can any

  • What is the significance of datatags application?

    Does it matter if datatags application is up or down within your OC4J? This application is in every OC4J you create. Not sure what is the significance/use or impact of this application if its up or down.

  • 500 Internal Server Error when clicked on Add/Remove Button

    Hi, When i Goto System Management -> Administration -> Mobile Infrastructure -> Device Maintenance -> here search for the device id or just click on the search -> scroll down to find 'Mobile Components' tab -> click on Add/Remove button The error iam

  • Directory corrupted again & again

    I'm having a recurring problem with directories becoming fragmented/corrupted on my old computer. B&W G3, OS9.2.1, 896ram, 2 HD: 80G & 60G. Processor upgraded to 1GHz (PowerLogix hardware). Original factory HD has been replaced a few months ago. Slav

  • "Database Audit Specification" not available.

    Hi all,  Been asked by one of the developers to audit delete & insert for one night only so I thought to investigate built in auditing via "new Database Audit Specification".  I am in the sysadmin role but no  option to add a database audit, the serv