Problem on save an waveform

hellow!anyone can tell me how to save a waveform,i try to use "write file.vi"to save,but i can not get the file which has the following format:
1.0,2.0
1.1.2.5
what can i do to get such data format?thanks a lot!

Hello �
I am afraid it was not very clear to me what you meant by 1.0, 2.0, 1.1.2.5 format. To save a waveform you can use the Write Waveforms to File.vi. If you want to save your waveform to a spreadsheet you can use the Export Waveforms to Spreadsheet File.vi which will convert your waveform to a text string and write the string to a file.
Hope this helps!
S Vences
Applications Engineer
National Instruments

Similar Messages

  • Urgent help to save a waveform as jpeg to a specifi folder on my pc

    Hello
    I'm practically very new to labview and maybe even to the forum that I might be posting this question in the wrong place (sorry about that).
    I need urgent help on the following issue (prob. a very easey one)
    here is a picture copy of one portion of my vi:
    I'm able to save the data in text format, no problem there. it saves the dat file into C/NLdat folder. this is ok.
    I also want to save the waveform chart into same folder NLdat. I did the right click on "waveform > create invoke node> get image" but doing this is not saving my jpeg anywhere. could you please show me step by step how to save it (what type of things I need to use specifically, as I feel like a idiot now)
    Thank you so much!
    Attachments:
    gk jpeg.jpg ‏42 KB

    You also need to make sure that getting the image happens after the xy-graph has been updated. Currently both things happen in parallel and there is no guarantee what happens first. there is a 50% chance that the image contains stale data.
    LabVIEW Champion . Do more with less code and in less time .

  • Problem in "Save & refresh data" in epm ribbion

    Hi Experts,
                     I got a problem in Save data option .
    I had a report with values but now i changed it into input-form to enter values . After entering my values i'm clicking on SAVE DATA button in epm tab but my problem is it is showing success but the data in the input-form is not changing...
    can anyone provide me solution please................

    Thanks for reply, but my problem is that it is not saving the data in the cube dimension, must apply the notice specified above.
    Greetings and Thanks

  • Problem in Save and Save As Option

    Hi All,
    I hv developed a swing application in that,
    I hv a problem in save and saveas option. When i click "saveAs" and choose a directory the file is getting saved to the directory which i choose. And after that if change anything and click "Save" the file is saved to the default directory i.e the program execution directory.
    Is there anyway to change this. Kindly help me.
    Thanks in Advance.
    ss

    First thing is not to cross-post.

  • Save a waveform chart

    Hello!
    I am trying to save a Waveform chart into a file usin the Save waveform to a file.
    I have been doing test with ramdom numbers in little programs and I was able to save then in waveforms, but I can not do the same in the program that recieves the serial data.
    I have attachet my program.
    I well be be gratefull if someone could help me. I am sure is a little thing what is wrong but I can not find it.
    Thank you for your help.
    Angel
    Attachments:
    cliente_grava.vi ‏112 KB

    And unless you only want only the very last acquisition recorded, you're going to have to change your VI. When the while loop stops, all it passes to the write waveform is the very last 1D array captured. If you want all data saved, put the write inside the while so that with every iteration you append to the same file. Or, turn on indixing where the 1D array exits the while loop. This will create a 2D array of all data acquired. Also, using Write Waveforms to file is probably not the best function unless you are actually creating a waveform datatype with timing info. Write to Spreadsheet will write a 2D array of DBLs or create a waveform datatype inside the while loop

  • Save a waveform in a txt file

    Hello,
    I just want to save a waveform in a txt file in the simple format : Time (s)[tabulation]Current (A) instead of the labview preformatted spredsheat format time[tabulation] Y
    1904-01-01  01:00:00.000000 0.000335  0  

    Please keep to your original thread, otherwise the information gets scattered and the forum poluted.
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • Save tektronix waveform into csv file

    Hello,
    I am trying to save the waveform that from tektronix oscilloscope into a csv file by using Write to the Spreadsheet.vi .
    But only one data is in the spreadsheet? How should I do this?
    Thanks,

    tian66 wrote:
    I also have some data coming from the multimeter and I would like to save them in one spreadsheet. Thats why I use the write to the spreadsheet.vi
    Is that doable?
    Thanks
    In that case, you just want to get the Y component of the waveform, which is an array of the Y values.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to save a waveform from TDS3000 series oscillosco​pe to PC via GPIB?

    Hi, I'm a summer intern and I've been recently assigned the task to transfer a telecom pulse mask waveform from a TDS3054 to the PC via GPIB. My question is, is there anyway that I can save the waveform on the scope and transfer the file onto my PC? Or even better yet, save the waveform directly onto my PC in a spreadsheet format?

    First, download the instrument driver for the TDS3054 scope from National Instruments' Instrument Driver Network. Depending on what software you have installed on your system, you may need to download additional software (look at the "Required Software" section). If you have Measurement Studio 6.0 and the NI-GPIB driver, you should have everything you need.
    Once you've installed the instrument driver, look at the instructions that came with the instrument driver for how to save and read from your oscilloscope, and look at the instructions here for how to use that instrument driver with Visual Basic 6.0.
    TonyH
    Measureme
    nt Studio

  • Problem with SaveAs function using random paths.

    The Setup:
    Part 1) I have a folder-level script that allows me to perform a SaveAs function from within forms. I do this as a way to save the document quietly in the background. The effect is that the file is overwritten by a copy of itself. The script is:
    var mySaveAs = app.trustedFunction( function(oDoc,cPath,cFlName)
        app.beginPriv();
        cPath = cPath.replace(/([^\/])$/, "$1/");
        try{
            oDoc.saveAs(cPath + cFlName);
        }catch(e){
            app.alert("Error During Save");
        app.endPriv();
    Part 2) From within my documents, I perform the save by calling the function below:
    function runSave()
    {if(typeof(mySaveAs) == "function") {
        var pathArray = this.path.split("/");
        var myFileName = pathArray[pathArray.length-1];
        var cPath = this.path.slice(0,myFileName);
        mySaveAs(this, cPath, myFileName);
    } else {
        app.alert("Missing Save Function\n" + "Please contact forms administrator");
    Part 3) I have several large forms that utilize an autosave to call the save function according to a time interval of 5 minutes, using:
    app.setInterval(runSave(), 300000);
    The Problem:
    Part 1) The autosave feature works fine and it works silently in the background. However, I start to experience problems when I have two forms open at the same time. If, for example, I have a form from one folder open, and open a form from a second folder, the save feature will sometimes save the active document to it's original folder (as intended, overwriting itself and creating an autosave) or sometimes save to the second document's original folder. This leaves me with an updated (autosaved) copy of the document in the wrong folder, and a non-updated copy in the original folder. This seems to vary depending on which document I opened last and/or which document is currently active. Though I can't seem to find the right combination.
    It's as thought the "this.path" is getting confused.
    Part 2) Worse still, if the two documents have the same name, as is often the case with these forms, any incorrect filing when saving causes an overwrite of the second document and loss of data.
    Part 3) To makes things maddening, this also happens at times when no second folder or second document is open. Instead, the misfiling saves the single, active document to a recently accessed folder. For example, I'll open a local folder and open a Word doc, close the doc and the folder, go to a different folder in a different root (a networked folder), open the form, and it autosaves to the local machine in the folder with the Word doc. So now not only do I have a non-updated copy in my correct folder, I have no idea where the updated copy was actually saved to until I come across it some time later.
    Part 4) Again, worse still, the previously accessed folder might happen to be one that contains a document with the same name, and that document gets overwritten by the autosave. I'll have no idea that the form has been overwritten until I happen to open it some time later and see that it contains data from a totally different form.
    What is going on and how do I stop it?
    Adobe Acrobat X Pro on a PC.

    Thank you, that is helpful to understand. I'd like to keep it as 3 parameters, as all my documents currently output 3 to the trusted function. And I'd still like to keep the error catch, but I'm not sure why the previous trusted function from the tutorial is no longer working, so I just want to run this by you:
    safeSaveAs = app.trustPropagatorFunction(function(theDoc,thePath,theFileName){
        app.beginPriv();
        var fullPath = (thePath + theFileName);  
        try {
            theDoc.saveAs({cPath:fullPath});
        } catch(e) {
            app.alert("Error During Save");
        app.endPriv();
    myTrustedSaveAs = app.trustedFunction(function(theDoc,thePath,theFileName){
            app.beginPriv();
            safeSaveAs(theDoc,thePath,theFileName);
            app.endPriv();

  • Problem with Save Password for Network

    Hello,
    I have a problem with wireless for my Macbook pro.
    I can't save an access for any network. alwayse ask me to write password.
    the report for the problem is:
    Process:         System Preferences [5321]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         7.0 (7.0)
    Build Info:      SystemPrefsApp-1750100~19
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [174]
    Date/Time:       2011-05-09 00:11:24.058 +1000
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          158710 sec
    Crashes Since Last Report:           56
    Per-App Interval Since Last Report:  7920 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      A5DC5407-56A8-4389-9C63-9126A7D28BE6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000060
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    __NSCFType
    objc[5321]: garbage collection is ON
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.framework.Apple80211    0x00007fff83dc997f __ACKnownNetworksCopy + 246
    1   com.apple.framework.Apple80211    0x00007fff83dc9f6d __ACKnownNetworksFindCopy + 27
    2   com.apple.framework.Apple80211    0x00007fff83dc7d23 __synchronizeWithKnownNetworksCopy + 188
    3   com.apple.framework.Apple80211    0x00007fff83dcd5b0 ACInterfaceSetPreferredNetworks + 36
    4   ....networkpreferences.airport    0x000000010235a4a8 AirPortUSB_GetDeviceList + 61311
    5   com.apple.preference.network      0x0000000118a939cf MyBrowserCallBack + 760
    6   com.apple.AppKit                  0x00007fff83fc0e9a -[NSApplication sendAction:to:from:] + 95
    7   com.apple.AppKit                  0x00007fff83fc0df9 -[NSControl sendAction:to:] + 94
    8   com.apple.AppKit                  0x00007fff8404c76b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    9   com.apple.AppKit                  0x00007fff8407d2aa -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    10  com.apple.AppKit                  0x00007fff8404b215 -[NSControl mouseDown:] + 624
    11  com.apple.AppKit                  0x00007fff83f6534f -[NSWindow sendEvent:] + 5409
    12  com.apple.AppKit                  0x00007fff83e9aa86 -[NSApplication sendEvent:] + 4719
    13  com.apple.systempreferences       0x000000010000724e 0x100000000 + 29262
    14  com.apple.AppKit                  0x00007fff83e314da -[NSApplication run] + 474
    15  com.apple.AppKit                  0x00007fff83e2a1a8 NSApplicationMain + 364
    16  com.apple.systempreferences       0x0000000100001cf4 0x100000000 + 7412
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff8599f12a kevent + 10
    1   libSystem.B.dylib                 0x00007fff859a0ffd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff859a0cd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff859a07fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff859a0128 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff8599ff4a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff859a035c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x00007fff859c9e52 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff8865a498 __CFSocketManager + 824
    2   libSystem.B.dylib                 0x00007fff859bf4f6 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff859bf3a9 thread_start + 13
    Thread 4:  Dispatch queue: Garbage Collection Work Queue
    0   libSystem.B.dylib                 0x00007fff8598629a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff8598690d mach_msg + 59
    2   com.apple.SystemConfiguration     0x00007fff8038cb81 configclose + 88
    3   com.apple.SystemConfiguration     0x00007fff8038c9b5 __SCDynamicStoreDeallocate + 76
    4   com.apple.CoreFoundation          0x00007fff886ba3d7 -[__NSCFType finalize] + 39
    5   libobjc.A.dylib                   0x00007fff8482af67 finalizeOneObject + 48
    6   libauto.dylib                     0x00007fff852d23e5 Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 85
    7   libobjc.A.dylib                   0x00007fff8482ab5c batchFinalize + 64
    8   libobjc.A.dylib                   0x00007fff8482ac40 batchFinalizeOnTwoThreads + 98
    9   libauto.dylib                     0x00007fff852cc147 Auto::Zone::invalidate_garbage(unsigned long, unsigned long const*) + 71
    10  libauto.dylib                     0x00007fff852bcb31 auto_collect_internal(Auto::Zone*, unsigned int) + 481
    11  libauto.dylib                     0x00007fff852bd0cd auto_collection_work(Auto::Zone*) + 157
    12  libSystem.B.dylib                 0x00007fff859c2284 _dispatch_call_block_and_release + 15
    13  libSystem.B.dylib                 0x00007fff859a0df2 _dispatch_queue_drain + 251
    14  libSystem.B.dylib                 0x00007fff859a0c54 _dispatch_queue_invoke + 57
    15  libSystem.B.dylib                 0x00007fff859a07fe _dispatch_worker_thread2 + 252
    16  libSystem.B.dylib                 0x00007fff859a0128 _pthread_wqthread + 353
    17  libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff8599ff4a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff859a035c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff8599ffc5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000008  rdx: 0x0000000000000000
      rdi: 0x00007fff83dd6480  rsi: 0x01d4b4ebf0770d93  rbp: 0x00007fff5fbfee90  rsp: 0x00007fff5fbfee40
       r8: 0x00007fff83dd6480   r9: 0x0000000000000000  r10: 0x0000000200473560  r11: 0x00007fff5fbfed70
      r12: 0x00000001020714e0  r13: 0x0000000000000000  r14: 0x0000000200498b60  r15: 0x00000002004ad5a0
      rip: 0x00007fff83dc997f  rfl: 0x0000000000010246  cr2: 0x0000000000000060
    Binary Images:
           0x100000000 -        0x10001eff7  com.apple.systempreferences 7.0 (7.0) <AC669017-E97F-61B7-1303-A21DABA33797> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x100719000 -        0x10073cff7  com.apple.SystemConfiguration.EAP8021X 10.0.1 (1.0) <B4A89B96-3E7E-B8AF-C2DF-9A47E7E8F984> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
           0x10234a000 -        0x10237cfe7  com.apple.networkpreferences.airport 6.2.1 (621.1) <E3190071-E108-44AC-70DF-7936D21F26AC> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Air PortPrefs.bundle/Contents/MacOS/AirPortPrefs
           0x1023cd000 -        0x1023f3fff  GLRendererFloat ??? (???) <0AF0FF0D-6FD6-B5FA-9991-C8F58E8F1DD4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x1023fe000 -        0x102402fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <5D9C8E0B-2B62-6EC8-0590-476A73C006FB> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x102407000 -        0x10240dfff  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <DDDE04F6-09A4-2DE5-CD04-B6DA707D3713> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x115743000 -        0x1158d4fef  GLEngine ??? (???) <7B2CD458-D828-6A44-C918-C194838974D5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x115905000 -        0x11608cfff  com.apple.GeForceGLDriver 1.6.26 (6.2.6) <D469864E-34A6-37EE-A01D-7C2AF0223D35> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
           0x116486000 -        0x1168a9fef  libclh.dylib 3.1.1 C  (3.1.1) <0774DA8C-734E-2639-0F37-CCB20D17CDBD> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x118a73000 -        0x118b0ffff  com.apple.preference.network 2.4.1 (2.4.1) <F5FF8159-4029-430B-9D2A-57DC5A392FD2> /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network
           0x11a247000 -        0x11a266ff7  com.apple.airport.clientdialogs 6.2.1 (621.1) <4EB0EB03-71BC-4622-6BB8-004D81E6256A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Cli entDialogs.bundle/Contents/MacOS/ClientDialogs
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff80255000 -     0x7fff8026bfff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8026c000 -     0x7fff80277ff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff80278000 -     0x7fff80328fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff80329000 -     0x7fff8032bfff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8032c000 -     0x7fff8034dfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8037e000 -     0x7fff80383fff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff80384000 -     0x7fff803c5fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff803c6000 -     0x7fff80809fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8080a000 -     0x7fff80923fef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8095a000 -     0x7fff8099bff7  com.apple.MediaKit 10.4 (486) <5ABA1213-744C-5C65-CA8E-84BE866DB7B4> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8099c000 -     0x7fff8099efff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8099f000 -     0x7fff809dbfe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <1E041185-131C-C237-C250-38BE933A269A> /usr/lib/libcurl.4.dylib
        0x7fff809dc000 -     0x7fff80a1dfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff80d62000 -     0x7fff80d8afff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff80d8b000 -     0x7fff80dd5ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff80e3f000 -     0x7fff80e4bfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff8105b000 -     0x7fff81183ff7  com.apple.MediaToolbox 0.484.20 (484.20) <1C80C29E-6FDB-71F3-B465-FF92A30BBF9D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff811ce000 -     0x7fff811e9ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff811ea000 -     0x7fff81301fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff81302000 -     0x7fff8134bfef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8134c000 -     0x7fff81850fe7  com.apple.VideoToolbox 0.484.20 (484.20) <B01F6A80-D197-2127-2A05-49F9446EF6E5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff81851000 -     0x7fff81860fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff81861000 -     0x7fff818a9ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff818aa000 -     0x7fff818bfff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff818c0000 -     0x7fff8197dfff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff819eb000 -     0x7fff81ba9fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff81baa000 -     0x7fff81babff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff81c0f000 -     0x7fff81c16fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff81ca1000 -     0x7fff81d79fe7  com.apple.DiscRecording 5.0.8 (5080.4.1) <41A9AC05-7247-599C-7CED-89BACB63CDB6> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff81d7a000 -     0x7fff81dbdfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff81dbe000 -     0x7fff81dcbfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff81de2000 -     0x7fff81e11fff  com.apple.framework.Admin 4.5 (4.5) <8F5A3803-7C4F-16DA-1B74-B9A1EF92614B> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff81e12000 -     0x7fff81e18ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff81e19000 -     0x7fff81e1aff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81e1b000 -     0x7fff81e41fe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81e42000 -     0x7fff81e85ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81e86000 -     0x7fff81e89fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81e8a000 -     0x7fff81f8afef  com.apple.DiskImagesFramework 10.6.5 (289) <B4C7A42F-241C-F3C7-8977-18B620CB66D9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff820f5000 -     0x7fff820f5ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff820f6000 -     0x7fff82145ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff82146000 -     0x7fff82166ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff822e6000 -     0x7fff822e6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff822e7000 -     0x7fff8261bfff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8261c000 -     0x7fff826a8fef  SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff826a9000 -     0x7fff82818fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff82819000 -     0x7fff82819ff7  com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8281a000 -     0x7fff8286fff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff828e3000 -     0x7fff828e7ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff829e3000 -     0x7fff829e8ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff829f5000 -     0x7fff82a3cff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82aac000 -     0x7fff82b6efef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82b6f000 -     0x7fff82ba2fff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff82c8a000 -     0x7fff82d3ffe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82d40000 -     0x7fff82d7bfff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff83a28000 -     0x7fff83a28ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff83a29000 -     0x7fff83cb1fef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff83cb2000 -     0x7fff83d98fef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff83d99000 -     0x7fff83d99ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff83d9a000 -     0x7fff83da0ff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff83da1000 -     0x7fff83da7ff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff83da8000 -     0x7fff83dddfef  com.apple.framework.Apple80211 6.2.4 (624.2) <B2CB69CE-A4F5-D70F-03DE-CF985D5558A2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff83dde000 -     0x7fff83e27ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff83e28000 -     0x7fff8481efff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8481f000 -     0x7fff848d5fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
        0x7fff84978000 -     0x7fff8499fff7  com.apple.frameworks.preferencepanes 13.5 (13.5) <C79DCAF8-302A-843F-BE9B-407DDA682A8E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff849f0000 -     0x7fff84a80fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff84a81000 -     0x7fff84a84ff7  com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84a91000 -     0x7fff84b16ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff84ba7000 -     0x7fff84bbdfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff84bbe000 -     0x7fff84bd2ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff84c89000 -     0x7fff84cacfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84cad000 -     0x7fff84e65fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff84e66000 -     0x7fff84e75fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84e76000 -     0x7fff852a1fef  com.apple.RawCamera.bundle 3.6.4 (561) <C4AB0054-B2C8-246E-0F17-98F4BD5BE94C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff852a2000 -     0x7fff852b8fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <F006B2C9-C03F-F863-1FBB-952EC77AE699> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff852b9000 -     0x7fff85305fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff85306000 -     0x7fff853bdff7  com.apple.Bluetooth 2.4.0 (2.4.0f1) <3F3F8097-B4A7-D69E-733E-968BB1B152BA> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff853be000 -     0x7fff853d2fff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff853d3000 -     0x7fff85422fef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff854ea000 -     0x7fff85515ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff8555e000 -     0x7fff855ddfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1CF0AE2D-0E85-D41B-EC2D-8CFD298AB5A0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff85618000 -     0x7fff85659ff7  com.apple.CoreMedia 0.484.20 (484.20) <C1CC2CE5-0606-5F87-9445-ED7AF1DA31B6> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85662000 -     0x7fff8573ffff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff85740000 -     0x7fff857a0fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff857a1000 -     0x7fff85862fef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff85863000 -     0x7fff85984fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85985000 -     0x7fff85b46fff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff85f89000 -     0x7fff85fc3fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff85fc4000 -     0x7fff8607dfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff86191000 -     0x7fff862c6ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff86378000 -     0x7fff86383ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff864d8000 -     0x7fff86ce2fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86e44000 -     0x7fff86e47ff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86e48000 -     0x7fff86e4cff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff86e4d000 -     0x7fff86eb7fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff86eb8000 -     0x7fff86eb8ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff86ee3000 -     0x7fff86ee4fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86ee5000 -     0x7fff86ee5ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86f20000 -     0x7fff8761d06f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8761e000 -     0x7fff87624fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff87625000 -     0x7fff87642ff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff87643000 -     0x7fff87941fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff87942000 -     0x7fff87950ff7  libkxld.dylib ??? (???) <F90EDFE8-708A-3046-E403-A3B536FCFA43> /usr/lib/system/libkxld.dylib
        0x7fff87951000 -     0x7fff87982fff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff87bff000 -     0x7fff87c3cfff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87c3d000 -     0x7fff87d7bfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff87e87000 -     0x7fff87ef8ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff87efb000 -     0x7fff87f06ff7  com.apple.bsd.ServiceManagement 1.3 (1.3) <CEB99ECF-4C55-C3DF-EE64-35903BF7B690> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff87f8b000 -     0x7fff8820efe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff88281000 -     0x7fff882d3ff7  com.apple.HIServices 1.8.2 (???) <80D63B54-3F43-080C-038A-70038D9AF325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff882e2000 -     0x7fff88382fff  com.apple.LaunchServices 362.2 (362.2) <87E172DB-2C0E-E2E5-2A75-FB4284AECDAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff88383000 -     0x7fff88395fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff883f9000 -     0x7fff884cbfe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff884f7000 -     0x7fff88574fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff885ec000 -     0x7fff88763fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8896e000 -     0x7fff889b3fff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff889b4000 -     0x7fff889edfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff889ee000 -     0x7fff88d8bfe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff88d8c000 -     0x7fff88dc9ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88e0a000 -     0x7fff88e0ffff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff88e10000 -     0x7fff88e8eff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff890fa000 -     0x7fff89113fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff89114000 -     0x7fff89125ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff89126000 -     0x7fff8914bff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff89152000 -     0x7fff89182fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff89183000 -     0x7fff8921dff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,5, BootROM MBP55.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.47f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0x04600000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000

    I'm still waiting

  • Erratic problems with "save as" in CS6

    I have been having problems with the "save as" function in Photoshop CS6. Or, at least, the function is not working consistently with the way it worked in CS5 and earlier.
    Specifically:
    When I save an image with a new name, so as not to change the original image, the new file is saved, but the new name does not appear on the image tab. The name on the image tab remains the origninal, so that if I were to "save" more changes, they would overwrite the original image, not the new one. In CS5 and earlier, when you did a "save as", the name in the tab changed to the new name, and you continued editing the image you had just saved, not the original.
    The file type on "save as" is always PSD, not JPG. If there is an option or preference to select the default save file type, I have not been able to find it.
    I have reviewed the other threads in this forum about "save as" problems, and have confirmed that my plug-ins folder is empty and I do not have any alternate plug-ins folder specified in preferences. I did not move any plugins from earlier versions to this version.

    > How are you saving the file (i.e., in what format)? 
    I opened a JPG file, made minor changes (crop, levels) and clicked "File|Save As...". The dialog box came up with PSD, not JPG. I had to change it to JPG to save.
    > Is the "As a Copy" checkbox checked?  If so, it will not consider the document name changed.
    No. "As a copy" is not checked.
    > If your file type is defaulting to PSD, that says you've done something to your file - ...
    Yes, I am used to that behavior in earlier versions of Photoshop, which I have been using since version 4.
    > I  suspect there's no problem here in PS CS6 (I certainly haven't detected one), but rather something
    > you've done to your file is what's making work the way you're seeing it.
    I did not add anything to the file. The only changes I made were cropping and levels. No adjustment layers were created, no channels changed, no change to bit level - I know how to do those things, have done so in the past in earlier versions, and am familiar with the behavior of PS when you do so. This is not that.
    > FYI, I just tested this in PS CS5.
    Version CS5 works fine. When I open the same images in CS5, make the same changes, and click "save as..." it acts exactly as I expect it to - it defaults to JPG and the file name on the tab changes.
    This is a version CS6 issue, not something I'm doing, that I know of. I am not ruling out that there might be something I'm doing or in the setup which is causing the behavior, but given I am only doing very simple editing on these images and I have not changed the default CS6 Beta setup, I have no clue what that might be.
    It is erratic, as I said in the header - sometimes the program reacts the way I expect, more often it does not and I get this problem.

  • Problem with save as PDF with FrameMaker 12

    Hey,
    I just received FrameMaker 12 and I like it.
    But I'm having problems when I use the save as PDF function.
    It takes very long time to generate the PDF (at least 30 minutes for a book)
    The fonts and spaces are messed up in the finished PDF. Some text blocks have paragraphs running over the margin
    I have tried a couple of different things:
    saving as MIF and back to FM
    uncheck rely on system fonts only, do not use document fonts
    but nothing have worked yet, please help I'm getting frustrated.

    Hi Jeff,
    After I realized that I didn't make the setprint.ini file, I did that and deleted the printer=adobe pdf in the .dll file. But it still doesn't work. I save to pdf anyway, I was just trying to optimize my usage by making the default printer in FM the adobe pdf printer.
    Anyway, the .dll file from above has the below information in it. I don't know what it means, but it has errors all over. Does this make a difference and what does it mean?....Thanks!
    TLOSS error
       SING error
        DOMAIN error
      R6028
    - unable to initialize heap
        R6027
    - not enough space for lowio initialization
        R6026
    - not enough space for stdio initialization
        R6025
    - pure virtual function call
       R6024
    - not enough space for _onexit/atexit table
        R6019
    - unable to open console device
        R6018
    - unexpected heap error
        R6017
    - unexpected multithread lock error
        R6016
    - not enough space for thread data
    abnormal program termination
        R6009
    - not enough space for environment
    R6008
    - not enough space for arguments
       R6002
    - floating point not loaded
        Microsoft Visual C++ Runtime Library   
      Runtime Error!
    Program:    ... <program name unknown>        ð?   À~ PA   €ÿÿGAIsProcessorFeaturePresent   KERNEL32    e+000                    EEE     50 P     (8PX   700WP           `h````  ppxxxx                     ( n u l l )     (null)  GetLastActivePopup  GetActiveWindow MessageBoxA user32.dll          ÿÿÿÿÇ´  Ë´      ÿÿÿÿVà Zà ÿÿÿÿÅà Éà ÿÿÿÿÇ  ¡Ç  ÿÿÿÿQÈ  UÈ  SunMonTueWedThuFriSat   JanFebMarAprMayJunJulAugSepOctNovDec    TZ  1#QNAN  1#INF   1#IND   1#SNAN              À      F        À      F        À      Fìþ          z    à              ¶   ,á            ì    á  (               <á                      @   N   ^   l   „   j   Z   J   8   &   ø  
           .   <   L   Z   j   x   ‚   Œ   ¢   ´   Ä   Ú   î   þ           0   B   N   Z   h   x      ¤   ´   À   Ø   ò           ,   @   T   n   ~   Œ   š   ¨   º   Ê   Ø   ê           4   L   f   ‚   Ž   ž   °   À   Ô   à   ì   ö               Ä   Ú       ˜   ¦   ˆ       œ   ¬   ¾   Ø   ê       ˆ GlobalFree  “ GlobalUnlock  Œ GlobalLock   GlobalAlloc KERNEL32.dll    ClosePrinter  n GetPrinterA | OpenPrinterA  WINSPOOL.DRV    GetFileVersionInfoA
    VerQueryValueA  VERSION.dll  RaiseException 
    GetFileAttributesA  t GetVersion    CloseHandle a SetEndOfFile  4 CreateFileA d SetErrorMode  W DeleteFileA ó _lcreat ò _lclose $ GetModuleFileNameA  > GetProcAddress   LoadLibraryA  ä MultiByteToWideChar & GetModuleHandleA  Õ LockResource  Ç LoadResource  • SizeofResource  £ FindResourceA Ê GetCommandLineA ™ HeapAlloc Ÿ HeapFree  ¢ HeapReAlloc   GetLastError  õ GetCurrentDirectoryA    GetFullPathNameA    GetDriveTypeA  FindClose Š FileTimeToSystemTime  ‰ FileTimeToLocalFileTime ” FindFirstFileA  b SetEnvironmentVariableA } ExitProcess ž TerminateProcess  ÷ GetCurrentProcess   GetEnvironmentVariableA u GetVersionExA  HeapDestroy › HeapCreate  ¿ VirtualFree m SetHandleCount  R GetStdHandle    GetFileType P GetStartupInfoA ² FreeEnvironmentStringsA ³ FreeEnvironmentStringsW Ò WideCharToMultiByte   GetEnvironmentStrings   GetEnvironmentStringsW  ] DisableThreadLibraryCalls ß WriteFile » VirtualAlloc  j SetFilePointer  | SetStdHandle  ª FlushFileBuffers    ReadFile  ¿ GetCPInfo ¹ GetACP  1 GetOEMCP  S GetStringTypeA  V GetStringTypeW  ! CompareStringA  " CompareStringW  ¿ LCMapStringA  À LCMapStringW  p GetTimeZoneInformation  / RtlUnwind USER32.dll  O CoTaskMemFree N CoTaskMemAlloc  @ CoRegisterMessageFilter S CoUninitialize    CoDisconnectObject  ole32.dll           °oÓF    B               8   <   @    ?  O     SetPrint.dll _F_ApiClientInit@16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ö¤   ²          ›¥                  Could not open SetPrint.ini file    success
        failed, error = %i
    Setting printer to "%s"...  Printer =   rt  SetPrint plugin from Sundorne Communications www.sundorne.com
      SetPrint.ini    /restore    /save   winspool    `á  `â  `ã  `ä  `å  `æ  `è  `é  `ê  `ë  `ì  `í  \   <c> .   <u> ..  <r> <v> ..\ FRM %ld ø  ü   „   †   ˆ  Ð4                                                                  ô           ì           à   €O  GetResource Notify  DialogEvent Message Command Quit    Initialize  ClientOutFormat ClientInFormat  ClientSuffix    ClientVendor    ClientFormatId  ClientFacet ClientProducts  FileDescription ClientType  ClientName  \StringFileInfo\040904b0\   Hj  u˜  s˜  “V  ªV  ªV              ÿÿÿÿ
          $ü      øû      Ìû 
       ¨û      |û      Lû      (û      üú      Äú      œú      dú      ,ú       ú  x   ôù  y   äù  z   Ôù  ü   Ðù  ÿ   Àù  š   š                       ( ( ( ( (                                     H                               „ „ „ „ „ „ „ „ „ „                                                                         ‚ ‚ ‚ ‚ ‚ ‚                                                                                                                                                                                                                                                                                                                            .               è‹              –Á  –Á  –Á  –Á  –Á  –Á  Ø   Ø   ð   ð   ÿÿÿÿÿÿÿÿð   ñ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

  • Problem with "save as"

    Bonjour. la boite de dialogue "enregistrer sous" ne s'ouvre plus dans logic pro 8 (sous OS 10.6) . Quelqu'un a t il une solution?
    I can't save a new project on Logic pro 8. The windows "save as" doesn't appear since yesterday but i haven't do any changes in my configuration (Logic pro 8 with OS 10.6). The only thing that happened was a crash using mascine in logic 8. Thank you...

    Windhem:
    No I am not saving as archives... Just Plain SAVE-AS.
    Hangtime: Again my friend, I thank you for the effort, you seem to be a decent person on top of being knowledgeable.
    I have a tenfency to want to agree with you to carry on with the work, but I am persistent, and I figured if what you suggested is the case, (not that it may not be), why the **** did the engineers duplicate a feature by ALSO providing us with Save-As-Archive, when Save-As accomplishes the same pointless goal. A choice with NO choice, kind of silly.... don't you agree?
    I am really, really, really, not undermining your suggestion, (actually I am concerned it may be TRUE, hence my frustration), in a way its comforting to realize I don't have a problem with the software per say.
    I will keep on looking into the matter and see if I can find a loophole around the issue. Will keep you posted if I accompish anything...and so do you PLEASE and Thank you.
    Ralph

  • Problems with "Save as" function in CS6

    Hi,
    One of our employees uses Adobe CS6 and has discovered a problem when they try to use the "save As" function.
    The problem arises when trying to assign filesnames that have a fullstop in them(typically to indicate version numbers) and this then seems to confused with the file extension.
    Is there a workaround or setting within the product that can fix this issue?
    Cheers,
    Andrew

    This has nothing to do with Adobe, this is a general limitation in your operating system's file naming conventions. Some special characters simply are not allowed or reserved by the operating system itself. Since you didn't bother to provide any system info, nobody can advise specifically, but it's probably normal within the bounds of whatever OS you use and the respective region/ language settings.
    Mylenium

  • Problem with "save as" for a lvlib

    Hi guys
    I am trying to make a copy of a bigger LabVIEW project. The whole project is contained within a single project library (lvlib), which has a number of sublibraries. After I choose "save as" for the topmost lvlib, I enter the new library name and location. Finally, the process stops with the following error: 'LabVIEW: Generic error. Cannot save library "xxx.lvlib"'. Nothing is copied. Do you have any ideas where the problem can be?
    Vladimir
    Attachments:
    copy_lvlib_error.PNG ‏3 KB

    Hi JLS
    Thanks for your help. However, if I just copied the VIs into a different folder, their mutual links would not be preserved. This is a major pain when copying bigger LV projects. Copying the whole lvlib solves this issue quite well.
    Actually, I've already solved my problem. There were some invalid VI references in some of my VIs. Since they were included only in disabled diagram structures, the code worked well, but for the lvlib copying, probaby they caused the mentioned problem. Since I removed them, the copying works fine.
    Vladimir

Maybe you are looking for

  • Laser Power Not Calibrated...

    Hi, I tried to burn a DVD-DL last night on my new MacBook Pro, and got an error message that said (something like) Laser Power Not Calibrated. I tried Zapping pram, resetting power admin, resetting permissions, ran disk warrior, created a new account

  • C# use textboxes instead of numericupdowns

    Okay, so i have a program that calculates grades, but there is a problem that i didn't quite think through (people have 0's in their classes) and i have coded my program to not include 0's in the numeric updown. I would like to replace all numeric up

  • Is there a download for extra storage on the ipad2?

    I have an ipad2 with 16gb of storage, and wondered if there was an app I can download to get either 32 or 64gb of storage

  • My Siri is not working with the newest update

    After updating my iPhone with iOS 7.1 my Siri doesn't work. Anyone know how to fix this problem?

  • 6230i error message Please Help!

    Hi Can anyone help me please? I have a nokia 6230i on Orange network but it has been unlocked to any other network. Everytime I switch the phone on I get an error message saying "check connection settings" Can anyone tell me what this means and how I