File open dialog to just get the user selected file name

Hi,
I am working on asynchronous file storage to KPRO through my ABAP WD application. For this asynchronous upload
operation, I just need the file name and file path(not the content). The KPRO servers could be made to use SAPFTP, SAPHTTP in the background to upload documents (triggered via tRFC's).
Is it possible to have a file open dialog (similar to java file open) which just returns the file path and file name instead of the
content? Current fileUpload UI element also loads the content which is not desired behaviour for me (because could be a performance problem with large documents uploading).
Is it possible to select multiple filenames? Thomas Jung's Flash island multiple upload works, but not in my
asynchronous scenario. Because flex fileReferenceList + upload operation works synchronously.

You must remember the START-OF-SELECTION event here,  after you select the file name and click F8, the START-OF-SELECTION event is triggered, but if it is not there, nothing will happen.
  if sy-subrc <> 0 or l_rc < 0.
    message id sy-msgid type sy-msgty number sy-msgno       "mo271101
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  else.                                                     "mo271101
    read table l_files index 1 into h_files.
    auszfile = h_files-filename.
  endif.
start-of-selection.            "<--  Add this
  write:/ auszfile.
Regards,
RIch Heilman

Similar Messages

  • Project file won't open.  I just get the spinning loading symbol but it never opens.

    I am working on a school project video.  The app was working great for about a week.  Now when i click on the play button of my project file, i get the spinning loading symbol and the video never play or opens.  If I right click on the project file in the left side column, sometimes it will play, but i cannot open it to work on it.  I have already tried uninstalling and reinstalling the app.  Didn't help.  Thanks.

    Probably corrupted project file. Do you have a saved or auto-saved version of the project on disc somewhere?
    Neil

  • Getting the user name and computer name

    I've been trying to find out how to do this, but can't seem to get it.
    I have an AIR application that needs to get the user's login name, and computer name for verification.  I can't find anywhere to do this.  Is AIR able to get this information? Is there work arounds if there isn't?
    It won't ever be a web app, just an AIR app.

    What I did in Air 2 to accomplish that is the following:
                   public function getHostName():void {
                        if(NativeProcess.isSupported) {
                             var OS:String = Capabilities.os.toLocaleLowerCase();
                             var file:File;
                             if (OS.indexOf('win') > -1) {
                                  //Executable in windows
                                  file = new File('C:\\Windows\\System32\\hostname.exe');
                             } else if (OS.indexOf('mac') > -1 ) {
                                  //Executable in mac
                             } else if (OS.indexOf('linux')) {
                                  //Executable in linux
                             var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
                             nativeProcessStartupInfo.executable = file;
                             var process:NativeProcess = new NativeProcess();
                                  process.addEventListener(NativeProcessExitEvent.EXIT, onExitError);
                                  process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutput);
                                  process.start(nativeProcessStartupInfo);
                                  process.closeInput();
                   import utls.StringHelper;
                   public function onOutput(event:ProgressEvent):void {
                        var strHelper:StringHelper = new StringHelper();
                        var output:String = event.target.standardOutput.readUTFBytes(event.target.standardOutput.bytesAvailable);
                             output = strHelper.trimBack(output, "\n");
                             output = strHelper.trimBack(output, "\r");
                        trace('"'+output+'"');
    The package that I used is from the manual:
    package utls
         public class StringHelper
              public function StringHelper()
              public function replace(str:String, oldSubStr:String, newSubStr:String):String {
                   return str.split(oldSubStr).join(newSubStr);
              public function trim(str:String, char:String):String {
                   return trimBack(trimFront(str, char), char);
              public function trimFront(str:String, char:String):String {
                   char = stringToCharacter(char);
                   if (str.charAt(0) == char) {
                        str = trimFront(str.substring(1), char);
                   return str;
              public function trimBack(str:String, char:String):String {
                   char = stringToCharacter(char);
                   if (str.charAt(str.length - 1) == char) {
                        str = trimBack(str.substring(0, str.length - 1), char);
                   return str;
              public function stringToCharacter(str:String):String {
                   if (str.length == 1) {
                        return str;
                   return str.slice(0, 1);
    And sorry for the miss topic I just realized that it is on flex topic, but I post it either way it may be useful for anyone

  • How to avoid the user selecting a different path in my installer

    Hello again all you helpful forum-goers!
    I have an application and a corresponding installer, and then I have a separate installer putting some support files in the same directory.  My problem is that if the user selects a different path to which to install my primary application, the secondary installer will not put the required support files in the same spot.
    Now, I think I've figured out how to get the user-selected path from the "Run executable at the end of installation" option in the Advanced pane of the LabVIEW installer configuration, and I can pass that in to my secondary installer, and that should fix the problem.  However, what I'd really like to do is just not give the user the option to install my primary application in a different directory to begin with.  I've looked, but cannot find any way to do that.
    Does anyone know of any way to not present the option to install an application in a different directory when using the LabVIEW installer?
    Thanks in advance for any suggestions,
    -Joe

    Ben64,
    That's great!  Thank you so much for your quick reply.  The only reason I haven't already accepted that as my solution is that it requires a manual post-compile change to a text file.  Ideally I'd prefer not to have to remember to do that every time I rebuild my installer.  Is there any way that you know of to automate the process?
    If not, I'm happy to have a good solution even if it takes an extra step each time to implement.
    -Joe

  • "File Dialog" Express VI returns the wrong path when the user selects the desktop

    In labview 8.0.1 with Windows
    XP, the File Dialog Express VI seems to return something other than the path
    selected by the user when configured to browse for folders (or files and
    folders) and the user selects the desktop.
    I can't determine exactly when it works and when it fails, but it always seems
    to fail if the user selects the desktop from the places bar (the shortcuts on
    the left side of the dialog) or from the drop-down menu at the top of the
    dialog and then clicks the "Current Folder" button to dismiss the
    dialog.  In this case it always returns whatever path is wired to the
    "Start Path" terminal.
    If the user navigates to the desktop with the "Up One Level" button
    or by selecting the actual desktop directory under Documents and Settings, the
    correct path is returned.
    If the user selects a file before clicking the desktop icon, then clicks
    "Current Folder" the correct path is returned.
    If the user clicks the desktop icon, clicks open, then clicks "Current
    Folder" the correct path is returned.
    It's possible to work around this bug in most cases by setting the start path
    to the desktop.
    Has anyone seen this behavior before?
    Can anybody verify this behavior by running the attached VI?
    In the past, when I've reported issues like this I've received responses from
    NI engineers that basically said "Thanks, but we already knew
    that".  Is there anywhere that users can search the list of known
    bugs and avoid wasting time tracking down issues that are already understood by
    NI?
    Thanks,
    Adam Brewster
    Attachments:
    File Dialog Test.vi ‏39 KB

    I'm on 8.2 and I can't get it to fail no matter how I select the desktop. I haven't tried it in 8.0, but I imagine that if this really is a bug, they did know about it and fixed it with 8.2. If this causes a real problem for you, I would suggest upgrading if you can.

  • Safari won't open.  I get an error message saying the pp quit unexpectedly.  If I click on the 'reopen' button, I just get the same error message.

    I'm using Mavericks on an iMac.  when I try to open Safari I get the error message 'aplication quit unexpectedly'.  When I click the 'reopen' button, I just get the same error message.  Any suggestions to fix it?
    MJF

    Here is the crash report:
    Process:    
    Safari [781]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.1 (9537.73.11)
    Build Info: 
    WebBrowser-7537073011000000~21
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [188]
    Responsible:
    Safari [781]
    User ID:    
    501
    Date/Time:  
    2014-01-14 15:27:56.428 +0000
    OS Version: 
    Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  DE303636-5980-86E0-2098-CB817D8C0084
    Crashed Thread:  15
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    External Modification Warnings:
    Thread creation by external task.
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.app34068-DU386F5V4G (176 - 1.176) GoPhoto.it
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.CoreGraphics   
    0x00007fff91e23994 _CGSGetDisplaySystemState + 102
    3   com.apple.CoreGraphics   
    0x00007fff91e2389a CGSGetDisplaySystemState + 84
    4   com.apple.CoreGraphics   
    0x00007fff91e237e9 get_current_display_system_state + 76
    5   com.apple.CoreGraphics   
    0x00007fff91e28a93 get_display_logging + 62
    6   com.apple.CoreGraphics   
    0x00007fff91e28ad4 updateAllDisplayInfoAsNeeded + 15
    7   com.apple.CoreGraphics   
    0x00007fff91ee797a CGSCopyDisplayUUID + 63
    8   com.apple.AppKit         
    0x00007fff8d2151ef -[NSScreen _copyDisplayUUID] + 33
    9   com.apple.AppKit         
    0x00007fff8cbfa019 +[NSScreen _screenForUUID:] + 183
    10  com.apple.AppKit         
    0x00007fff8cbf9eab _NXScreenForRectOnSpace + 86
    11  com.apple.AppKit         
    0x00007fff8cbf9ad1 +[NSScreen mainScreen] + 182
    12  com.apple.AppKit         
    0x00007fff8cbfc602 -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 350
    13  com.apple.AppKit         
    0x00007fff8ce85460 -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    14  com.apple.AppKit         
    0x00007fff8cbfc498 -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    15  com.apple.AppKit         
    0x00007fff8ce85413 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    16  com.apple.AppKit         
    0x00007fff8cbf8405 -[NSWindowTemplate nibInstantiate] + 561
    17  com.apple.AppKit         
    0x00007fff8cbce550 -[NSIBObjectData instantiateObject:] + 309
    18  com.apple.AppKit         
    0x00007fff8cbcd845 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 413
    19  com.apple.AppKit         
    0x00007fff8cbc25fe loadNib + 327
    20  com.apple.AppKit         
    0x00007fff8cbc1b9c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    21  com.apple.AppKit         
    0x00007fff8ce565b2 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 140
    22  com.apple.AppKit         
    0x00007fff8cf2dc8c _NXLoadNib + 193
    23  com.apple.AppKit         
    0x00007fff8cf2d69f -[NSAlert init] + 95
    24  com.apple.AppKit         
    0x00007fff8cf6a658 +[NSAlert alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextW ithFormat:] + 141
    25  com.apple.AppKit         
    0x00007fff8cbe4119 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1038
    26  com.apple.AppKit         
    0x00007fff8cbe3cce -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    27  com.apple.AppKit         
    0x00007fff8cbe3c6f -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    28  com.apple.AppKit         
    0x00007fff8cbe3b93 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    29  com.apple.AppKit         
    0x00007fff8cbe39b4 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    30  com.apple.AppKit         
    0x00007fff8cbe3789 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    31  com.apple.AppKit         
    0x00007fff8cbe31eb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    32  com.apple.Foundation     
    0x00007fff8fabaeaa -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    33  com.apple.Foundation     
    0x00007fff8fabad1d _NSAppleEventManagerGenericHandler + 106
    34  com.apple.AE             
    0x00007fff86b64e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    35  com.apple.AE             
    0x00007fff86b64c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    36  com.apple.AE             
    0x00007fff86b64b36 aeProcessAppleEvent + 315
    37  com.apple.HIToolbox      
    0x00007fff8a6935f1 AEProcessAppleEvent + 56
    38  com.apple.AppKit         
    0x00007fff8cbdf0f6 _DPSNextEvent + 1026
    39  com.apple.AppKit         
    0x00007fff8cbde8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    40  com.apple.Safari.framework
    0x00007fff8ff97ec0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    41  com.apple.AppKit         
    0x00007fff8cbd29cc -[NSApplication run] + 553
    42  com.apple.AppKit         
    0x00007fff8cbbd803 NSApplicationMain + 940
    43  com.apple.Safari.framework
    0x00007fff90169f3d SafariMain + 267
    44  libdyld.dylib            
    0x00007fff92c445fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff881d3662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff9151e43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff9151e152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.WebCore        
    0x00007fff8e048c0b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore        
    0x00007fff8e04579f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.QuartzCore     
    0x00007fff892fe3b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore     
    0x00007fff892fe2ed thread_fun + 25
    4   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x00007fff89162315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x00007fff89161939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00007fff89161275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation     
    0x00007fff8fb00907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation     
    0x00007fff8fb0070b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 11:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517266 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore 
    0x00007fff88516d85 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 15 Crashed:
    0   libsystem_c.dylib        
    0x00007fff9086c541 __xvprintf + 106
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000149170864  rbx: 0x00007fff77760002  rcx: 0x00007fff7776d920  rdx: 0x00007fff7776e480
      rdi: 0xffffffffffffffff  rsi: 0x0000000000000000  rbp: 0x0000000149170e44  rsp: 0x0000000149170844
       r8: 0x0000000149173c37   r9: 0x0000000149170f34  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x000000000000000a  r13: 0x0000000000000000  r14: 0xffffffffffffffff  r15: 0x00007fff7776e480
      rip: 0x00007fff9086c541  rfl: 0x0000000000010202  cr2: 0x000000014916f050
    Logical CPU:
    0
    Error Code: 
    0x00000000
    Trap Number:
    13
    Binary Images:
    0x10496a000 -   
    0x10496affd  com.apple.Safari (7.0.1 - 9537.73.11) <26B9451D-36DC-3EC9-AF48-B32519F9BFF6> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff679d0000 -
    0x7fff67a03817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    0x7fff85c6b000 -
    0x7fff85ca3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff85ca4000 -
    0x7fff85cf6fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff85d62000 -
    0x7fff85df1fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff85df2000 -
    0x7fff85ebdfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff86149000 -
    0x7fff8614affb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff8614b000 -
    0x7fff86156ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff864b3000 -
    0x7fff866fbfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff866fc000 -
    0x7fff867e6fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff867e7000 -
    0x7fff86846fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff86847000 -
    0x7fff86853ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff86861000 -
    0x7fff8686aff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff86b0d000 -
    0x7fff86b54ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
    0x7fff86b57000 -
    0x7fff86bb2ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff86bb3000 -
    0x7fff86bcffff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff86bd0000 -
    0x7fff86c23fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff86c65000 -
    0x7fff86c68fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86c6b000 -
    0x7fff86d59fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff86df6000 -
    0x7fff86df8fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff86e03000 -
    0x7fff86e28ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff86edd000 -
    0x7fff86eebfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff86f2f000 -
    0x7fff86f39ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8719c000 -
    0x7fff871b3fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff871b4000 -
    0x7fff87277ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff872d5000 -
    0x7fff875bffff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87685000 -
    0x7fff8768afff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8768b000 -
    0x7fff8768cfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff87690000 -
    0x7fff87694fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff87695000 -
    0x7fff8769efff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8779d000 -
    0x7fff8779dfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8779e000 -
    0x7fff877a5fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff877ad000 -
    0x7fff877e7ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff877e8000 -
    0x7fff8780cff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8780d000 -
    0x7fff8780dffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8780e000 -
    0x7fff87853ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff87854000 -
    0x7fff878e0ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff878e4000 -
    0x7fff87931ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87a13000 -
    0x7fff87a17ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff87aa6000 -
    0x7fff87d7afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff87d7b000 -
    0x7fff87db9ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff87dba000 -
    0x7fff87dbdfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff87f5d000 -
    0x7fff8804cfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff881bb000 -
    0x7fff881bcfff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
    0x7fff881bd000 -
    0x7fff881d9ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
    0x7fff881da000 -
    0x7fff881e2ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff884bc000 -
    0x7fff884d4ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff88503000 -
    0x7fff88879ffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff88e60000 -
    0x7fff88ecdfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff88ee7000 -
    0x7fff88ef6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff88ef7000 -
    0x7fff890afff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
    0x7fff890b0000 -
    0x7fff890b7ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff890f1000 -
    0x7fff892d6ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff892d7000 -
    0x7fff89473ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff89474000 -
    0x7fff89485ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff8951d000 -
    0x7fff8951dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff895c2000 -
    0x7fff895e9ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff895ea000 -
    0x7fff895f6ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff895f7000 -
    0x7fff895fcff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff89ec1000 -
    0x7fff89ec5ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff89ed3000 -
    0x7fff89eddfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff89ede000 -
    0x7fff89f07ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
    0x7fff8a658000 -
    0x7fff8a902ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8ac39000 -
    0x7fff8ac51ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8ac52000 -
    0x7fff8ac54fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff8ac67000 -
    0x7fff8ac95ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8acd2000 -
    0x7fff8acd9ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
    0x7fff8acf9000 -
    0x7fff8acfcfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8acfd000 -
    0x7fff8af8bfff  com.apple.RawCamera.bundle (5.02 - 725) <4DE37ECB-24CD-38B1-B5AF-1EE911E19B80> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8afbe000 -
    0x7fff8afcbfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8b00d000 -
    0x7fff8b070ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8b15e000 -
    0x7fff8b34eff5  com.apple.WebKit2 (9537 - 9537.73.11) <FE8D26BB-F8B7-37D6-94A0-D82161541F30> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff8b352000 -
    0x7fff8b391fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8b44b000 -
    0x7fff8b44bfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8b44c000 -
    0x7fff8b454fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8b455000 -
    0x7fff8b723ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8b774000 -
    0x7fff8b7a3fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8b894000 -
    0x7fff8b91dfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8b91e000 -
    0x7fff8b920ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff8b921000 -
    0x7fff8bd02ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8bdc7000 -
    0x7fff8bdccfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff8bdcd000 -
    0x7fff8c025ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8c02b000 -
    0x7fff8c04ffff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
    0x7fff8c0ae000 -
    0x7fff8c0ccff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8c0e7000 -
    0x7fff8c113fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8c1a7000 -
    0x7fff8c21efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8c21f000 -
    0x7fff8c34fff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8c353000 -
    0x7fff8c415ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8c416000 -
    0x7fff8c489ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8c48a000 -
    0x7fff8c48cff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8c48d000 -
    0x7fff8c4b4ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff8c4b5000 -
    0x7fff8c4bbff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
    0x7fff8c4bc000 -
    0x7fff8c4d7ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8c6b4000 -
    0x7fff8c6c6ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8c6c7000 -
    0x7fff8c71fff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c720000 -
    0x7fff8c77eff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8c9af000 -
    0x7fff8c9fdfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8cb3a000 -
    0x7fff8cb93fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8cbb3000 -
    0x7fff8cbbaff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8cbbb000 -
    0x7fff8d72fff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8d787000 -
    0x7fff8d7b8ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
    0x7fff8d7bc000 -
    0x7fff8d7d7ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8d7d8000 -
    0x7fff8d7e0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8d7e1000 -
    0x7fff8d7e2ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8d856000 -
    0x7fff8d8bcfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8d99f000 -
    0x7fff8daa4fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8db31000 -
    0x7fff8db4aff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8db5e000 -
    0x7fff8db88ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff8dbe3000 -
    0x7fff8dbe5ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8dbe6000 -
    0x7fff8dbf7ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff8dbfe000 -
    0x7fff8dc09fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
    0x7fff8dc0a000 -
    0x7fff8dc0bff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8dc0c000 -
    0x7fff8e03fffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8e040000 -
    0x7fff8ee8dffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8f29d000 -
    0x7fff8f458ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8f459000 -
    0x7fff8f466ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff8f48e000 -
    0x7fff8f5feff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8f6a5000 -
    0x7fff8f6beff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8f776000 -
    0x7fff8f7a5ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8f7a6000 -
    0x7fff8f88afff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8f91f000 -
    0x7fff8f928fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8f938000 -
    0x7fff8f939fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff8f941000 -
    0x7fff8fa77ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8fa99000 -
    0x7fff8fd98fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8ff3b000 -
    0x7fff90441ff3  com.apple.Safari.framework (9537 - 9537.73.11) <D3F772B3-4AD9-32F1-A0CB-CF307FF1B283> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff907ee000 -
    0x7fff907fefff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff907ff000 -
    0x7fff90888ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
    0x7fff90894000 -
    0x7fff9097bff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff9097c000 -
    0x7fff909acfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff909ad000 -
    0x7fff909dcfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff909ea000 -
    0x7fff90a59ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff90a5a000 -
    0x7fff90bc8ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff90bd5000 -
    0x7fff90c1cfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff90c1d000 -
    0x7fff90c20ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff90c21000 -
    0x7fff90c2cfff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff90c6e000 -
    0x7fff90d37fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff90d38000 -
    0x7fff90d3ffff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff90d40000 -
    0x7fff90d65ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff90d66000 -
    0x7fff90dcaff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff90dcb000 -
    0x7fff90e04ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff9137c000 -
    0x7fff91397ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
    0x7fff913d7000 -
    0x7fff91400fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff91436000 -
    0x7fff91477fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff9151b000 -
    0x7fff91535fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
    0x7fff91536000 -
    0x7fff91536fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff91537000 -
    0x7fff91544ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff91545000 -
    0x7fff9154dff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff9154e000 -
    0x7fff9163fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff9164d000 -
    0x7fff916cdfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff916d7000 -
    0x7fff916d7ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff91792000 -
    0x7fff917afff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff917fa000 -
    0x7fff91822ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x7fff91d94000 -
    0x7fff91da6fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff91da7000 -
    0x7fff91daaffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff91dab000 -
    0x7fff91db5ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff91db6000 -
    0x7fff91e20ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff91e21000 -
    0x7fff9273d05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff9273e000 -
    0x7fff927a2ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff927a3000 -
    0x7fff927a4ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff92933000 -
    0x7fff92935fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff92936000 -
    0x7fff9293afff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/syste

  • I tried to download some photos from a corrupted CD and now every time I try to open iPhoto the frame pops up but nothing will load.  I just get the spinning color wheel.  Any ideas???

    I tried to download some photos from a corrupted CD and now every time I try to open iPhoto the frame pops up but nothing will load.  I just get the spinning color wheel.  Any ideas???

    What version of iPhoto? Assuming 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    Hey vcomfort6,
    Please ensure that you are using Adobe Acrobat and not Reader to convert PDF file to word or excel.
    Could you tell me whether it is a scanned document? Does this happen with all PDFs or any specific one?
    Do you get any error message? What exactly happens when you try doing the same?
    Hope to hear from you.
    Regards,
    Anubha

  • Cannot open iTunes. I get the message" the file--iTunes library.itl cannot be read because it was created by a newer version of iTunes. How do I proceed?

    cannot open iTunes. I get the message" the file--iTunes library.itl cannot be read because it was created by a newer version of iTunes. How do I proceed?

    Had same problem and solved it without having to reinstore any music or movies:
    1. Delete old Library file
    2. Go to the 'Previous iTunes Libraries' folder and copy one of the earlier files - note, they have a date extension, e.g. 'iTunes Library 2011-11-01'.
    3. Paste this file in your iTuners folder and rename file by removing the date extension -  'iTunes Library'
    You should have all your music and paylists in tact, unless it was a really old previous file.

  • I can't open RAW photos (new canon eos 5.1) in bridge (cs5.1)- just get the logo

    Why can't I can't open RAW photos (from an new canon eos 5.1) in Bridge (cs 5.1)- just get the logo, no thumbnail, works in Finder.

    Ah ha!
    At long last, do we now know the true identity of "Yammer"? Keith Nuttall?
    Hope so. With all the experience and intelligence shown in Yammer's previous posts it would make total sense.
    I for one cannot understand why people do not post under their real names. And I'm not prepared to say why. I'll let you guess.
    If it is you Keith, you have nothing to lose and everything to gain by letting the community know who you really are. It would give much more weight and authority to your posts for the casual forum participants who have not had a long-standing familiarity with your previous very insightful and helpful contributions.
    Just my 2 cents. Don't care tuppence whether or not anyone disagrees with me.

  • Trying to open Aperture, but I get the message, "There was an error opening the database for the library "/Users/davewasson/Pictures/Aperture Library.aplibrary". - and it forces me to quit. What do I do?

    Trying to open Aperture, but I get the message, "There was an error opening the database for the library “/Users/davewasson/Pictures/Aperture Library.aplibrary”. - and it forces me to quit. What do I do?

    Dave-
    You can try opening the old (problem) library by launching Aperture into Library First Aid mode and choosing to Repair (first option) or Rebuild the library. Before doing this, make a backup copy of the old library, since both Repair or Rebuild will write changes to the library database.
    Repair is the faster and less drastic option, so try that first: After backing up your library, hold down both the Option and Command keys while dragging and dropping the problem library on the Aperture icon. The Photo Library First Aid window appears. Select Repair Database, then click Repair. After some time Aperture should open the library, if possible.
    If that fails launch Aperture back into Library First Aid and select Rebuild Database. Depending on the size of your library this operation could take some time, up to several hours for a very large library. When the main window appears you may have some extra Recovered folders/projects. This operation rebuilds the library from scratch and is usually successful at reviving problem libraries.

  • I would like to purchase Contribute. We currently do not have any of the creative suites or Contribute. How much does it cost to just get the single user for Adobe Contribute CS5? And how do I purchase that?

    I would like to purchase Contribute. We currently do not have any of the creative suites or Contribute. How much does it cost to just get the single user for Adobe Contribute CS5? And how do I purchase that?

    I think it's just a little over $200 if you don't have an older version to upgrade. Around $100 if you do.
    You can get it at www.adobe.com/products/contribute.html.
    Click the "buy" button (top right of the page) then select "full" next to where it says "I want to buy". Add it to your cart (at that point you should get the exact price).

  • Getting the user name who has accessed a file available in Shared Location

    Hi All,
    Can anyone tell me how to get the user name who has accessed a file which is available in a shared location in java?
    Thanks in advance
    Regards
    Senthil Kumar.S

    You can't do it in pure Java.

  • I've just downloaded facetime and every tie I attempt to open it I get the message"there was a problem with facetime you need to quit and reopen facetime" I've tried this but  I just get the same message again and again

    i've just downloaded facetime and every tie I attempt to open it I get the message"there was a problem with facetime you need to quit and reopen facetime" I've tried this but  I just get the same message again and again

    Hello tadom,
    Thanks for the question. The following article outlines the exact error message you described, and a potential resolution:
    OS X: "An internal FaceTime error occurred" alert after clicking Facetime icon in the Dock
    http://support.apple.com/kb/TS4457
    Thanks,
    Matt M

  • The file "Acceptance Letter.pages" doesn't exist. Since installing Yosemite on MacBook Pro I cannot save or export from Pages. Just get the message at beginning of this post. How to solve problem?

    I cannot save or export from Pages since installing Yosemite on MacBook Pro . I just get the message at beginning of this post “Acceptance Letter.pages” doesn’t exist or whatever file title I have inserted How to solve problem?

    Thanks Peter but I was not seeking to store with I-Cloud. In fact I never store documents with I-cloud.
    I was in fact trying to store the files to Documents, which is where I usually keep such things.
    Have now discovered that if I leave the file untiled and simply close it, rather than saving it then it will save, oddly, to Documents. I then have to re-title it and move to the folder I want it in.
    Despite the above, even once it is titled and saved in Documents then if I reopen it I still cannot then Export it to a Word or PDF file. I still just get the message . xxxxxx.pages does not exist!
    Bad news as I am constantly exporting documents to Word and PDF to send to others who do not use a Mac

Maybe you are looking for

  • Layout/column width displaying differently in IE...

    I'm having a problem getting my Spry menu all in one horizontal line. On the rest of my site, and in Chrome and Firefox, the navigation at the top looks as it should. But on this page only, and only in Internet Explorer, the 2 menu items on the right

  • Primary key violation exception in auto increment column

    Hi All, I am facing one issue in Multi threaded environment. I am getting Primary key violation exception in auto increment column. I have a table and the primary key is the auto increment column, and I have a trigger which is populating this column.

  • 3 Master Sockets in the same room

    So I have 3 Master sockets in one room (yes don't know why there are so many in the first place, previous owner probably) so I have 3 master sockets the 3rd still has the bt piper logo and the first one has the t logo so I might plan to move the home

  • Firefox crashes when submitting info to websites

    I recently got a virus which could not be cleaned. I had to format my C drive and reinstall win XP. After reinstalling, firefox began to crash when submitting info to websites, or pressing linked buttons on some websites. I have the latest version of

  • Software inst question

    Hi Very basic question here. At the top of the channel strip in software inst you have "settings" where i chose an ultrabeat drum kit. But lower down at the i/o box you can also choose an ultrabeat kit? Is the settings section kind of like a effects