Director 12 is too slow making clones from 3D models

Why is Director 12 so slow making clones from 3D models? 
It takes 2 minutes to make 1200 clones from 10 very simple 3D models.  And that's only part of the game initialization time. 
The complete game initialization takes 3.5 minutes, including the above 1200 clones, plus other 3D cloning, and other data init.
Users won't wait that long for a game to start.
Please help me out with this.
Here's the Lingo clone initialization code:
<pre>
on initItem nameModel, numModels
  -- every clone has the same shader
  nameShader = "Shader"
  -- init this base model
  -- gObj global points to the source 3d-model cast member
  iModel  = gObj.model(nameModel)
  iShader = gObj.shader(nameShader)
  iModel.transform.rotation = vector(0,0,0)
  iModel.transform.scale    = vector(1,1,1)
  iModel.visibility = #none
  iModel.shaderList[1] = iShader
  iShader.diffuse  = rgb( 0, 0, 0 ) 
  iShader.emissive = rgb( 0, 255, 0 )
  iShader.transparent = FALSE
  iShader.flat = TRUE
  gObj.modelResource(nameModel).lod.bias = 50.0
  -- create a list of clone models -
  if( numModels > 0 ) then
    cloneList = []
    repeat with i = 1 to numModels
      ranStr = getRandomString( nameModel )
      iClone = iModel.clone( ranStr )
      -- add and set available flag to clone
      iClone.userData.addProp( #available, TRUE )
      cloneList.append( iClone )
      -- make clone a child of the rendering group: gGroup
      gGroup.addChild( iClone, #preserveWorld )
    end repeat
    -- add to the model the #clones property and the clone list
    iModel.userData.addProp( #clones, cloneList )
  end if
end initItem
</pre>

@necromanthus,
I use clones for things like non-player-actor models, missiles, and bullets, all of which must be memory-resident in real-time.
When clones are needed, I pull them from the free pool, make them visible, and transform them as required. 
When done with the clones, I make them invisible and return them to the free pool.
In my testing of Director 12, making clones in real-time when they are needed is much too slow for an action game, like a shooter.
The total init time I gave earlier includes many other things besides making clones, but clone making is 40% to 50% of my total init time.
Here's my cloning code after the optimizations -- Note: shader init was removed from initItem(), and the inner loop is now minimal:
on initItem nameModel, numModels
  -- gObj is global pointer to 3D cast member
  -- gGroup is global pointer to rendering group
  iModel = gObj.model(nameModel)
  iModel.transform.rotation = vector(0,0,0)
  iModel.transform.scale    = vector(1,1,1)
  iModel.visibility = #none
  iModel.userData.addProp( #available, TRUE )
  iModel.shaderList[1] = gObj.shader("ModelShader")
  gObj.modelResource(nameModel).lod.auto = TRUE
  gObj.modelResource(nameModel).lod.bias = 10
  gGroup.addChild( iModel, #preserveWorld )
  if( numModels > 0 ) then
    cloneList = []
    repeat with i = 1 to numModels
      iClone = iModel.clone( nameModel & i )
      cloneList.append( iClone )
    end repeat
    iModel.userData.addProp( #clones, cloneList )
  end if
end initItem

Similar Messages

  • Recurce directories is too slow

    Hi, I wrote a function that recurcively goes through directories, but it is very slow. Where is the problem?
    private void getDirectory(String dirName)
    File file = new File(dirName);
    list.add(dirName);
    if(file.isDirectory()) file.listFiles()
    for(int i=0; i<file.listFiles().length; i++)
    getDirectory(file.listFiles().getAbsolutePath());

    for(int i=0; i<file.listFiles().length; i++)
    getDirectory(file.listFiles().getAbsolutePath());
    Oh, man. That's your problem: you're calling file.listFiles() over and over and over, and each time it goes and does the equivalent of a call to "ls".
    Why can't you just:File[] files = file.listFiles();
    for (int i = 0; i < files.length; i++) {
    getDirectory(files.getAbsolutePath());
    Betcha that'll run a hundred times faster.

  • Select Data from aufm too slow

    Hi experts,
    I have a query in my report but its performance too slow.
    is there any proper way or any way to improve the performance of below query.
    SELECT  * FROM  aufm     into table i_aufm          " collecting input material document numbers
             WHERE mblnr GE '4900000000'
               AND mjahr GE '2008'
               AND zeile GT '0'
               AND matnr EQ matnr_101-matnr
               AND werks IN p_werks
               AND charg EQ matnr_101-charg
               AND bwart = '101'.

    Hi,
    1 .Dont use * from any table.
    2. Create  a internal table  that u want to retrieve the data from that table. (Structure).
    Eg:
    types : begin of str_ekko,
               ebeln type ekko-ebeln,
               bsart type ekko-bsart,
               aedat type ekko-aedat,
               endof str_ekko.
    data : itab type table of str_ekko,
            wa_itab type str_ekko.
    In the above u want to take care that while creating the structure u want to look the sequence of fields in the table. in the same sequence u want to create the structure.
    3 . The Select-options fields also wants be in the same field sequence of the table.
    eg : select ebeln bsart aedat from ekko into table itab where ebeln in so_ebeln and                                                                               
    bsart in so_bsart and
                                                                                    aedat in so_aedat.
    4.  If the above things are not working just look the indexes of that table. Just create a secondary index with ur requirement.

  • Laserjet 5000 (with jetDirect 620n): spooling from Windows 7 too slow

    Hi,
    i've installed new drivers for Windows 7 (32 and 64 bit) from HP website but however spooling is too slow. I tried all of drivers (PCL 6, PCL5 and PS). Only the PCL5 driver have an adequate standard of quality.
    What i have to do to increase print performance?
    Thanks
    Alessandro

    BUMP!

  • Query is too slow from bseg selection

    SELECT BELNR BLDAT BUDAT XBLNR GJAHR tcode WAERS AWKEY FROM BKPF INTO
      TABLE
      ITBKPF WHERE BUKRS EQ P_BUKRS AND BELNR IN S_BELNR AND BUDAT IN
        P_BUDAT
        AND STBLG = ''
        AND ( TCODE = 'MIRO' OR
                             TCODE = 'MR8M' OR
                             TCODE = 'MB11' OR
                             TCODE = 'MB1B' OR
                            TCODE = 'MIGO_GI' OR
                            TCODE = 'MIGO_TR' OR
                             TCODE = 'MB1A' ).
       IF SY-SUBRC EQ 0.
              SORT itBKPF.
            ELSE.
              MESSAGE 'No data for the relevant date' TYPE 'A'.
             LEAVE LIST-PROCESSING.
            ENDIF.
    SELECT A1LIFNR A1NAME1 A1ORT01 A1STRAS B1~j_1icstno
      INTO TABLE it_werks
      FROM ( LFA1 AS A1 INNER JOIN j_1imocomp AS B1 ON A1werks = B1werks )
    **********************************************this is too slow*************
    SELECT BUKRS BELNR GJAHR BUZEI BUZID BSCHL SHKZG GSBER MWSKZ
            DMBTR HKONT LIFNR LANDL Matnr werks MENGE EBELP xref3
            INTO CORRESPONDING FIELDS OF TABLE ITABBSEG
            FROM BSEG
            FOR ALL ENTRIES IN ITBKPF
            WHERE BELNR = ITBKPF-BELNR
            AND GJAHR = ITBKPF-GJAHR
            AND ( BSCHL = '86' OR BSCHL = '96' or BSCHL = '89' OR BSCHL = '99'  )
            AND WERKS IN S_WERKS
            AND BUZID <> 'F' .
    ****************************************this is too slow
    Moderator message: Please Read before Posting in the Performance and Tuning Forum
    locked by: Thomas Zloch on Aug 5, 2010 2:08 PM

    You should have provided the full key of the cluster file behind BSEG (RFBLG), every key is in BKPF, so add BUKRS
    SELECT bukrs belnr gjahr buzei buzid bschl shkzg gsber mwskz
           dmbtr hkont lifnr landl matnr werks menge ebelp xref3
      INTO CORRESPONDING FIELDS OF TABLE itabbseg
      FROM bseg
      FOR ALL ENTRIES IN itbkpf
      WHERE bukrs = itbkpf-bukrs
        AND belnr = itbkpf-belnr
        AND gjahr = itbkpf-gjahr
        AND ( bschl EQ '86' OR bschl EQ '96' OR bschl EQ '89' OR bschl EQ '99' )
        AND werks IN s_werks
        AND buzid EQ 'F' .
    You could also extract the whole accounting document in the internal table, and then delete record using the not-database-key selections.
    SELECT bukrs belnr gjahr buzei buzid bschl shkzg gsber mwskz
           dmbtr hkont lifnr landl matnr werks menge ebelp xref3
      INTO CORRESPONDING FIELDS OF TABLE itabbseg
      FROM bseg
      FOR ALL ENTRIES IN itbkpf
      WHERE bukrs = itbkpf-bukrs
        AND belnr = itbkpf-belnr
        AND gjahr = itbkpf-gjahr.
    DELETE itabbseg WHERE
      ( bschl NE '86' AND bschl NE '96' AND bschl NE '89' AND bschl NE '99' )
      OR NOT ( werks IN s_werks )
      OR BUZID NE 'F' .
    In both case, perform some tests with tools like SE30 or ST05.
    Regards,
    Raymond

  • What cable do I need for a full migration from a 2011 MacBook Pro to a new current one-wireless migration way too slow.?

    What cable do I need for a full migration from a 2011 MacBook Pro to a new current one-wireless migration way too slow.?

    All you need is an Ethernet cable.
    Just plug it into both machines. Don't bother with a crossover cable, just a plain old Ethernet cable will do. The Ethernet ports on the Macs are smart and will adjust appropriately.

  • I was charged for a movie that never was downloaded, i asked for it but the conection was too slow and I never was able to have the movie that i asked for...how can i get it without being charged again, who could remove the chage from my Crecit card?

    i was charged for a movie that never was downloaded, i asked for it but the conection was too slow and I never was able to have the movie that i asked for...how can i get it without being charged again, who could remove the chage from my Crecit card?

    You may not be able to get a refund, since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    It's possible they'll make an exception for you, particularly if the problem was on their end preventing the movie from downloading in a reasonable time.
    Good luck.

  • Preview app is too slow to open PDF from Server Snow Leopard

    Hi
    After the Lion update into a MacBook Clients the app Preview has become too slow to open PDF files from Mac server OS Snow Leopard.
    Preview app isn't not slow to open PDF present into local system hard disk.
    Can you help me to solve this?

    i've tested the network connection but it's works perfectly.
    if i open network files with Office or other applications there aren't problems.
    Only preview app is slow to open pdf's from server.

  • New iphone 6 with ios 8.0 crushed and didnt open again. call center told me that use itunes to update 8.0.2 but server is too slow and didnt let me download it. it stopts in the middle of the session. how can i download it from another link or server

    new iphone 6 with ios 8.0 crushed and didnt open again. call center told me that use itunes to update 8.0.2 but server is too slow and didnt let me download it. it stopts in the middle of the session. how can i download it from another link or server. by the way i try to dowload from turkey.

    anyone help me there? )=

  • TP Yoga 15 - Windows: Keyboard response too slow after coming back from hibernation

    I've got the same issue as outlined in this thread for a Y50 - there seems to be a BIOS update to solve it, but what about TP Yoga 15? Quote:Simply put, In keyboard properties , the Repeat delay is default at maximum (eg, holding down a keyboard button and how fast it generates the key strokes). When the system is put in hiberanation, then turned on again to come back, the Repeat delay some how gets decreased to about 2/3 of what it originally is. https://forums.lenovo.com/t5/Lenovo-P-Y-and-Z-series/Re-Y50-Windows-8-Keyboard-response-too-slow-after-coming-back/td-p/1676309/page/1 

    hi guys,
    Can you please provide also these additional information:
    (this is to check if the issue is isolated to a certain model number)
    Model Number (eg. 59-xxxxxx): 
    Place of Purchase (eg. Amazon, Bestbuy, etc.): 
    In addition, the solution from this thread seems to be a good workaround (the app is for Win7 but may also work for Win8.1)
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • I am using iphone 4s ios6.1.2 ...my iphone has become too slow once i have updated from ios 5.1.1..can anyone help me to make my iphone perform batter

    i am using iphone 4s ios6.1.2 ...my iphone has become too slow once i have updated from ios 5.1.1..can anyone help me to make my iphone perform batter

    Standard troubleshooting...
    Try a reset by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    Remove all apps from Recently Used list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Tap and hold any icon in this list until they wiggle
    - Press the red  to delete apps from this list.
    - Press the home button twice when done.
    If still a problem restore with your backup.
    If still a problem restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    If still a problem, it's likely a hardware issue.

  • HT4718 Can't download "aditional components" from recovery. Internet too slow. What do I do now?

    Hello,
    I am overseas for a month and I had to erase my hard drive and do a fresh install of OSX Lion.
    I erased my drive and all went fine. Now I am trying to reinstall the OS from the COMMAND+R menu. The problem is my internet connection here is too slow for the "aditional components" and it ends of hanging on 9 hours or something and then just says it failed to download the aditional components. I now it isn't a hardware issue because I have done this before while I was in the states with a fast conection and it worked both times I have reinstalled the OS.
    I was wondering how large is the "aditional components"?
    What is the point of the Recovery HD if I need to download the recovery from the internet anyway?
    Who was the genius that made the decision to eliminate the install CDS? Espceically when were overpaying for these machines. And what made this genius assume that every one has access to fast internet speeds?
    Thank you,

    And what made this genius assume that every one has access to fast internet speeds?
    Requirements for reinstalling OS X Lion or OS X Mountain Lion
    Reinstalling OS X Lion or OS X Mountain Lion via OS X Recovery requires broadband access to the Internet via Wi-Fi or an Ethernet connection. OS X is downloaded over the Internet from Apple when OS X Recovery is used for reinstallation.
    From here >   OS X: About OS X Recovery

  • Getting attribute properties from client tier is too slow

    Getting properties for view object attributes is too slow, because a called to the server is made for every attribute.
    I noticed that when a property is gotten for an attribute all properties are retrieved for it, but I couldn't found a way to get all properties for all attributes in the ViewObject.

    See ApplicationModule.fetchAttributeProperties and it's usage in JClient in JDeveloper 9.0.3

  • New iMac running 10.10.1 frequently pauses, way too slow

    I recently bought a 27 inch iMac, installed Yosemite, and migrated my files by time machine from a 5 year old macbook Pro running Snow Leopard. Since updating to 10.10.1, I frequently get the spinning beachball while I wait to continue, and everything seems much slower than it should. Safari downloads take forever, compared to Firefox. I ran an EtreCheck report pasted below. I tried some easy fixes like removing desktop clutter, reducing transparency, but that doesn't affect the overall slowness. Any solutions welcome!
    Problem description:
    Installed Yosemite on new iMac, migrating from snow leopard on an older macbook pro.  Instead of being fast, processes frequently pause for bit while the beachball spins, then resume. Way too slow, much slower than my old macbook pro.
    EtreCheck version: 2.0.11 (98)
    Report generated November 24, 2014 at 5:06:30 PM EST
    Hardware Information: ℹ️
      iMac (27-inch, Late 2013) (Verified)
      iMac - model: iMac14,2
      1 3.2 GHz Intel Core i5 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
      NVIDIA GeForce GT 755M - VRAM: 1024 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 2:7:57
    Disk Information: ℹ️
      APPLE HDD ST1000DM003 disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 999.35 GB (749.24 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Western Digital Ext HDD 1021 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted> : 210 MB
      Time Machine New (disk2s2) /Volumes/Time Machine New : 2.00 TB (193.57 GB free)
      Seagate Expansion Desk 2 TB
      S.M.A.R.T. Status: Verified
      NewArchive (disk3s1) /Volumes/ NewArchive : 2.00 TB (11.39 GB free)
      Western Digital Ext HDD 1021 1 TB
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted> : 210 MB
      Bootable Backup New (disk1s2) /Volumes/Bootable Backup New : 500.10 GB (254.99 GB free)
      Storage New (disk1s3) /Volumes/Storage New : 499.62 GB (480.72 GB free)
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.1) Support
      [not loaded] com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) Support
      [not loaded] com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) Support
      [loaded] com.avira.kext.FileAccessControl (1.0.0d1 - SDK 10.9) Support
      [not loaded] com.beceem.BeceemAppleWiMAXAdapter (5.2.56d13) Support
      [not loaded] com.fklt.driver (1.8.0) Support
      [not loaded] com.flipvideo.IOUSBCameraMassStorage (1.0.1) Support
      [not loaded] com.novatelwireless.driver.3G (2.2.8) Support
      [not loaded] com.novatelwireless.driver.DisableAutoInstall (1.2) Support
      [not loaded] com.rogueamoeba.InstantOn (6.0.3 - SDK 10.6) Support
      [not loaded] com.sierrawireless.driver.SierraDevSupport (2.0.2) Support
      [not loaded] com.sierrawireless.driver.SierraFSCSupport (2.0.2) Support
      [not loaded] com.sierrawireless.driver.SierraFSRSupport (2.0.2) Support
      [not loaded] com.sierrawireless.driver.SierraHSRSupport (2.0.2) Support
      /System/Library/Extensions/InstantOn.kext/Contents/PlugIns
      [not loaded] com.rogueamoeba.InstantOnCore (6.0.3 - SDK 10.6) Support
      /System/Library/Extensions/NovatelWireless3G.kext/Contents/PlugIns
      [not loaded] com.novatelwireless.driver.3GData (2.2.8) Support
      /Volumes/Bootable Backup New/Applications/ CD burn & label ƒ/Toast 8.0.5 Titanium ƒ/Toast Titanium.app
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.roxio.TDIXController (1.7) Support
      /Volumes/Bootable Backup New/Applications/ Multimedia ƒ/TuneClone ƒ/TuneClone.app
      [not loaded] com.tuneclone.driver.TuneClone_Virtual_CDWriter (1.0.0d1) Support
      /Volumes/Bootable Backup New/Applications/ My Utilities ƒ/Little Snitch 2.2 ƒ/Little Snitch Installer.app
      [not loaded] at.obdev.nke.LittleSnitch (2.2.05) Support
      /Volumes/Bootable Backup New/Applications/Cloak.app
      [not loaded] com.bourgeoisbits.cloak.tun (1.0.1) Support
      /Volumes/Bootable Backup New/Applications/Utilities/DiskWarrior ƒ/DiskWarrior.app
      [not loaded] com.alsoft.Preview (4.2) Support
    Startup Items: ℹ️
      NoteburnerService: Path: /System/Library/StartupItems/NoteburnerService
      M-Audio FireWire Audio Helper: Path: /Library/StartupItems/M-Audio FireWire Audio Helper
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [loaded] com.avira.antivirus.general.agent.plist Support
      [loaded] com.avira.antivirus.ipm.ui.plist Support
      [failed] com.avira.antivirus.notifications.agent.plist Support
      [loaded] com.avira.antivirus.odscan.default.plist Support
      [loaded] com.avira.antivirus.scheduler.agent.plist Support
      [running] com.avira.antivirus.systray.plist Support
      [loaded] com.avira.antivirus.telemetry.agent.plist Support
      [loaded] com.avira.antivirus.update.default.plist Support
      [running] com.flipvideo.FlipShare.AutoRun.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.Logitech.Control Center.Daemon.plist Support
      [loaded] com.smithmicro.cleaning.quickbackupcheck.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [not loaded] com.atomicbird.macaroni.launchd.plist Support
      [failed] com.avira.antivirus.dbcleaner.plist Support
      [loaded] com.avira.antivirus.ipm.loader.plist Support
      [running] com.avira.helper.watchdox.plist Support
      [loaded] com.barebones.bbedit.plist Support
      [loaded] com.bombich.ccc.plist Support
      [invalid?] com.bombich.ccc.scheduledtask.EE7EE552-88D4-41A7-BB96-B7F2F891EA0D.plist Support
      [running] com.bombich.ccchelper.plist Support
      [running] com.flipvideo.FlipShareServer.launchd.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.m-audio.firewire.helper.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.sibelius.sari.plist Support
      [invalid?] com.sierrawireless.SierraReset.plist Support
      [running] com.sierrawireless.SWoCMon.plist Support
      [running] com.smithmicro.schedulerdaemon.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.bombich.ccc-user-agent.plist Support
      [running] com.c-command.SpamSieve.LaunchAgent.plist Support
      [running] com.smithmicro.cleaning.schedulermailer.plist Support
      [running] com.spotify.webhelper.plist Support
      [running] ws.agile.1PasswordAgent.plist Support
    User Login Items: ℹ️
      Garmin Express Service Application (/Applications/Garmin Express.app/Contents/Library/LoginItems/Garmin Express Service.app)
      GrowlMenu Application (/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlMenu.app)
      Dropbox Application (/Applications/Dropbox ƒ/Dropbox.app)
    Internet Plug-ins: ℹ️
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Scorch: Version: (null) - SDK 10.2 Support
      SpeedDownload Browser Plugin: Version: 2.1.5 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
      Myriad Music Plugin: Version: 5.6.2 Support
      RealPlayer Plugin: Version: (null) Support
      DirectorShockwave: Version: 11.5.0r596 Support
      QuickTime Plugin: Version: 7.7.3
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      GarminGpsControl: Version: 4.0.4.0 Release - SDK 10.6 Support
      AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      AmazonMP3DownloaderPlugin1017277: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      DivXBrowserPlugin: Version: 2.1 Support
      CouponPrinter-FireFox: Version: Version 1.1.5
      CANONiMAGEGATEWAYDL: Version: 3.1.0.2 Support
      OVSHelper: Version: 1.1 Support
      Google Earth Web Plug-in: Version: 7.1 Support
      AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.4.4.2 Support
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 Support
      Silverlight: Version: 5.1.30214.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
      OfficeLiveBrowserPlugin: Version: 12.2.7 Support
    Safari Extensions: ℹ️
      Videobox
      DivX Plus Web Player HTML5 <video>
      PriceBlink-1
      Speed Download
      Add To Amazon Wish List
      Exposer
      Discount Search for Amazon
      StumbleUpon
      WOT-1
      1Password
      YouTube Downloader
      Rotten Tomatoes
      Compass
    3rd Party Preference Panes: ℹ️
      3ivx MPEG-4  Support
      A Better Finder Preferences  Support
      RCDefaultApp
      DivX  Support
      Flash Player  Support
      Flip4Mac WMV  Support
      Growl  Support
      PreferencesPane  Support
      Macaroni  Support
      Perian  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 250.11 GB
      Destinations:
      Time Machine New [Local]
      Total size: 2.00 TB
      Total number of backups: 33
      Oldest backup: 2014-11-13 07:38:50 +0000
      Last backup: 2014-11-24 21:19:47 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 250.11 GB X 3)
    Top Processes by CPU: ℹ️
          3% WindowServer
          1% avlogwriter
          1% loginwindow
          1% avguard-ondemand-mgmt
          0% fontd
    Top Processes by Memory: ℹ️
      601 MB savapi
      352 MB mds_stores
      309 MB avguard.bin
      301 MB loginwindow
      206 MB Mail
    Virtual Memory Information: ℹ️
      2.80 GB Free RAM
      3.83 GB Active RAM
      978 MB Inactive RAM
      974 MB Wired RAM
      5.87 GB Page-ins
      0 B Page-outs

    Start time: 10:22:44 01/10/15
    Model Identifier: iMac11,1
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 20:24
    SATA
       Hitachi HDS722020ALA330                
    USB
       Hub (NEC Corporation)
       Backup+ Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       My Book 1110 (Western Digital Technologies, Inc.)
       Backup+  Desk (Seagate LLC)
       Hub (NEC Corporation)
       Backup+ Desk (Seagate LLC)
       My Book 1110 (Western Digital Technologies, Inc.)
       Backup+  Desk (Seagate LLC)
       hp LaserJet 3380 (Hewlett Packard)
       Officejet Pro 8600 (Hewlett Packard)
    Diagnostic reports
       2014-12-19 DashlaneAgent crash
       2014-12-21 QuickLookSatellite crash
       2014-12-22 DashlaneAgent crash
       2014-12-27 DashlaneAgent crash
       2014-12-28 HelpViewer crash
       2014-12-30 DashlaneAgent crash
       2015-01-05 Microsoft Word hang
    Log
       Jan 10 10:19:18 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:28 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:38 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:48 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:29 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:39 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:49 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:29 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:39 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:49 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:29 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:39 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:49 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:23:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:23:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
    Memory: kernel_task (UID 0) is using 1332 MB
    kexts
       com.seagate.driver.PowSecDriverCore (5.2.6)
       com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6)
       com.vmware.kext.vmci (90.5.7)
       com.vmware.kext.vsockets (90.5.7)
       com.vmware.kext.vmnet (0188.79.83)
       com.vmware.kext.vmx86 (0188.79.83)
       com.vmware.kext.vmioplug.12.1.17 (12.1.17)
    Daemons
       com.carbonite.daemon
       com.apple.installer.osmessagetracing
       com.microsoft.office.licensing.helper
       com.oracle.java.Helper-Tool
       com.apple.aelwriter
       com.adobe.fpsaud
       com.bombich.ccchelper
       com.seagate.TBDecorator.plist
       com.bombich.ccc
    Agents
       com.sony.PMBPortable.AutoRun
       com.bombich.ccc-user-agent
       com.google.Chrome.framework.service_process/Users/USER/Library/Application_Supp ort/Google/Chrome
       com.leadertech.PowerRegister.SEA1.UUID
       com.adobe.AdobeCreativeCloud
       com.carbonite.carbonitestatus
       com.adobe.PDApp.AAMUpdatesNotifier.96592.UUID
       com.apple.MassStorageCamera.315272.UUID
       com.adobe.ARM.UUID
       com.bombich.cccuseragent
       com.seagate.dashboard
       com.adobe.CS5ServiceManager
       com.oracle.java.Java-Updater
       com.citrixonline.GoToMeeting.G2MUpdate
       com.adobe.ARM.UUID
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
       com.hp.scanModule3.64216.UUID
       com.carbonite.carbonitealerts
    Startup items
       /Library/StartupItems/HP IO/HP IO
       /Library/StartupItems/HP IO/StartupParameters.plist
       /Library/StartupItems/HP USB EWS Gateway/HP USB EWS Gateway
       /Library/StartupItems/HP USB EWS Gateway/StartupParameters.plist
       /Library/StartupItems/HPlaserjet Trap Monitor/HPlaserjet Trap Monitor
       /Library/StartupItems/HPlaserjet Trap Monitor/StartupParameters.plist
       /Library/StartupItems/VirtualBox/StartupParameters.plist
       /Library/StartupItems/VirtualBox/VirtualBox
    Bundles
       /System/Library/Extensions/JMicronATA.kext
       - com.jmicron.JMicronATA
       /System/Library/Extensions/MicrosoftMouse.kext
       - com.microsoft.driver.MicrosoftMouse
       /System/Library/Extensions/Seagate Storage Driver.kext
       - com.seagate.driver.PowSecDriverCore
       /Library/Extensions/VBoxDrv.kext
       - org.virtualbox.kext.VBoxDrv
       /Library/Extensions/VBoxNetAdp.kext
       - org.virtualbox.kext.VBoxNetAdp
       /Library/Extensions/VBoxNetFlt.kext
       - org.virtualbox.kext.VBoxNetFlt
       /Library/Extensions/VBoxUSB.kext
       - org.virtualbox.kext.VBoxUSB
       /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
       - com.AdobeAAMDetectLib.AdobeAAMDetect
       /Library/Internet Plug-Ins/AdobeExManDetect.plugin
       - com.AdobeExManDetectLib.AdobeExManDetect
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/EPPEX Plugin.plugin
       - N/A
       /Library/Internet Plug-Ins/Flash Player.plugin
       - N/A
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       - com.oracle.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
       - com.microsoft.sharepoint.webkitplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/PreferencePanes/Carbonite.prefPane
       - com.carbonite.prefpanel
       /Library/PreferencePanes/DashboardPreferences.prefPane
       - com.seagate.dashboard.preferences
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/Growl.prefPane
       - com.growl.prefpanel
       /Library/PreferencePanes/JavaControlPanel.prefPane
       - com.oracle.java.JavaControlPanel
       /Library/PreferencePanes/Microsoft Mouse.prefPane
       - com.microsoft.microsoftmouse
       /Library/ScriptingAdditions/Adobe Unit Types.osax
       - N/A
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
       - com.skype.skypeabdialer
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
       - com.skype.skypeabsms
       Library/Caches/com.apple.Safari/Extensions/Dashlane-2.safariextension
       - com.dashlane.dashlanesafari
       Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
       - com.citrixonline.mac.WebDeploymentPlugin
       Library/Internet Plug-Ins/Dashlane.plugin
       - com.DashlaneLib.Dashlane
       Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - com.Google.GoogleEarthPlugin.plugin
       Library/Widgets/HP Ink Widget.wdgt
       - com.hp.widget.inkwidget
    Apps
       /Volumes/iMac27 Desktop Clone/Applications/Google Drive.app
       /Volumes/iMac27 Desktop Clone/Applications/Google Drive 2.app
       /Applications/Google Drive.app
       /Applications/Google Drive 2.app
    Contents of /System/Library/LaunchDaemons/com.seagate.TBDecorator.plist (checksum 3070240373)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <!--
          com.seagate.TBDecorator.plist
          SeagateDiagnostics
          Created by John Brisbin on 3/10/10.
          Copyright 2010 Seagate Technologies LLC.. All rights reserved.
       -->
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.seagate.TBDecorator.plist</string>
        <key>RunAtLoad</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Seagate/TBLoopDriveParams</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.carbonite.launchd.carbonitealerts.plist (checksum 3096452879)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.carbonite.carbonitealerts</string>
        <key>OnDemand</key>
        <true/>
        <key>RunAtLoad</key>
        <false/>
        <key>WatchPaths</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteAlerts.app/Contents/Resources/</string>
        </array>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteAlerts.app/Contents/MacOS/CarboniteAlerts</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.carbonite.launchd.carbonitestatus.plist (checksum 2411194237)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.carbonite.carbonitestatus</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteStatus.app/Contents/MacOS/CarboniteStatus</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist (checksum 1821332316)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>16</integer>
        <key>Minute</key>
        <integer>33</integer>
        <key>Weekday</key>
        <integer>4</integer>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.sony.PMBPortable.AutoRun.plist (checksum 2288250257)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <false/>
        <key>Label</key>
        <string>com.sony.PMBPortable.AutoRun</string>
        <key>OnDemand</key>
        <true/>
        <key>Program</key>
        <string>/Library/Application Support/Sony/PMBPortableAutoRun.app/Contents/MacOS/PMBPortableAutoRun</string>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer.plist (checksum 2593636600)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.teamviewer.teamviewer</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/MacOS/TeamViewer</string>
        <string>-RunAsAgent</string>
        <string>YES</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/MacOS</string>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer_desktop.plist (checksum 2362964135)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.teamviewer.desktop</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>LoginWindow</string>
        <string>Aqua</string>
        </array>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources/TeamViewer_Desktop</string>
        <string>-RunAsAgent</string>
        <string>YES</string>
        <string>-Module</string>
        <string>Full</string>
        </array>
       ...and 6 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.plist (checksum 3730953884)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.bombich.ccc</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccc</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 1847580806)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "Media Disk" to "Music". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be left alone.
       • Files on the destination will be updated only if they are newer on the source.
       • Older versions of updated files will be archived.
       • CCC will not prune archive content.</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 229 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 1637450734)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "Pictures" to "Pictures Backup". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be left alone.
       • Files on the destination will be updated only if they are newer on the source.
       • Older versions of updated files will be archived.
       • CCC will not prune archive content.</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 207 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 1138618051)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "Aperture Library" to "Aperture Library Backup". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be left alone.
       • Files on the destination will be updated only if they are newer on the source.
       • Older versions of updated files will be archived.
       • CCC will not prune archive content.</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 233 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 3444763627)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "MacHD" to "iMac27 Desktop Clone". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be permanently deleted.
       • Files on the destination will be updated if the size or modification date differs.
       • Older versions of updated files will not be archived.
       </string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 209 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccchelper.plist (checksum 495358405)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.bombich.ccchelper</string>
        <key>MachServices</key>
        <dict>
        <key>com.bombich.ccchelper</key>
        <true/>
        </dict>
        <key>Program</key>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccchelper</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccchelper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.carbonite.launchd.carbonitedaemon.plist (checksum 2948711974)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.carbonite.daemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteDaemon.app/Contents/MacOS/CarboniteDaemon</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        <key>WorkingDirectory</key>
        <string>/Library/Application Support/Carbonite</string>
        <key>StandardOutPath</key>
        <string>/Library/Logs/Carbonite1.log</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/Carbonite2.log</string>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist (checksum 13465011)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.teamviewer.service</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources/TeamViewer_Service</string>
        <string>-Module</string>
        <string>Full</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 578238223)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 926752576)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.bombich.ccc-user-agent.plist (checksum 1605626007)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.bombich.ccc-user-agent</string>
        <key>Program</key>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/CCC User Agent.app/Contents/MacOS/CCC User Agent</string>
        <key>StandardErrorPath</key>
        <string>/Users/USER/Library/Logs/CCC.log</string>
        <key>StandardOutPath</key>
        <string>/Users/USER/Library/Logs/CCC.log</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.google.Chrome.framework.plist (checksum 2813695882)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <false/>
        </dict>
        <key>Label</key>
        <string>com.google.Chrome.framework.service_process/Users/USER/Library/Applicat ion_Support/Google/Chrome</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>Program</key>
        <string>/Applications/Google Chrome.app/Contents/Versions/25.0.1364.152/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Google Chrome.app/Contents/Versions/25.0.1364.152/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper</string>
        <string>--type=service</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>ServiceProcessSocket</key>
       ...and 7 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 4195197102)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.leadertech.PowerRegister.SEA1.UUID.plist (checksum 2799483814)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.leadertech.PowerRegister.SEA1.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Seagate Dashboard.app/Contents/Resources/Seagate.app/Contents/Resources/SeagateRegRemin der.app/Contents/MacOS/SeagateRegReminder</string>
        </array>
        <key>StartInterval</key>
        <integer>3600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.seagate.dashboard.plist (checksum 1981328959)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.seagate.dashboard</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Seagate Dashboard.app/Contents/MacOS/Seagate Dashboard</string>
        <string>-runMode</string>
        <string>autoLaunched</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist (checksum 3654809970)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
         <key>Disabled</key>
         <true/>
         <key>KeepAlive</key>
         <false/>
         <key>Label</key>
         <string>org.virtualbox.vboxwebsvc</string>
         <key>Program</key>
         <string>/Applications/VirtualBox.app/Contents/MacOS/vboxwebsrv</string>
         <key>Sockets</key>
           <dict>
           <key>Listeners</key>
           <dict>
             <key>SockServiceName</key>
             <string>18083</string>
             <key>SockType</key>
             <string>stream</string>
             <key>SockFamily</key>
             <string>IPv4</string>
           </dict>
         </dict>
       </dict>
       ...and 1 more line(s)
    Global login items
       /Applications/HP LaserJet Software/HP Setup Assistant.app
       /Library/Application Support/hp/laserjet/Trap Monitor/HPEventHandler.app
    Firewall: On
    DNS: 216.40.77.126
    Listeners
       cupsd: ipp
       kdc: kerberos
       launchd: afpovertcp
       launchd: microsoft-ds
    User login items
       iTunesHelper
       - /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app
       VMware Fusion Start Menu
       - /Applications/VMware Fusion.app/Contents/Library/VMware Fusion Start Menu.app
       Google Drive
       - /Applications/Google Drive.app
       Canon IJ Network Scanner Selector2
       - /Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app
       Android File Transfer Agent
       - /Users/USER/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app
       AdobeResourceSynchronizer
       - /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app
       Eye-Fi Helper
       - /Applications/Eye-Fi/Eye-Fi Helper.app
       Google Chrome
       - /Applications/Google Chrome.app
       Launch Nikon Message Center 2
       - /Applications/Nikon Software/Nikon Message Center 2/Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app
    Safari extensions
       Dashlane
    Restricted files: 513
    Lockfiles: 4
    High file counts
       Desktop: 125
    Elapsed time (s): 584

  • Why am I getting this error message, "Disk is too slow. (Prepare) (-10001)"

    Hello all!  I've been using GarageBand for a while now and I've accumulated quite a few files.  Along with all of my movies and iTunes library, my internal hard drive filled up rapidly and I didn't catch it.  I received a warning message on my screen one day saying that my hard drive was nearly full and I only had a few MB available.  I'm using a 150 GB Solid State Hard Disk on my 2009 MacBook Pro (2.6 GHz Intel Cre 2 Duo, 4 GB of RAM).  I remembered reading a while back that it's better to use an external hard drive for pretty much everything when using Garageband, so I bought one.  I now have a seagate 500 GB, 5400 rpm external (USB 2.0) and I moved ALL of my movies and music over to it.  I freed up around 60 GB of space on my internal hard drive in doing so. 
    So now that I've given you a little background, let me explain the issue I'm having.  Before I noticed that my hard drive was full, I started receiving this error message:
    Disk is too slow. (Prepare)
    (-10001)
    Upon receiving this message, I was unable to do pretty much anything in GarageBand.  I couldn't listen to tracks, export to iTunes, or do anything!  All I'm using GarageBand for is editing.  My band and I do all our recording (and mixing) offsite at a separate studio and i just deliver a 2 track stereo signal (L/R) to my MacBook.  From there, I just cut the individual tracks from a block of 30-45 minutes of recording because we just record our entire studio session and mix everything there.  I pretty much never have more than two tracks and a few effects going at the same time.
    After I realized that my disk was nearly full, I consulted my brother-in-law.  He's head of the IT Deartpment at a major hospital here in West L.A. and he told me that I may have created a problem with the cache by filling up my internal hard drive and that I may still have issues with performance even after I free up space.  He then told me that I may need to reboot my MacBook a few time to "free up the cache" (or something close to that, sorry guys I'm not that tech-savvy).  It seems he may have been right, as I'm still experiencing the same issue.  I rebooted around 10 times overall to no avail.  I'm still using my internal hard drive to store the files that I'm working on (temporarily) because USB 2.0 is way too slow for my liking, when using GarageBand.
    I've read quite a few articles on this offering solutions such as:
    1.  Do a complete Uninstall and Reinstall of GarageBand
    2.  Clone my hard drive to my external, format it, and reinstall everything back on it
    3.  Get a hard drive that supports Firewire 800 (The HDD I bought is USB 2.0, but it has two USB cables to increase speed, but I only have 1 port and I tried      a powered USB Hub, but this HDD won't work with it for some reason).
    4.  Use different editing software.
    5.  Take it to Apple!
    Will any of these things fix my problem?  Are some better than others?  Before I do anything, I wanted to ask this question on the furum to see if anybody had an easier (or cheaper!) solution.  Any suggestions, tips, or advice would be much appreciated, as my band is starting to get on my case about finishing our CD!  Thanks...  

    Have a look into the Preferences folder (YourUserFolder/Libraries/Preferences/) and trash all Logic preferences.
    You'll have to setup the program again.
    cheers
    rob

Maybe you are looking for

  • How can i display video's i'm watching on my iphone 5 on a tv

    is this possible. i think it was with the iphone 4s. i don't care if i have to buy accessories like the 30 pin addapter and what not i just don't want to jail brake my phone at all. (oh and i don't have an apple tv i want this to be able to work wher

  • IMovie won't open because it's "being updated" - but there's no iMovie activity in the App Store!

    Just today, I tried opening iMovie to work on a project. I get an error message that reads: " You can't open the application "iMovie" because it is being updated." This then kicks me out to the App Store - but there's no iMovie update in progress the

  • My Iphone 5 all of a sudden won't connect to my home wifi.

    About a week ago, my phone stopped connecting to my home wifi. Every time I try and connect to it, a message pops up that says unable to connect. I've tried restarting my phone, resetting my network settings, turning the  data off, turning airplane m

  • Collecting Messages in BPM

    I am trying to recreate and understand the BPMPatternCollectPayload. What I don't understand is We have a interface mapping in which we tryiing to append all the message into one inetrafce. so we create a one to one mapping between both the interface

  • Cant move files from previous saved CD to desktop or anyplace else

    Help -- I cant move files from previous saved CD to desktop or anyplace else I don't know when this started but it was two days ago I noticed this. I have changed all the permissions in info to allow me to have read write access to all my hardrives(2