How to remove imported layers from ultiboard general layers property

I imported several .DXF layers into a project some time ago and now they always appear in the default configuration of  every new project. I have tried unsuccessfully to de-select them and set that to the default, but they always pop up again. How can I remove them when there is no facility for doing so in the properties page?
Thanks, Tod 
Solved!
Go to Solution.

Hi Tod,
I think what happened is you imported the DXF layers into a project, then saved the PCB properties as defaults, which then saved the imported DXF layers as defaults. To remove these layers, you need to delete your configuration file, which is where the default settings are stored. This will also reset your user interface and all default settings you have previously stored.
Just follow the instructions here: http://digital.ni.com/public.nsf/allkb/2719D00E36A4D53A8625721300685B3F
I have also created a defect (D116800) because it should be possible to remove these custom layers without resetting your configuration.
Message Edited by GarretF on 01-11-2010 08:25 AM
Garret
Senior Software Developer
National Instruments
Circuit Design Community and Blog
If someone helped you, let them know. Mark as solved or give a kudo.

Similar Messages

  • How to remove duplicate entries from Settings General iTunes Wi-Fi Sync?

    On my iPhone under Settings > General > iTunes Wi-Fi Sync there is a duplicate entry for my Mac. One is active, the other one shows options greyed out, as if it can't see the Mac on the network (although it's the same name). Is there a way to manually remove that entry from the iPhone?
    I am running iOS 7.0.4, and OS X 10.9.1, iTunes 11.1.3 on the Mac.

    iPhone 3G doesn't support Wi-Fi sync or IOS 5.1.1. You have to connect to iTunes using the dock connector to sync.
    Unless you have a iPhone 3GS or jailbroken.

  • How do i import video from my sony cx130 to imovie

    how do i import video from my sony cx130 to imovie?

    Follow the steps below to troubleshoot if the computer does not recognize the USB connection from the camcorder.
    Turn off the camcorder.
    Ensure the USB cable is connected securely to the camcorder.
    Ensure the other end of the USB cable is connected securely to the USB port on the computer. NOTE:  Connection through a USB hub is not supported. 
    With the exception of the mouse, keyboard, and camcorder, remove any other USB connected devices from the computer.
    Turn on the camcorder.
    On the camcorder LCD screen, touch the computer or hard disk icon.
    If the issue is still not resolved, connect the USB cable to a different USB port on the computer.
    If the issue is still not resolved, try uninstalling and reinstalling the USB driver.
    If the issue is still not resolved, test the USB port on the computer by connecting a different USB device.
    This is from the Sony website.

  • HT201665 how do i import video from my iPad to my mac?

      my question is how do i import video from my iPad to my macair?
    <Personal Information Removed by Host>

    Plug in to Mac, open iPhoto and import the video. From iPhoto you can then export it to another folder via Export.
    Pete

  • How to remove duplicates records from output ?

    how to remove duplicates records from output ?  i used delete adjacent but duplicates records are coming again ..suggest me

    hi shruthi,
    thanks for ur answer ..but duplicates records coming again
    here is my code >> plz check it out
    *& Report  ZCRM_TROUBLE_TICKET
    REPORT  zcrm_trouble_ticket.
    TYPES : BEGIN OF ty_qmih,
            qmnum TYPE qmnum,
            equnr TYPE equnr,
            iloan TYPE iloan,
            ausvn TYPE ausvn,
            ausbs TYPE ausbs,
            auztv TYPE auztv,
            auztb TYPE auztb,
            iwerk TYPE iwerk,
            END OF ty_qmih,
            BEGIN OF ty_qmel,
            qmnum TYPE qmnum,
            qmtxt TYPE qmtxt,
            indtx TYPE indltx,
            priok TYPE priok,
            strmn TYPE strmn,
            strur TYPE strur,
            ltrmn TYPE ltrmn,
            ltrur TYPE ltrur,
            objnr TYPE qmobjnr,
            arbpl TYPE lgwid,
            vkorg TYPE vkorg,
            vtweg TYPE vtweg,
            spart TYPE spart,
            END OF ty_qmel,
            BEGIN OF ty_ihpa,
            parnr TYPE i_parnr,
            parvw TYPE parvw,
            objnr TYPE qmobjnr,
            END OF ty_ihpa,
            BEGIN OF ty_crhd,
            arbpl TYPE arbpl,
            objid TYPE cr_objid,
            END OF ty_crhd,
            BEGIN OF ty_crtx,
            ktext TYPE cr_ktext,
            objid TYPE cr_objid,
            END OF ty_crtx,
            BEGIN OF ty_qmfe,
            fecod TYPE fecod,
            fegrp TYPE fegrp,
            qmnum TYPE qmnum,
            END OF ty_qmfe,
            BEGIN OF ty_qmur,
            urcod TYPE urcod,
            urgrp TYPE urgrp,
            urtxt TYPE urstx,
            qmnum TYPE qmnum,
            END OF ty_qmur,
            BEGIN OF ty_iloa,
            tplnr TYPE tplnr,
            iloan TYPE iloan,
            END OF ty_iloa,
            BEGIN OF ty_output,
            qmnum TYPE qmnum,
            equnr TYPE equnr,
           iloan TYPE iloan,
            ausvn TYPE ausvn,
            ausbs TYPE ausbs,
            auztv TYPE auztv,
            auztb TYPE auztb,
            iwerk TYPE iwerk,
            qmtxt TYPE qmtxt,
            indtx TYPE indltx,
            priok TYPE priok,
            strmn TYPE strmn,
            strur TYPE strur,
            ltrmn TYPE ltrmn,
            ltrur TYPE ltrur,
           objnr TYPE qmobjnr,
           arbpl TYPE lgwid,
            vkorg TYPE vkorg,
            vtweg TYPE vtweg,
            spart TYPE spart,
            parnr TYPE i_parnr,
            parvw TYPE parvw,
            arbpl TYPE arbpl,
           objid TYPE cr_objid,
           arbpl1 TYPE arbpl,
            ktext TYPE cr_ktext,
            fecod TYPE fecod,
            fegrp TYPE fegrp,
            urcod TYPE urcod,
            urgrp TYPE urgrp,
            urtxt TYPE urstx,
            tplnr TYPE tplnr,
            END OF ty_output.
    DATA : it_qmih TYPE STANDARD TABLE OF ty_qmih,
           it_qmel TYPE STANDARD TABLE OF ty_qmel,
           it_ihpa TYPE STANDARD TABLE OF ty_ihpa,
           it_crhd TYPE STANDARD TABLE OF ty_crhd,
           it_crtx TYPE STANDARD TABLE OF ty_crtx,
           it_qmfe TYPE STANDARD TABLE OF ty_qmfe,
           it_qmur TYPE STANDARD TABLE OF ty_qmur,
           it_iloa TYPE STANDARD TABLE OF ty_iloa,
           it_output TYPE STANDARD TABLE OF ty_output,
           wa_qmih TYPE ty_qmih,
           wa_qmel TYPE ty_qmel,
           wa_ihpa TYPE ty_ihpa,
           wa_crhd TYPE ty_crhd,
           wa_crtx TYPE ty_crtx,
           wa_qmfe TYPE ty_qmfe,
           wa_qmur TYPE ty_qmur,
           wa_iloa TYPE ty_iloa,
           wa_output TYPE ty_output.
    INITIALIZATION.
      REFRESH : it_qmih,
                it_qmel,
                it_ihpa,
                it_crhd,
                it_crtx,
                it_qmfe,
                it_qmur,
                it_iloa,
                it_output.
      CLEAR:     wa_qmih,
                 wa_qmel,
                 wa_ihpa,
                 wa_crhd,
                 wa_crtx,
                 wa_qmfe,
                 wa_qmur,
                 wa_iloa,
                 wa_output.
    start-of-selection.
      SELECT  qmnum
              equnr
              iloan
              ausvn
              ausbs
              auztv
              auztb
              iwerk
              FROM qmih
              INTO  TABLE it_qmih.
      SORT it_qmih BY qmnum .
      DELETE ADJACENT DUPLICATES FROM it_qmih COMPARING qmnum equnr iloan ausvn ausbs auztv auztb iwerk.
      SELECT   qmnum
               qmtxt
               indtx
               priok
               strmn
               strur
               ltrmn
               ltrur
               objnr
               arbpl
               vkorg
               vtweg
               spart
               FROM qmel
               INTO TABLE it_qmel
               FOR ALL ENTRIES IN it_qmih
               WHERE qmnum = it_qmih-qmnum.
      SORT it_qmel BY qmnum.
      DELETE ADJACENT DUPLICATES FROM it_qmel COMPARING  qmnum
                                                         qmtxt
                                                         indtx
                                                         strmn
                                                         strur
                                                         ltrmn
                                                         ltrur
                                                         objnr
                                                         arbpl
                                                         vkorg
                                                         vtweg
                                                         spart.
      IF it_qmel IS NOT INITIAL.
        SELECT parnr
               parvw
               objnr
               FROM ihpa
               INTO TABLE it_ihpa
               FOR ALL ENTRIES IN it_qmel
               WHERE objnr = it_qmel-objnr.
      ENDIF.
      DELETE ADJACENT DUPLICATES FROM it_ihpa COMPARING  parnr
                                                         parvw
                                                         objnr.
      IF it_qmel IS NOT INITIAL.
        SELECT arbpl
               objid
               FROM crhd
               INTO TABLE it_crhd
               FOR ALL ENTRIES IN it_qmel
               WHERE objid = it_qmel-arbpl.
      ENDIF.
      DELETE ADJACENT DUPLICATES FROM it_crhd COMPARING  arbpl
                                                         objid.
      IF it_qmel IS NOT INITIAL.
        SELECT ktext
               objid
               FROM crtx
               INTO TABLE it_crtx
               FOR ALL ENTRIES IN it_crhd
               WHERE objid = it_crhd-objid.
      ENDIF.
      DELETE ADJACENT DUPLICATES FROM it_crtx COMPARING ktext
                                                        objid.
      IF it_qmih IS NOT INITIAL.
        SELECT fecod
               fegrp
               qmnum
               FROM qmfe
               INTO TABLE it_qmfe
               FOR ALL ENTRIES IN it_qmih
               WHERE qmnum = it_qmih-qmnum.
      ENDIF.
      SORT it_qmfe BY qmnum.
      DELETE ADJACENT DUPLICATES FROM it_qmfe COMPARING fecod
               fegrp.
      IF it_qmih IS NOT INITIAL.
        SELECT urcod
               urgrp
               urtxt
               qmnum
               FROM qmur
               INTO TABLE it_qmur
               FOR ALL ENTRIES IN it_qmih
               WHERE qmnum = it_qmih-qmnum.
      ENDIF.
      SORT it_qmur BY qmnum.
      DELETE ADJACENT DUPLICATES FROM  it_qmur COMPARING urcod
                                                         urgrp
                                                         urtxt.
      IF it_qmih IS NOT INITIAL.
        SELECT  tplnr
                iloan
                FROM iloa
                INTO TABLE it_iloa
                FOR ALL ENTRIES IN it_qmih
                WHERE iloan = it_qmih-iloan.
      ENDIF.
      DELETE ADJACENT DUPLICATES FROM it_iloa COMPARING tplnr
                                                        iloan.
      LOOP AT it_qmih INTO wa_qmih.
        wa_output-qmnum = wa_qmih-qmnum.
        wa_output-equnr = wa_qmih-equnr.
       wa_output-iloan = wa_qmih-iloan.
        wa_output-ausvn = wa_qmih-ausvn.
        wa_output-ausbs = wa_qmih-ausbs.
        wa_output-auztv = wa_qmih-auztv.
        wa_output-auztb = wa_qmih-auztb.
        wa_output-iwerk = wa_qmih-iwerk.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_qmel INTO wa_qmel WITH KEY qmnum = wa_qmih-qmnum.
        wa_output-qmtxt = wa_qmel-qmtxt.
        wa_output-indtx = wa_qmel-indtx.
        wa_output-priok = wa_qmel-priok.
        wa_output-strmn = wa_qmel-strmn.
        wa_output-strur = wa_qmel-strur.
        wa_output-ltrmn = wa_qmel-ltrmn.
        wa_output-ltrur = wa_qmel-ltrur.
       wa_output-objnr = wa_qmel-objnr.
       wa_output-arbpl = wa_qmel-arbpl.
        wa_output-vkorg = wa_qmel-vkorg.
        wa_output-vtweg = wa_qmel-vtweg.
        wa_output-spart = wa_qmel-spart.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_ihpa INTO wa_ihpa WITH KEY objnr = wa_qmel-objnr.
        wa_output-parnr = wa_ihpa-parnr.
        wa_output-parvw = wa_ihpa-parvw.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_crhd INTO wa_crhd WITH KEY objid = wa_qmel-arbpl.
        wa_output-arbpl = wa_crhd-arbpl.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_crtx INTO wa_crtx WITH KEY objid = wa_crhd-objid.
        wa_output-ktext = wa_crtx-ktext.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_qmfe INTO wa_qmfe WITH KEY qmnum = wa_qmih-qmnum.
        wa_output-fecod = wa_qmfe-fecod.
        wa_output-fegrp = wa_qmfe-fegrp.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_qmur INTO wa_qmur WITH KEY qmnum = wa_qmih-qmnum.
        wa_output-urcod = wa_qmur-urcod.
        wa_output-urgrp = wa_qmur-urgrp.
        wa_output-urtxt = wa_qmur-urtxt.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
        READ TABLE it_iloa INTO wa_iloa WITH KEY iloan = wa_qmih-iloan.
        wa_output-tplnr = wa_iloa-tplnr.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
      ENDLOOP.
      DELETE ADJACENT DUPLICATES FROM it_output  COMPARING        qmnum
                                                                  equnr
                                                                  ausvn
                                                                  ausbs
                                                                  auztv
                                                                  auztb
                                                                  iwerk
                                                                  qmtxt
                                                                  indtx
                                                                  priok
                                                                  strmn
                                                                  strur
                                                                  ltrmn
                                                                  ltrur
                                                                  vkorg
                                                                  vtweg
                                                                  spart
                                                                  parnr
                                                                  parvw
                                                                  arbpl
                                                                  ktext
                                                                  fecod
                                                                  fegrp
                                                                  urcod
                                                                  urgrp
                                                                  urtxt
                                                                  tplnr.
    *CALL FUNCTION 'STATUS_TEXT_EDIT'
    EXPORTING
      CLIENT                  = SY-MANDT
      FLG_USER_STAT           = ' '
       objnr                   =
      ONLY_ACTIVE             = 'X'
       spras                   = en
      BYPASS_BUFFER           = ' '
    IMPORTING
      ANW_STAT_EXISTING       =
      E_STSMA                 =
      LINE                    =
      USER_LINE               =
      STONR                   =
    EXCEPTIONS
      OBJECT_NOT_FOUND        = 1
      OTHERS                  = 2
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    *CALL FUNCTION 'READ_TEXT'
    EXPORTING
      CLIENT                        = SY-MANDT
       id                            =
       language                      =
       name                          =
       object                        =
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
    tables
       lines                         =
    EXCEPTIONS
      ID                            = 1
      LANGUAGE                      = 2
      NAME                          = 3
      NOT_FOUND                     = 4
      OBJECT                        = 5
      REFERENCE_CHECK               = 6
      WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    *LOOP AT IT_OUTPUT INTO WA_OUTPUT.
    *WRITE : / WA_OUTPUT-qmnum,
             WA_OUTPUT-equnr,
             WA_OUTPUT-iloan,
             WA_OUTPUT-ausvn,
             WA_OUTPUT-ausbs,
             WA_OUTPUT-auztv,
             WA_OUTPUT-auztb,
             WA_OUTPUT-qmtxt,
             WA_OUTPUT-indtx,
             WA_OUTPUT-strmn,
             WA_OUTPUT-strur,
             WA_OUTPUT-ltrmn,
             WA_OUTPUT-ltrur,
             WA_OUTPUT-objnr,
             WA_OUTPUT-arbpl,
             WA_OUTPUT-parnr,
             WA_OUTPUT-parvw,
             WA_OUTPUT-objid,
             WA_OUTPUT-ktext,
             WA_OUTPUT-fecod,
             WA_OUTPUT-fegrp,
             WA_OUTPUT-urcod,
             WA_OUTPUT-urgrp,
             WA_OUTPUT-urtxt,
             WA_OUTPUT-tplnr.
    *ENDLOOP.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                    =
          filename                        = 'E:\CRM1.TXT'
      FILETYPE                        = 'ASC'
      APPEND                          = ' '
         write_field_separator           = '|'
      HEADER                          = '00'
      TRUNC_TRAILING_BLANKS           = ' '
      WRITE_LF                        = 'X'
      COL_SELECT                      = ' '
      COL_SELECT_MASK                 = ' '
      DAT_MODE                        = ' '
      CONFIRM_OVERWRITE               = ' '
      NO_AUTH_CHECK                   = ' '
      CODEPAGE                        = ' '
      IGNORE_CERR                     = ABAP_TRUE
      REPLACEMENT                     = '#'
      WRITE_BOM                       = ' '
      TRUNC_TRAILING_BLANKS_EOL       = 'X'
      WK1_N_FORMAT                    = ' '
      WK1_N_SIZE                      = ' '
      WK1_T_FORMAT                    = ' '
      WK1_T_SIZE                      = ' '
      WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
    IMPORTING
      FILELENGTH                      =
        TABLES
          data_tab                        = it_output
      FIELDNAMES                      =
    EXCEPTIONS
      FILE_WRITE_ERROR                = 1
      NO_BATCH                        = 2
      GUI_REFUSE_FILETRANSFER         = 3
      INVALID_TYPE                    = 4
      NO_AUTHORITY                    = 5
      UNKNOWN_ERROR                   = 6
      HEADER_NOT_ALLOWED              = 7
      SEPARATOR_NOT_ALLOWED           = 8
      FILESIZE_NOT_ALLOWED            = 9
      HEADER_TOO_LONG                 = 10
      DP_ERROR_CREATE                 = 11
      DP_ERROR_SEND                   = 12
      DP_ERROR_WRITE                  = 13
      UNKNOWN_DP_ERROR                = 14
      ACCESS_DENIED                   = 15
      DP_OUT_OF_MEMORY                = 16
      DISK_FULL                       = 17
      DP_TIMEOUT                      = 18
      FILE_NOT_FOUND                  = 19
      DATAPROVIDER_EXCEPTION          = 20
      CONTROL_FLUSH_ERROR             = 21
      OTHERS                          = 22
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • How to remove leading zeros from variable

    hi,
       how to remove leading zeros from variable like it_vbap-matnr.
    value in it_vbap-matnr is 000000000000000358
    i want to remove leading zeros so that it become 358
    regards
    deepak

    You can use Function Module <b>'CONVERSION_EXIT_MATN1_OUTPUT'</b>
    This Function Module will eliminate leading Zeros.
    For each MATNR Value read form DB Table,u can eliminate Leading zeros and then modify ur Internal table.
    I think u will not get leading Zeros into utr Internal table when u read from VBAP.
    Bcoz MATNR in VBAP itself have Conversion routine.
    If u r getting leading zeros,U can use following Logic.
    tables:
      vbap.
    data:
       t_vbap like standard table of vbap.
    select matnr
    from vbap
    into corresponding fields of table t_vbap.
    loop at t_vbap into vbap.
      CALL FUNCTION 'CONVERSION_EXIT_MATN1_OUTPUT'
          EXPORTING
            INPUT         =  vbap-matnr
          IMPORTING
            OUTPUT        =  vbap-matnr
      modify t_vbap from vbap transporting matnr.
    endloop.
    Hope this will work.....

  • How Do I Import Playlists From Tiger To Leopard?

    OK, I give up. The following falls under the category “It Doesn’t Have To Be This Hard.”
    I purchased a new iMac and went with the 24 inch Intel 3.06 GHz Core 2 Duo, 10.5.5. Sweet.
    With my previous iMac (G5 Rev A., 10.3.9), I had Tiger 10.4.11 installed on an external HD and used it for my iTunes collection. All was well.
    Now, with Leopard on the new iMac, I’m stumped as to how I can import the playlists from Tiger’s iTunes. I’ve imported the music and podcasts, etc. from Tiger but the playlists are empty. I have them listed but all except one have no music in them.
    So, my questions (after performing a thorough review of the forums and entering every search term I could think of related to this issue) are these:
    1. How do I import playlists from Tiger to Leopard so that I get music and playlists?
    2. Where are the playlists stored? I cannot find them using a Spotlight search ( using Leopard), nor are they listed in the iTunes music files. So, where does Tiger and/or Leopard keep them?
    3. At least one playlist made it from Tiger to Leopard. Why did the other playlists arrive but w/o music in them?
    4. Is the problem I have described a common one? If so, why is there no easy fix for it. Or perhaps there is an easy fix but I’m too blind to see it.
    Anyone with answers is encouraged to reply. I’ll sign off as “flyboy01” but in reality I’m “Stumped!”
    Thanks in advance,
    flyboy01

    Just so you know, the difference in the version of the operating system has no bearing here as you would have experienced the same issue going from account to account on the same computer because you performed an incomplete iTunes transfer. As you inquired about where playlists are located, I will give you a complete break down of iTunes database structure as well as the proper technique for transferring your library.
    _*INSIDE iTUNES*_
    *iTunes Components: The Library and the Database Table*
    The term library gets thrown around quite a bit when people discuss iTunes, but what you see in iTunes denoted as your libraries (e.g., music, podcasts, TV shows, etc.) is actually just a reference to your actual media library. iTunes is essentially a database package, just like your local public library’s computer-based card catalog system; the difference is that the content is electronic and owned by the user so you can also directly access the content through iTunes instead of having to go and (physically) retrieve it. Your actual library is the collection of media files you have stored on your computer. If you think of it in terms of the real world, your media files are the virtual equivalent of the books, periodicals, microforms, etc., in a real library and the folder or volume in which those media files are contained is the library.
    While iTunes will allow you to add media to its library (iTunes library interface) from anywhere on any volume attached to your computer (e.g., branch libraries), iTunes generally expects your library to reside in a single folder (main library). In iTunes that folder is referred to as your iTunes Music folder and by default it is a folder named iTunes Music contained in your iTunes folder (~/Music/iTunes). The music folder can have any name and be located anywhere on any attached volume as long as you inform iTunes of where it is located by changing the iTunes Music folder location in the Advanced tab of iTunes’ preferences.
    How you organize music within your music folder is unimportant, but iTunes must know the location of the (root) music folder in order to properly access the media files contained within that directory. The reason for that is because once you have defined a music folder location, or leave the default, that location is where iTunes will automatically place any new content that you add to iTunes’ library. Keeping the location of the music library straight is most important to iTunes users, such as myself, that keep their actual library on a separate volume from the system volume where the iTunes folder is located.
    When iTunes uses the term library, it is actually referring to its database table file. Properly designed databases, particularly those that are scalable and that allow records (database entries) to be found or visually organized via multiple keys (metadata), as iTunes does, consist of two basic parts: the database, or source data (records), and the index table(s). In iTunes your media files are the records. Along with the actual media content, those files also contain a number of tags that provide a range of information about that particular media file (e.g., artist, song title, movie title, album, year, etc.).
    The database table is the iTunes Library file located in your iTunes folder. That file is actually what iTunes references the vast majority of the time when you are browsing your collection. The table contains metadata about all of the media files in your library and it is that metadata that is displayed in iTunes when you browse your library. When you play content or edit tags, then iTunes directly accesses the files in your library. The table also contains your playlists and playlist folders, so that is the reason that Spotlight would seem to not find them on your computer’s hard drive; Spotlight most likely did list ‘iTunes Music Library.xml’, as that file is an XML version of iTunes database table.
    If you copy the iTunes Music Library.xml file to the desktop on your old computer and open it, you will see the basic structure of the table. The first group of entries are the definitions of your media files—the code between the <dict> and </dict> tags—and contain the metadata that is displayed in iTunes and by which you can search and group music in iTunes various views. The definitions also contain metadata defining the location of the media file, if the track is enabled (checked) or disabled (un-checked), the (iTunes) track ID, etc.
    If you scroll toward the end of the XML file, you will see the definitions of your playlists and playlist folders as well as some occasional data blocks that look like gibberish. The latter is the text representation of the binary code that defines the criteria for smart playlists. On thing that you will notice about the playlist definitions is that they do not contain detailed track info or metadata for the songs contained within the playlist(s). iTunes is a relational database, so the playlists do not contain any actual data, but instead a list of indices (pointers), the Track IDs, to the definitions for each track you have in your playlists. The definitions listed in the first part of the XML file also contain only a subset of the tracks ID3 tags. The definitions only require metadata for information that is relevant to permitting you to browse and organize your library in iTunes’ interface. In the track definition, the Location metadata is an index and points to the actual media file where the complete set of ID3 tags, as well as the actual media content, reside.
    While your media resides in your music folder, the library structure you create in iTunes is actually a simple, albeit long, table stored in a separate file. Another component of iTunes is the artwork database kept in the Album Artwork folder. The Album Artwork folder contains a complex folder tree structure with proprietary .itc files at the leaves. I do not know what the exact structure of the .itc files is, but they play a role in storing image info for the various graphic-based views in iTunes (e.g., CoverFlow). Also, any songs you purchase from the iTunes Store will have the cover art stored in the Album Artwork folder; images that you add manually are stored in the actual media files.
    *Transferring Your Library to a New Computer*
    Now you see that there is more to iTunes than just your media files. Thus, if you want the playlists that you spent time building to migrate with your music collection simply copying the music folder to the new computer is not going to result in what you want: a complete transfer of the library you dedicated time and energy into organizing. When you transfer music files to a new computer iTunes builds a new library around that content and the only playlists that will be present are the defaults tha come with iTunes; your user-defined playlists will not appear on the new computer if you have not transferred the database table.
    In order to successfully transfer iTunes to a new computer you need to move your library and everything that was built around that library. To perform a complete library transfer you need to follow this procedure:
    1. *Consolidate your library* If you know for a fact that all of you media files are contained within a single root directory (e.g., iTunes Music), then this step is not necessary. If you do not have the preference to “Copy files to iTunes Music folder when adding to library” enabled, then there is a good chance that you will have orphaned media files and should consolidate your library just in case. To perform library consolidation go to Advanced > Consolidate Library (iTunes 7.x) or File > Library > Consolidate Library (iTunes 8).
    2. *Transfer your database* Replace the default iTunes folder on your new Mac with the iTunes folder from your old Mac by transferring the entire folder. When asked if you wish to replace the existing iTunes, do so.
    3. *Get the media library* If you keep your music in the default iTunes Music folder contained in the iTunes folder, then you have already performed this step. If not, transfer your music folder from you old Mac to wherever you wish for it to reside on your new Mac.
    4. *Set up iTunes* Unless you already started modifying preferences in iTunes on the new Mac, when you launch iTunes you should see your music library just as you did on your old Mac.
    a. If your library is in the default location, ~/Music/iTunes/iTunes music folder, iTunes will begin rebuilding your library after it launches. Once that process is completed, you should see your library with playlists and folders intact.
    b. If your library is in an alternate location, you will see an empty library, but you should see your playlists and folders, albeit filled with broken links. Go to the Advanced tab in iTunes’ preferences and change the location of the iTunes Music folder to the location of your transferred music library. iTunes will begin rebuilding your library from the alternate folder. Once that process is completed your library should be just as it was on your old Mac.
    5. *Keep your library consolidated* To insure that any new media that you add to iTunes stays with your main library when you add content to iTunes make sure the “Copy files” preference is enabled. If the “Copy files” preference is disabled then any content that does not come from the iTunes Store or ripped CDs that you add to your iTunes library will remain in the location where the content was originally placed.
    Hopefully this helps you better understand how iTunes works and why simply transferring your media files results in a loss of your library’s structure.

  • How to remove corrupt image from iPhoto

    Somewhere in my photo library I have a photo that iPhoto really doesn't like! I want to know how to remove this image from my library, possibly by deleting it via Finder.
    When I scroll through my photos in iPhoto the software hangs momentarily, and then crashes completely, whenever it gets to this particular image. When I try to export my photos (for backup purposes) iPhoto always crashes when trying to export this same image.
    The problem has appeared with one of the recent updates to iPhoto, when I originally imported this image I could see and export the image just fine. The same issue is preventing me from migrating my photo library to the new Photos app - the import process that runs when I first launch Photos always crashes at the same point, presumably because of this same image file.
    I am unable to remove the image by deleting it via iPhoto because I can't get iPhoto to display the image without crashing, please can anyone suggest another way to get rid of it.

    I've been trying to post details from the crash report here, but the forum software tells me that the message contains 'an invalid character' - which character is invalid? Who knows...

  • How do I import Bookmarks from Firefox 28.0 into Firefox 29.0.1?

    How do I import Bookmarks from Firefox 28.0 into Firefox 29.0.1? I am running OS X 10.7.5 and just updated Firefox from 28.0 to 29.0.1. How do I import my old 28.0 bookmarks into 29.0.1? I've tried all the suggestions but nothing works. WHERE are my old bookmarks? Help, please!

    Your bookmarks can be imported and exported from the Library (Bookmarks Manager).
    *Go to the clipboard icon, click Show All Bookmarks <i>OR</i> press Cmd + Shift + B
    *Once there, you'll see Import and Backup (see screenshot), you have a choice to choose between backing up as a JSON (Import and Backup -> Backup) or HTML (Import and Backup - > Export bookmarks to HTML)
    Once this is done and the file has been backed up, you can import them using the same method (Import & Backup -> Backup for JSON/Import & Backup -> Import bookmarks from HTML (HTML)
    One of our awesome contributors explained the difference between a JSON backup and a HTML backup that is very explanatory:
    Restoring a JSON backup will replace all your current bookmarks (you get a warning about that), so if you already have bookmarks that you wish to keep then export them to an HTML file before restoring the JSON backup.
    You can import that HTML file after you have restored the JSON backup to get your current bookmarks back (you need to remove duplicates).
    You can't import a JSON backup to add (merge) bookmarks.
    Importing bookmarks from an HTML file adds the imported bookmarks to the already existing bookmarks, so you may need to remove duplicates.
    An HTML backup doesn't support tags and annotations, so if you want to preserve those then you need to use a JSON backup.
    A JSON backup doesn't preserve the website favicons, so you need to visit a website to get back that favicon.

  • How to remove Mozilla Thunderbird from Mac Pro 10.9.3

    Good evening everyone. I am new to Apple and the Mac enviroment coming over from Windows
    I installed Mozilla Thunderbird and am not sure how to remove it completely from my system.
    Can someone please let me know step by step what I need to do to remove Mozilla Thunderbird from my Mac as I don't like it's UX and will most likly never use it.
    Thank you.

    To make sure, click Finder on your Dock.
    Then click on Applications and scroll down looking for the Thunderbird App.
    If you find it there, do a control click "Move to Trash" or click hold and drag it to the Trash.
    For more on OS X Finder, see > Mac Basics: The Finder
    For more on OS X in general, see > Mac Basics - Apple Support

  • Remove imported movies from itunes

    How does one remove imported movies from itunes?

    You can't put films into the cloud, whether they will show for redownloading (e.g. via the Purchased link under Quick Links on the right-hand side of the iTunes store homepage) depends upon what country that you are in (they can't be redownloaded in all countries), whether you've changed countries since buying them (they won't show if you have), and if the rights-holder keeps them in your country's store (any item could be removed from the store at any time) - rather than relying on being able to redownload them you should copy them (and the reset of your iTunes library) to a backup drive (preferably drives) so that you have your own copy. By default your iTunes library is stored under : /Users/username/Music/iTunes
    You can delete them from your library by selecting them and pressing the delete key on your keyboard.

  • How can i import contacts from another AIM account to this new one

    If you reference my last ichat question, you will see that I have had serious problems and had to create a new account.
    How can I import contacts from another AIM account to this new one??

    Hi,
    Use AIM for Mac and use the Export and Import features.
    Other than that it is a question on making sure every Single Buddy has more than just their Screen name in the IChat Address Card so it is added to the Address Book and dragging them back from there
    9:08 PM Thursday; February 7, 2008

  • How to remove credit card from iphone4s

    how to remove credit card from iphone4s

    Not sure what you mean by this. Are you trying to remove your credit card information from the App Store/iTunes store?

  • How do I import music from a flash drive that was formatted with a windows PC to my MacBook?

    How do I import music from a flash drive that was formatted with a windows PC to my MacBook - the drive is showing it has over 3GB of info on it but none of the files are showing up in finder?  I had backed up my iTunes library on the flash drive about a year and a half ago before I switched from a dell to a MacBook pro.

    What I found works for me is to make sure iTunes keeps the music files organzied in the iTunes Media folder according to album, artists, etc. and that it copies the music files there when adding them to the library.  That way, if something happens to the library, the raw files can always be re-imported again.

  • How to remove available downloads from the list

    how to remove available downloads from the list without it resuming when i open itunes or check for available downloads?

    There is not a way to remove them from the list.  Just let them download, and then delete them from your library when they are done.

Maybe you are looking for

  • Contacts mobileme sync issue

    On my new iphone 4 I do not have synchro with mobileme. I do have calendars, mail, bookmarks working, but not contacts. Afer restore from my old iphone I got all the contact but no sync. I delete the mobile account and re-install : same thing. Any id

  • Error 800233EF Update Download Problems Error Code 107......

    The update does not want to install. It gets to a percentage download then fails - can you please advise urgently

  • Printing In XP/2000

    Hello, There is problem printing character reports in windows xp/2000 rather then printing in 98/95. In win 98 it prints in character form but when i print in xp with printer code it didnt even read that and print the report in bitmapped report and h

  • How do you compile a subclass?

    Can anyone help in answering the following question regarding inheritance? I have two classes one extending the other. When I put both classes into a single file and run the javac command to compile them the compilation takes place and no errors are

  • HOw to make AE render my imported sound?

    I imported a sound and layered it in the comp but AE doesnt render it in preview nor in final movie. It says that the sound option is set to off in the render settings but i see no where i can change that. What can i do?