Missing Collections? Please help.

Hi,
I didn't realize but I had been creating numerous Collections, I guess not within a Catalog. Iwent to look at some of my older catalogs,
and when I tried to get back to my current work area, I couldn't find all the collections I was working on. I got to my Lightoom Folder
on my desktop and that has some of my current photos in folders, but only the ones I have edited. How do I find these Colllections?
Are they on my hard drive? I couldn't locate them? I have done lots of researching but am having no luck. Please help, I'm getting
very discouraged.
Thank you!!

Hi,
Are you trying to retrieve the information about which photos are in which collections?
Your collection membership information is stored ONLY in your catalog files, not on your hard disk and not in your backup of your photos. Thus, you need backups of your catalog files. Do you have backups of your catalog files?
Or are you trying to retrieve the actual photos which are no longer in any catalogs?

Similar Messages

  • I USED to see the airplay symbol on my ipad. I don't see it anymore what's wrong? My system is up to date, I reset my Apple TV and everything else I can think of. What am I missing? Please help!

    I USED to see the airplay symbol on my ipad. I don't see it anymore what's wrong? My system is up to date, I reset my Apple TV and everything else I can think of. What am I missing? Please help!

    Did you reboot the router too?

  • Indesign missing fonts, please help!

    Hi!
    i
    I just switched from windows 8 to a mac mini. I had indesign CC trial on the PC and now that I switched to a mac fonts are missing n my document. Both versions of indesign were up to date. How do I get my fonts back please help. The font I really need is called "Onyx"
    I dont know why the fonts were working on the PC using the same indesign trial but on the Mac i download the indesign trial the font is missing. Please help!!!!!!

    On behalf of Adobe ...
    Onyx is not a font provided by Adobe with InDesign or any of the Creative Suite or Creative Cloud offerings. It is installed on your Windows system when you install Microsoft Office.
    Likewise, if you have licensed and Installed Microsoft Office on your Macintosh, Onyx is installed on your system.
    If you have not licensed and installed Microsoft Office on your Macintosh, you can license the font at http://www.fonts.com/family/248141/onyx.
              – Dov

  • HT4059 I can't open my books with the update, says failed to load book because the requested resources is missing.  Please HELP.

    I can't open my books with the update, says failed to load book because the requested resources is missing.  Please HELP.

    If you can't open a particular ibook then try deleting it from the bookshelf via the Edit button at the top right of the bookshelf, and (assuming that it's still in your country's store) redownload it via the Purchased tab in the ibookstore in the app (or if you have a copy of it on your computer's iTunes library sync it back from there).

  • FLASH PLAYER MISSING PLUGIN PLEASE HELP!!

    Since the Last Safari Update,I've been constantly getting a missing plugin message whenever FlashPlayer was required.
    I have tried uninstaling/installing FlashPlayer from the adobe website. But still always asked to download the latest version.And later did disk permission repair/check, nothing worked. I even disabled som of the plugins i had read in the discussion that might cause some problems such as the java cocoa plugin, but flash player's plugin is still missing.
    PLEASE HELP!

    Latest version of Flash is 10.3.181.26
    It installs in Macintosh HD/Library/Internet plug-ins and is available to all browsers.
    Make sure you're getting the right one; there is  one for Firefox, Safari and Opera and a seperate one for Chrome.
    Best to install with all browsers closed (note - you have to open and authorise the installer - it doesn't install automatically on download).
    If a browser's open, quit and reopen it to enable the plug-in.
    Be wary of error messages claiming you don't have the right plug-in. Don't follow links from them, they're often used to redirect you to malware sites.
    And ensure JavaScript is enabled when trying to view Flash; it won't work without it.
    Typos edited by: noondaywitch

  • Currently i am outside country and using my family person sim but my iphone display shows unknown call it become difficult when i missed call please help me out

    currently i am outside country and using my family person sim but my iphone incoming call display shows unknown call it become difficult when i missed call please help me out

    We are all users here
    what exactly do want any one to do ?

  • ITunes Match has messed up my entire music collection - please help me

    Does anyone else have a problem with iTunes Match splitting their albums? I have been happily using iTunes for my entire music collection (round 800 albums) but it became a disaster the day I turned on Match. Where an album has a guest contributor on a track, it removes that track and places it separately, same album name and cover, but with the individual track(s). Some albums have been split across more than 7 individual album entries.  The changes appear to be permanent. Turning off Match does not cure the problem. Removing the album and reloading it doesn't cure the problem. I have been through and individually altered each album track to say that it it part of the same album. This results in the album tracks places together but then shows the album as 'unknown artist' so I can't view my music properly. I am at my wits end with this. Please help.

    Hi,
    This is not a match issue but a general iTunes problem - read this article http://samsoft.org.uk/iTunes/grouping.asp
    Jim

  • Ora-06531 reference to uninitialized collection --- Please help

    Hello,
    I am getting this "ora-06531 reference to uninitialized collection" while executing the below procedure.
    =======================
    PROCEDURE iud_account_col
    ( pv_account_version IN account_version_t
    AS
    LC_USR_ID CONSTANT VARCHAR2(30) := pkg_util.get_usr_id ;
    LC_TMSTMP CONSTANT TIMESTAMP /*WITH TIME ZONE*/ := pkg_util.get_tmstmp ;
    lv_level VARCHAR2(100);
    lv_am_key_id number;
    lv_acct_cusip VARCHAR2(12);
    LC_AM_KEY_ID number;
    LC_AM_VER_NUM number;
    BEGIN
    DECLARE
    lv_am account_version_t;
    lv_amv account_maint_t;
    lv_amvv account_maint_version_t;
    cursor c_acct_cusip ( cv_am_key_id varchar2) is
    select acct_cusip
    from account_maintenance
    where am_key_id = lv_amv.am_key_id;
    BEGIN
    lv_am := pv_account_version;
    lv_level := 'ACCOUNT_MAINT' ;
    lv_amv := pv_account_version.account_maint;
    LC_AM_KEY_ID := lv_amv.am_key_id;
    FOR acct_cusip_info in c_acct_cusip (lv_am_key_id)
    LOOP
    lv_acct_cusip := acct_cusip_info.acct_cusip;
    END LOOP;
    IF lv_amv.action = 'I'
    THEN
    INSERT
    INTO
    account_maintenance
    ( am_key_id
    , acct_cusip
    , am_orig_cre_tmstp
    , am_orig_usr_id
    , delete_ind
    , add_usr_id
    , add_tmstmp
    , lock_level_num
    VALUES
    ( lv_amv.am_key_id
    , lv_amv.acct_cusip
    , LC_TMSTMP
    , LC_USR_ID
    , lv_amv.delete_ind
    , LC_USR_ID
    , LC_TMSTMP
    , lv_amv.lock_level_num
    END IF;
    lv_amvv := pv_account_version.account_maint.account_maint_version;
    lv_level := 'ACCOUNT_MAINT_VERSION';
    LC_AM_VER_NUM := lv_amvv.am_ver_num;
    IF lv_amvv.action = 'I'
    THEN
    -- Insert issue maint version
    INSERT
    INTO
    ACCOUNT_MAINTENANCE_VERSION
    ( AM_KEY_ID
    , AM_VER_NUM
    , ACCT_CUSIP
    , LEGAL_ENTITY
    , APPR_STATUS_REF_ID
    , INACTIVE_IND
    , ADD_USR_ID
    , ADD_TMSTMP
    , UPD_USR_ID
    , UPD_TMSTMP
    , LOCK_LEVEL_NUM
    VALUES
    ( lv_amv.am_key_id
    , lv_amvv.am_ver_num
    , lv_acct_cusip
    , lv_amvv.legal_entity
    , lv_amvv.appr_status_ref_id
    , 'N'
    , LC_USR_ID
    , LC_TMSTMP
    , LC_USR_ID
    , LC_TMSTMP
    , lv_amvv.lock_level_num
    END IF; --- end for account maint version.
    FOR j IN lv_amv.account_maint_comment_col.FIRST
    .. lv_amv.account_maint_comment_col.LAST
    LOOP
    DECLARE
    lv_amvc account_maint_comment_t;
    BEGIN
    lv_amvc := lv_amv.account_maint_comment_col(j);
    lv_level := 'ACCOUNT_MAINT_COMMENT';
    IF lv_amvc.action = 'I'
    THEN
    --- Insert into account maintenance comment table
    INSERT
    INTO
    ACCOUNT_MAINTENANCE_COMMENT
    ( AM_KEY_ID
    , AM_VER_NUM
    , COMMENT_NUM
    , COMMENT_TMSTP
    , COMMENT_TXT
    , INACTIVE_IND
    , ADD_USR_ID
    , ADD_TMSTMP
    , LOCK_LEVEL_NUM
    VALUES
    ( LC_AM_KEY_ID
    , LC_AM_VER_NUM
    , lv_amvc.comment_num
    , LC_TMSTMP
    , lv_amvc.comment_txt
    , 'N'
    , LC_USR_ID
    , LC_TMSTMP
    , lv_amvc.lock_level_num
    END IF;
    END;
    END LOOP; --- end loop for account maint comments
    END;
    COMMIT WORK;
    RETURN;
    EXCEPTION
    WHEN OTHERS THEN
    ROLLBACK WORK;
    RAISE;
    END iud_account_col;
    ====================
    The UDT's are below:
    CREATE OR REPLACE TYPE ACCOUNT_VERSION_T
    AS OBJECT
         PORTFOLIO     PORTFOLIO_T
    ,     ACCOUNT_MAINT          ACCOUNT_MAINT_T
    CREATE OR REPLACE TYPE ACCOUNT_MAINT_T
    AS OBJECT
    ( AM_KEY_ID number
    , ACCT_CUSIP     varchar2(12)
    , DELETE_IND varchar2(1)
    , ADD_USR_ID varchar2(20)
    , ADD_TMSTMP timestamp
    , UPD_USR_ID varchar2(20)
    , UPD_TMSTMP timestamp
    , LOCK_LEVEL_NUM number
    , ACTION VARCHAR2(1)
    , ACCOUNT_MAINT_VERSION ACCOUNT_MAINT_VERSION_T
    , ACCOUNT_MAINT_COMMENT_COL ACCOUNT_MAINT_COMMENT_COL_T
    CREATE OR REPLACE TYPE ACCOUNT_MAINT_VERSION_T
    AS OBJECT
    ( AM_KEY_ID number
    , AM_VER_NUM number
    , ACCT_CUSIP     varchar2(12)
    , LEGAL_ENTITY varchar2(100)
    , APPR_STATUS_REF_ID number
    , FUND_INACTIVE_TMSTMP timestamp
    , ADD_USR_ID varchar2(20)
    , ADD_TMSTMP timestamp
    , UPD_USR_ID varchar2(20)
    , UPD_TMSTMP timestamp
    , LOCK_LEVEL_NUM number
    , ACTION VARCHAR2(1)
    CREATE OR REPLACE TYPE ACCOUNT_MAINT_COMMENT_T
    AS OBJECT
    ( AM_KEY_ID number
    , AM_VER_NUM number
    , COMMENT_NUM     number
    , COMMENT_TXT varchar2(400)
    , ADD_USR_ID varchar2(20)
    , ADD_TMSTMP timestamp
    , UPD_USR_ID varchar2(20)
    , UPD_TMSTMP timestamp
    , LOCK_LEVEL_NUM number
    , ACTION VARCHAR2(1)
    =====================================================
    This is how I am trying to execute:
    Declare
    pv_account_version account_version_t := account_version_t(null
    , account_maint_t ( 10041
    , '11111111'
    , 'N'
    ,'abc'
    , NULL
    , NULL
    , NULL
    , 1
    ,NULL-- 'I'
    ,ACCOUNT_MAINT_VERSION_T(10031
    , 10001
    , NULL
    ,'Legal entity'
    ,22
    ,NULL
    ,'abc'
    ,NULL
    , NULL
    ,NULL
    , 1
    ,NULL --'I'
    ,ACCOUNT_MAINT_COMMENT_COL_T(
    10031
    ,10001
    ,1001
    ,'My first comment'
    ,'abc'
    , NULL
    , NULL
    , NULL
    , 1
    , 'I')
    Begin
    pkg_cdm_process_v2.iud_account(pv_account_version);
    END;
    What am I doing wrong here....
    Please help.
    Thanks.

    Now if we only knew where the error was flagged.
    PROCEDURE Iud_account_col
         (pv_account_version  IN ACCOUNT_VERSION_T)
    AS
      lc_usr_id      CONSTANT VARCHAR2(30) := pkg_util.get_usr_id;
      lc_tmstmp      CONSTANT TIMESTAMP /*WITH TIME ZONE*/ := pkg_util.get_tmstmp;
      lv_level       VARCHAR2(100);
      lv_am_key_id   NUMBER;
      lv_acct_cusip  VARCHAR2(12);
      lc_am_key_id   NUMBER;
      lc_am_ver_num  NUMBER;
    BEGIN
      DECLARE
        lv_am    ACCOUNT_VERSION_T;
         lv_amv   ACCOUNT_MAINT_T;
         lv_amvv  ACCOUNT_MAINT_VERSION_T;
         CURSOR c_acct_cusip(cv_am_key_id VARCHAR2) IS
           SELECT acct_cusip
           FROM   account_maintenance
           WHERE  am_key_id = lv_amv.am_key_id;
      BEGIN
        lv_am := pv_account_version;
        lv_level := 'ACCOUNT_MAINT';
        lv_amv := pv_account_version.account_maint;
        lc_am_key_id := lv_amv.am_key_id;
        FOR acct_cusip_info IN c_acct_cusip(lv_am_key_id) LOOP
          lv_acct_cusip := acct_cusip_info.acct_cusip;
        END LOOP;
        IF lv_amv.ACTION = 'I' THEN
          INSERT INTO account_maintenance
                     (am_key_id,
                      acct_cusip,
                      am_orig_cre_tmstp,
                      am_orig_usr_id,
                      delete_ind,
                      add_usr_id,
                      add_tmstmp,
                      lock_level_num)
          VALUES     (lv_amv.am_key_id,
                      lv_amv.acct_cusip,
                      lc_tmstmp,
                      lc_usr_id,
                      lv_amv.delete_ind,
                      lc_usr_id,
                      lc_tmstmp,
                      lv_amv.lock_level_num);
        END IF;
        lv_amvv := pv_account_version.account_maint.account_maint_version;
        lv_level := 'ACCOUNT_MAINT_VERSION';
        lc_am_ver_num := lv_amvv.am_ver_num;
        IF lv_amvv.ACTION = 'I' THEN
          -- Insert issue maint version
          INSERT INTO account_maintenance_version
                     (am_key_id,
                      am_ver_num,
                      acct_cusip,
                      legal_entity,
                      appr_status_ref_id,
                      inactive_ind,
                      add_usr_id,
                      add_tmstmp,
                      upd_usr_id,
                      upd_tmstmp,
                      lock_level_num)
          VALUES     (lv_amv.am_key_id,
                      lv_amvv.am_ver_num,
                      lv_acct_cusip,
                      lv_amvv.legal_entity,
                      lv_amvv.appr_status_ref_id,
                      'N',
                      lc_usr_id,
                      lc_tmstmp,
                      lc_usr_id,
                      lc_tmstmp,
                      lv_amvv.lock_level_num);
        END IF; --- end for account maint version.
        FOR j IN lv_amv.account_maint_comment_col.FIRST.. lv_amv.account_maint_comment_col.LAST LOOP
          DECLARE
            lv_amvc  ACCOUNT_MAINT_COMMENT_T;
          BEGIN
            lv_amvc := lv_amv.Account_maint_comment_col(j);
            lv_level := 'ACCOUNT_MAINT_COMMENT';
            IF lv_amvc.ACTION = 'I' THEN
              --- Insert into account maintenance comment table
              INSERT INTO account_maintenance_comment
                         (am_key_id,
                          am_ver_num,
                          comment_num,
                          comment_tmstp,
                          comment_txt,
                          inactive_ind,
                          add_usr_id,
                          add_tmstmp,
                          lock_level_num)
              VALUES     (lc_am_key_id,
                          lc_am_ver_num,
                          lv_amvc.comment_num,
                          lc_tmstmp,
                          lv_amvc.comment_txt,
                          'N',
                          lc_usr_id,
                          lc_tmstmp,
                          lv_amvc.lock_level_num);
            END IF;
          END;
        END LOOP; --- end loop for account maint comments
      END;
      COMMIT WORK;
      RETURN;
    EXCEPTION
      WHEN OTHERS THEN
        ROLLBACK WORK;
        RAISE;
    END iud_account_col;

  • Profile missing error, PLEASE HELP!

    I have read and tried all of the different options within the forum and nothing is working! Its so frustrating! A while back i randomly had the first profile missing error and to fix it i simply reinstalled firefox, when that didnt work I went through and completely deleted anything that had firefox or mozilla in all my libraries figuring i could then just reinstall a complete fresh install. But i was way wrong and that definitely didnt help. Ive now tried all of the different methods on this site to fix the profile missing error and it isnt working, which i think is because when it says to go to ~/Library/Application Support/Firefox/Profiles folder it is completely empty and there is not a profile to be found. So i am unable to start firefox at all so i cant make a new profile that way, or any other method at all! Please please help! Im running OSX yosemite 10.10.3, any help would be greatly appreciated!!

    See:
    *https://support.mozilla.org/kb/how-run-firefox-when-your-profile-missing-or-inacc
    This is usually caused by a problem with the profiles.ini file and the profile marked as Default=1 in this file is no longer present on the hard drive.
    *Windows: %AppData%\Mozilla\Firefox\<br>C:\Users\&lt;user&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile&gt;\
    *Linux: ~/.mozilla/firefox/
    *Mac: ~/Library/Application Support/Firefox/
    You can use one of these to make Firefox create a new default profile or reuse an existing profile:
    *Delete the profiles.ini file to force Firefox to create a new default profile
    *Use the Profile Manager to create a new profile<br />Use "Choose Folder" when you create a new profile to select the location of a lost profile and recover this profile
    *http://kb.mozillazine.org/Profile_Manager
    *https://support.mozilla.org/kb/Managing+profiles
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Garbage Collection--please help

    My garbage collection logs look as follows:
    <pre>
    (1)342.003: [GC 342.003: [DefNew
    Desired survivor size 819200 bytes, new threshold 1 (max 4)
    - age   1:    1153152 bytes,    1153152 total
    : 13184K->1126K(14784K), 0.0221720 secs] 13184K->1126K(63936K), 0.0227740 secs] [Times: user=0.00 sys=0.02, real=0.03 secs]
    768.603: [GC [1 CMS-initial-mark: 0K(49152K)] 7114K(63936K), 0.0062870 secs]
    (2)1358.802: [GC 1358.802: [DefNew
    Desired survivor size 819200 bytes, new threshold 4 (max 4)
    - age   1:     785520 bytes,     785520 total
    : 14310K->767K(14784K), 0.0680510 secs] 14310K->1700K(63936K) icms_dc=5 , 0.0682220 secs] [Times: user=0.00 sys=0.03, real=0.07 secs]
    1847.304: [GC [1 CMS-initial-mark: 932K(49152K)] 8210K(63936K), 0.0058360 secs]
    (3)2537.684: [GC 2537.684: [DefNew
    Desired survivor size 819200 bytes, new threshold 2 (max 4)
    - age   1:     815688 bytes,     815688 total
    - age   2:     171848 bytes,     987536 total
    : 13951K->964K(14784K), 0.0402100 secs] 14800K->1813K(63936K) icms_dc=0 , 0.0407760 secs]
    </pre>
    I don't know why a concurrent collection is initiated in (2) despite the new threshold is 4.
    Why there is no age 2, age 3 and age 4 collection? In (1) and (3), collection occurs as promised, once when the new threshold is 1 and twice when the new threshold is twice.
    May be the numbers in (2) tell me something, but I don't know how to interpret them.
    Please help.
    Thank you.

    It looks like you are running into what is sometimes called the "Young Generation
    Guarantee" in Sun's JVM. See
    http://java.sun.com/docs/hotspot/gc1.4.2/#3.2.1.%20Young%20Generation%20Guarantee|outline
    You have a large young generation and there might not be a contiguous
    chunk in the tenured generation that is large enough to hold all of the
    young generation. Try cutting your young generation down to 128m and
    see if that helps. You can also take a look at
    http://blogs.sun.com/jonthecollector/entry/what_the_heck_s_a
    You're running into a "concurrent mode failure" although that is not explicitly
    spelled out in 1.4.2.
    And go back to the regular (not incremental) version of UseConcMarkSweepGC.

  • I recently bought a new iphone 5s from UAE , but unfortunately i did not find the facetime on my new iphone, how come that i bought a new iphone with missing options , please help

    i recently bought a new iphone 5s from UAE , but unfortunately i did not find the facetime on my new iphone, how come that i bought a new iphone with missing options , please help

    Your earlier phone must have been originally intended for sale in another country and must have been purchased from somewhere other than an authorized Apple retailer. Phones that are intended to be sold in the UAE have FaceTime permanently disabled. The option is not there and cannot be made to work.

  • My Smart Brush tool is missing! please help!

    I used it yesterday and now can't get it back for the life of me please help! i need a blue sky!

    I'm working in PS Elements 13 any help appreciated!

  • Missing Notes - Please help me :(

    Can anybody help me to recover notes ???
    My daily notes from March 2014 have gone and I dun know why
    Days ago I found them on email accounts but now when I tried to find them again in Mail Box but no result and I dont know when they've gone...
    Those notes are so important for me and I cant sleep unless I find them
    Can someone help me, please ???
    So so so important...
    As daily notes means I take everyday but there are days still exist but some's gone...
    I lost about 20-25 notes...
    I tried to find in Trash, Archive, Sent, Junk but I cant find till now
    Please help me
    Many thanks

    sorry for the wrong format...
    The correct format for XIAxisAdapter is mentioned in this SAP note:
    https://service.sap.com/sap/support/notes/1039369
    Download the attachment present in this note.....in this zip file you will find the Index.htm file...open it
    Click on the Sender Adapter General link in the above Index.htm file......under Sender Adapter General....go to Q11..What is the URL for sending SOAP messages to my channel?
    Or check it in help: http://help.sap.com/saphelp_nw04/helpdata/en/45/a39e244b030063e10000000a11466f/content.htm
    http://<host>:50000/XIAxisAdapter/MessageServlet?senderService=<service>&interface=<interface>&interfaceNamespace=<namespace>&receiverService=<service>&interface=<interface>&interfaceNamespace=<namespace>
    i.e in the url which u are using include all the receiver-side details.
    Regards,
    ABhishek.

  • Missing organs - please help.

    I'm experiencing odd behavior with Logic Express and the organ set (specifically) what I believe is the tonewheel organ set).
    I have been using the organ set (selected from the I/O/Garageband/Tonewheel Organ in the inspector) and have also saved a few of my adjustments to a channel strip setting.
    Anyhow, I opened a project and created a new software instrument track. Selected the organ I wanted, but the sound will not play.I am recording midi from my keyboard as I'm getting a Region with notes played. I can also switch to another instrument and it's working and plays my entered data.
    I also tried opening my saved channel strip organ and nothing. I opened up Garageband and it's the same thing... everything works except no organ.
    Here's the weirdest part... I opened up some old projects with organ tracks. The organ tracks play with the correct sound. But if I Record Enable and try to play some notes... same thing.
    So my organ file is obviously having some sort of issue. No error messages, although I was fiddling around for a while and did get one -41.
    Please help, 'cause I have a limited knowledge where all these files are stored.Thanks for any help you can give me

    Oh god, now do I feel stupid. I have one of those M-Audio Keystations. It only has an "advanced" function" button, and then you actually hit the keys to change settings.
    Anyhow, I think the cat may have stepped on the right combo and screwed up my send settings. I just unplugged and replugged.
    Here I am reinstalling Logic and eliminating preferences...
    Thanks

  • I love using 'Speed Dail'. But now suddenly it's gone missing. Please help me get it back

    I've been using Speed Dial for many months (2+years). then, suddenly one day I lost it. It is not where I can see it.
    If I click the Tools Add-ons drop down I can see speed dial is there but no way can I restore the speed dial icon back to the menu bar.
    Please help

    My speed dial also went missing... why, I have no clue.
    Regardless, I got it back as my homepage for each tab by going to TOOLS, ADD-ONS, EXTENSIONS, then selecting SPEED DIAL, and switching to ENABLE on the right side of the add-ons box.
    I hope this helps!!!

  • Embedding font problem - missing letters - PLEASE HELP!

    The M carachter is missing in all the text.
    The font is embedded and looks fine within catalyst. It is sometimes a problem when I run the file, but always a problem when published.
    I have tried on both windows and mac but problem is on both.
    I have tried rasterizing the text but looses to much quality. I have also tried optimizing graphics but this doesnt change anything - still missing M!
    I cannot find the answer online anywhere, and I really need to solve this asap!
    Please check my site so far:
    http://kathryngibsonjewellery.com/kath/Main.html
    Any help would be much appreciated!
    Message was edited by: curlykath21

    Hi Chris,
    Yes I have embeded the font and it will not diplay the M's
    Is there anyway to change the embed options?
    I tried a tester with the same font in flash pro which at first would show the same fault until I changed the text from TLF to Classic Text. However this doesn't help with my Catalyst project! It does however prove that Flash is able to render the whole font family.
    Any suggestions???? Have been trying for days to fix this strange issue!
    The font is a .TTF
    I Look forward to your reply, thanks for the help

Maybe you are looking for

  • CR2 not recognized in photoshop CS4

    I just bought the new Canon T1i.  Its raw files are marked as CR2. When i try to open them in photoshop CS4 it says "Could not complete your request because it is not the right kind of document."  So i downloaded the upadate to camera raw, version 5.

  • Screen flickers with multi coloured lines... then dies

    I really hope someone out there can help... My iphone is only a couple of months old (bought it first day of release in Australia) and now it is starting to break down. When i press the home key, the screen flickers and has these strange multi colour

  • Rendering Intent for monitors?

    We hear a lot about rendering intent in relation to printing, but isn't the concept equally important in relation to monitor displays? And how does this operate in LR2? Or is Windows (in my case) responsible for making the rendering decisions? I have

  • Save for Web – Image Size Preview doesn't update

    If I use percentage to change a JPG output size the preview either lags (regardless the size/weight of the image) or simply ignores the new value, forcing me to click on the Width/Height field to complete the action. It would be nice to kill the bug!

  • I just got my new phone and I need to know how to change the mobile number to the new one

    Can't get verification code sent to new number