Cannot get old Custom Captions to disappear

Good day,
Using CP5 on Windows XP.
I found some other posts on this topic but since I use XP, my issue has not been answered.
I have been creating custom captions for use in some corporate templates.  They are working fine but when I change the 5 files and their associated FCM files, I usually save them as a new name, this way the new changes appear.  However, now I have 4 old and altered captions that I am not using that I cannot get out of the Captions selction list.   I have deleted the bmp and fcm files from the Gallery/Captions file.
I saw in other posts that perhaps deleting the info.cpi file may help.  However, since I am on XP, I cannot seem to find said file!  I am racking my brain trying to figure this one out.  Spent nearly an hour on this before lunch before giving up and coming to the forums.
I have also hear that clearing the cache may also help?  Thoughts?
Any help would be greatly appreciated.
Thanks,
Eric

There are two ways to go:
a)
A comment from Ricks forum post (including Ricks screeshot):
Perhaps try clearing the cache?
Click Edit > Preferences...
From the Global categfory, click the Clear Cache button.
Or B)
A comment from Vishs forum post:
Also, can you try deleting the Preferences and check? You can find the  preferences at C:\Users\<username>\AppData\Local\Adobe\Captivate 5

Similar Messages

  • Cannot get facelets custom components to work

    Hi,
    I'm switching to facelets but I fail to get my custom components to work. I hope any of you can help me point out what is going wrong. My component is built into a seperate jar file:
    package be.xxx.web.tag;
    import java.io.IOException;
    import javax.faces.component.UIOutput;
    import javax.faces.context.FacesContext;
    import javax.faces.context.ResponseWriter;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class IfTag extends UIOutput {
         public IfTag() {
              super();
              Log log = LogFactory.getLog(IfTag.class);
              log.debug("THIS IS THE IFTAG FACELETS IMPLEMENTATION");
              setRendererType(null);
         public boolean getRendersChildren() {
              return true;
         @Override
         public void encodeBegin(FacesContext facesContext) throws IOException {
              // We're rendering a table row
              facesContext.getResponseWriter().startElement("span", null);
         @Override
         public void encodeChildren(FacesContext facesContext) throws IOException {
              ResponseWriter writer = facesContext.getResponseWriter();
              writer.append("This if the IF tag");
         @Override
         public void encodeEnd(FacesContext facesContext) throws IOException {
              facesContext.getResponseWriter().endElement("span");
         @Override
         public String getFamily() {
              return COMPONENT_TYPE;
    }The taglib file in META-INF of the jar file:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE facelet-taglib PUBLIC "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" "http://java.sun.com/dtd/facelet-taglib_1_0.dtd">
    <facelet-taglib>
         <namespace>http://www.xxx.be/jsf/mw</namespace>
         <tag>
              <tag-name>menu</tag-name>
              <component>
                   <component-type>be.xxx.web.Menu</component-type>
              </component>
         </tag>
         <tag>
              <tag-name>if</tag-name>
              <component>
                   <component-type>be.xxx.web.If</component-type>
              </component>
         </tag>
    </facelet-taglib>Also in META-INF of the same jar, a faces-config.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <faces-config xmlns="http://java.sun.com/xml/ns/javaee"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
                  version="1.2">
      <component>
        <component-type>be.xxx.web.Menu</component-type>
        <component-class>be.xxx.web.tag.MenuTag</component-class>
      </component>
      <component>
        <component-type>be.xxx.web.If</component-type>
        <component-class>be.xxx.web.tag.IfTag</component-class>
      </component>
    </faces-config>Finally, in the main project where the jar with above files is used, I try to call a custom tag:
    <html xmlns="http://www.w3.org/1999/xhtml"
         xmlns:mw="http://www.xxx.be/jsf/mw"
         xmlns:ui="http://java.sun.com/jsf/facelets">
    <mw:if></mw:if>
    </html>The result is that the if tag just writed out nothing, so "<mw:if></mw:if>" in the output just becomes "".
    I haven't found a way to debug this either (as in: I don't think the java code is even executed), so any tips would be greatly appreciated!
    Thanks

    Looks like I posted the wrong class. Here is the problematic one:
    public class MenuTag extends FacesBean implements BodyTag {
         private transient PageContext pc = null;
         private transient Tag parent = null;
         private transient BodyContent bodyContent;
         public void setPageContext(PageContext p) {
              pc = p;
         public void setParent(Tag t) {
              parent = t;
         public Tag getParent() {
              return parent;
         public int doStartTag() throws JspException {
              String url = null;
              try {
                   WebSession ws = (WebSession) getBean("ws");
                   if (ws.isLoggedIn()) {
                        // Get the value of the applicable menu rule
                        url = ws.getPolicy().getMenu();
                        if (url != null && !"".equals(url)) {
                             // Some logic to get correct file
                             String inputLine;
                             while ((inputLine = in.readLine()) != null)
                                  pc.getOut().write(inputLine);
                             in.close();
                             // We printed the menu, so skip the default menu
                             // that is in this tag's body.
                             return SKIP_BODY;
                   } else {
                        getLog().info("The user is not logged in, reverting to default menu.");
              } catch (FileNotFoundException ex) {
                   getLog().warn("Menu file not found (" + url + "), reverting to default menu.");
              } catch (Exception ex) {
                   throw new JspTagException("Error when applying the menu rule.", ex);
              return EVAL_BODY_BUFFERED;
         public int doEndTag() throws JspException {
              try {
                   if (bodyContent != null) {
                        bodyContent.writeOut(bodyContent.getEnclosingWriter());
              } catch (IOException e) {
                   throw new JspException("Error: " + e.getMessage());
              return EVAL_PAGE;
         public void release() {
              pc = null;
              parent = null;
         private String resolveServerUrl() {
              HttpServletRequest req = (HttpServletRequest) FacesContext
                        .getCurrentInstance().getExternalContext().getRequest();
              String url = req.getScheme() + "://" + req.getServerName();
              if (req.getServerPort() != 80) {
                   url += ":" + req.getServerPort();
              return url;
         public void doInitBody() throws JspException {
         public void setBodyContent(BodyContent bc) {
              bodyContent = bc;
         public int doAfterBody() throws JspException {
              return 0;
    }So, problem is that this is not working in facelets as a component, while it did in JSP's.
    Can I get any hints what I am doing wrong here?
    Thanks

  • Cannot get old songs from my ipod onto my new computer. My old one crashed and now I only have these songs on this particular ipod.

    Cannot get my ols songs off ipod onto new computer

    The music sync is one way - computer to ipod.  The exception is itunes purchases.  File>Transfer Purchases
    It has always been very basic to always maintain a backup copy of your computer for just such an occasion.  Use your backup copy to put everything back.

  • I cannot get old notes to sync from my iPad to iCloud.

    I have hundreds of notes on my iPad 2. They were originally created on an old iPhone 4S and synced over to the iPad 2. The iPhone 4S is now gone. I bought a iPhone 5S. I can create notes on my iPad 2 and sync them to iCloud (which then goes to the iPhone).  I can do the same in reverse: iPhone 5S to iCloud to iPad 2.  However I cannot find a way to get the hundreds of old notes on my iPad 2 to go to iCloud and then to the iPhone 5S. Apple is telling me that I'll have to hand-enter the hundreds of notes.  There HAS to be a better way!

    It will be recognised as a camera if you've got photos on it that were taken with it, copied to via the camera connection kit, or saved from emails/websites etc i.e. non-computer synced photos (it's the way by which they can be copied off the iPad : if you want to turn the camera feature offthen there are instructions here http://support.apple.com/kb/HT4083).
    In terms of iTunes, have you got the most recent version ? If you've tried rebooting your computer and it still doesn't appear, then there is troubleshooting help here : http://support.apple.com/kb/TS1538 for PC, and http://support.apple.com/kb/TS1591 for Mac

  • Cannot get old gen appleTV to sync with iMac any more

    I can no longer sync my old appleTV with my macs. I've tried turning off home sharing as someone suggested, but that did nothing.
    AppleTV shows up in iTunes but its content does not. This means I can no longer back up content that I've purchased (NOT rented) on my AppleTV because I cannot move it to my Mac.
    I guess I can purchase stuff on the Mac in future and stream it, but it sort of negates the convenience of sitting in front of the TV and using AppleTV if I have to go into the other room, buy the stuff, wait for it to download on my Mac and then access it. It also means I have to leave my computer on all the time which I'm not in the habit of doing. (It's not a very green option, is it?)
    Also, it doesn't solve the problem of all the TV shows and movies I've purchased recently and now can't back up. (Since I'm on the old AppleTV, I don't have the 99 cent rental option, either.)
    Any ideas? Am I missing something? Or is this the way it is now?

    I have been experiencing the same problems as discussed above.  At first my 2 Apple TV's were a dream - easy to use and quite convenient.  I could purchase a movie/music on my main floor Apple TV, it would then sync to my main computer and then sync with my basement Apple TV (and vice versa).  As I stated before, the system was gorgeous and worked like it was explained to me prior to my purchase of same.
    I always say yes to new software updates.  Then all of a sudden everything stopped syncing and my 2 Apple TV's stop showing up as "device" in Itunes. Calling Apple support was a waste of time - these so-called computer geniuses pretended they did not know what was going on.  Going on the self-help menus was also a dead-end.  I then went to the place where I purchased the Apple TV's and they told me flat out that Apple has simply changed the software to conform with the 2nd generation Apple TV and syncing is no longer possible.
    So basically all of us 1st generation Apple TV owners purchased 160 GB of storage for nothing because you can no longer sync. and store.  I say that we get together and fight back because this is not right.  When I purchased my 2 Apple TV's it was on the premise that they would sync and store my purchases and now Apple has unilaterally modified the terms of the contract - I did not agree to this.  Luckily we have court systems that allow class actions and Juries who will punish high-handed and callous corporations who try to screw consumers.  All I want is to be able to use my Apple TV's as I used to - it is that simple - I just want to be able to sync again.
    Let me know your thoughts.  Let's not get steamrolled by a billion dollar corporation.

  • Cannot get old email messages onto new Z10

    I have a bb9800 and am trying to get the old email messages off of it onto the new Z10. The 9800 only had the telus.blackberry.net email address and on the Z10 I have the company email. Is there a way to get those emails over other than forwarding them all individually

    Hi and Welcome to the Community!
    If you mean that you wish to have your old @telus emails visible on your Z10, the answer is no. That email was provided by BIS, and BB10 does not use BIS. Hence, those email addresses cannot be configured to a BB10 device. So, the only way to have those emails on the BB10 device is via forwarding from the @telus email account over to one that indeed can be integrated to the Z10.
    BTW -- you need to migrate off of that @telus email address, as it will be going away. They are allowing one year of auto-forwarding (which you need to configure...contact Telus for assistance), after which that @telus email address will cease to exist.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Changed Apple IDs and cannot get old files to play

    I have changed my apple id and i have files associated to the old account. How do I get them associated with the new one. I don't remember the password to the old account

    All content that you buy/download from Apple is tied to that account that downloaded it, and it can't be copied or transferred to a different account. So if you created a new account as opposed to updating the existing one then you will need to continue to use the old account to authorise the old purchases - if you can't remember the old account's password then you can try getting it reset via this page.

  • Cannot get old podcast off to repost new one

    I have been trying for at least a month to get my podcast in the iTunes store. I have to admit, the first times I tried, it was easy. But those were podcasts done on Garageband and submitted through the new Quicktime without the Variable Bit Rates and chapters were turned into movies. They could not be downloaded to iPods. Two tries were removed http://www.radasky.com/Site/TheFoxPodcast/rss.xml and http://www.radasky.com/Site/MP3__Podcast/rss.xml but the next one, despite all my requests and trouble reported in downlooads by friends, is still in the store http://www.radasky.com/Site/Listento_TheFox/rss.xml . It has the incorrect chapters and cannot be subscribed to. A message "There was a problem downloading "The Fox Podcast" comes up. I have tried to resubmit and get a confirmation that my site is being looked at but nothing from there. What can I do now?

    There are two ways to go:
    a)
    A comment from Ricks forum post (including Ricks screeshot):
    Perhaps try clearing the cache?
    Click Edit > Preferences...
    From the Global categfory, click the Clear Cache button.
    Or B)
    A comment from Vishs forum post:
    Also, can you try deleting the Preferences and check? You can find the  preferences at C:\Users\<username>\AppData\Local\Adobe\Captivate 5

  • Cannot get old tracks and playlists transferred from my Ipod to my Itunes.

    I lost the hardrive on my home computer last week. I replaced it and reinstalled an updated version of I tunes 8.0. I was previosly running the 7.0 ish Itunes. When I connect my Ipod to computer, it stays in the mode of do not disconnect. (forever). the tracks on the Ipod need to be moved onto I tunes library so I can use them on the computer. Unfortunatly, I dont know how to get the library to recognise my songs on the ipod. Can anyone shed light on this dillema for me?? Thanks!

    iTunes is looking for your music in the default directory.  Since everything was moved, re-direct it with the instructions I gave you:
    In iTunes, click tools, and then preferences, then go to the advanced tab.
    If you know where the music is on the E: drive, select it from the iTunes media folder location option.
    It will reload all of the music to your iTunes - You can then select what music you want to add to your iPod.

  • I cannot get old screen protected off my ipad

    I am having a problem removing an old screen protector off my Ipad. Have tried tape, etc. Ca anyone offer any suggestions?

    I've never encountered a problem removing a screen protector from an iDevice. While I think that reapplying it after removing it would be even more difficult, you shouldn't have any trouble removing it unless there is some kind of adhesive. Did you apply an adhesive before installing the screen protective? Did the product include some form of adhesive on it that activated when you installed it?
    Need some more info about your problem...

  • What is going on with Verizon? Cannot refill my data, cannot get a hold of customer service

    All day long I have been trying fill my data, and I cannot do it via phone or online. I cannot get a customer service representative.  The 800 number keeps telling me that they are having issues processing my request and that they can't connect to customer service. I cannot refill it online, I keep being told that they are updating their systems. Literally this has been going on all day from about 9 am to now, almost 12 hours.  Sick of this.

    For prepaid you call: (888) 294-6804.  Is that the number your calling?

  • HT1750 I purchased a new iMac, I have  an old iPod mini I am trying to sync my iTunes library on my new Mac with my iPod. I purchsed additional music yesterday but I cannot get it to sync to load the music from my computer to my iPod.

    I purchased a new iMac, I have  an old iPod mini I am trying to sync my iTunes library on my new Mac with my iPod. I purchsed additional music yesterday but I cannot get it to sync to load the music from my computer to my iPod.

    From Here   http://support.apple.com/kb/HE37
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.

  • I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps

    I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps at all. And 2, Lr everytime I load it up it gives me the option to retry or switch to and it takes a while for me to even get anywhere with it I think it has something to do with the catalogs? I've been using these programs for a few years now on a Mac...no problem but when I use a PC when I'm away coz it's the (only) comp available these happen PC's are so useless! Please can anyone help??...

    I can give a few suggestions on Photoshop CC 2014, but Lightroom is a separate forum and you should ask Lr questions there.
    First close Photoshop.
    Then start Photoshop by double-clicking on it's icon and very quickly after that, hold down the ctrl-alt-shift keys until you see the reset dialog. answer "Yes" to delete settings, and let Photoshop continue to load.
    It's tricky to do and may take a few tries, but at least it should reset Photoshop CC 2014 to defaults.
    Gene

  • HT2731 how can i sync my Apple ID to my iTunes sign-in?  I have an old ID showing up in my iTunes sign-in window and cannot get rid of it to show my current Apple ID.  I don't have the old password to the old ID in order to "manage" my account.

    how can I sync my Apple ID to my iTunes store sign-in window?  An old ID keeps showing in the iTunes sign-in window and I cannot get rid of it to show my current Apple ID. I don't have the password for the old ID in order to "manage" my account and make changes. Help.  Thanks.

    Did you create a new account or did you update your existing account with a new email address ? You can tap on the id in Settings > iTunes & App Stpre and sign out of it and you can then sign with the new/updated account.
    If you did create a new account then your existing content will remain tied to your old account, so only that old account will be able to redownload that content and/or download updates to its apps. If you can't remember the password for it then you can try getting it reset via this page : http://iforgot.apple.com

  • After the latest update, all my apple products reverted to an old icloud account.  As it no longer exists, I cannot get into it to delete it and add the correct id.  How can I change this, especially on my Macbook pro?

    After the latest update, all my apple products reverted to an old icloud account.  As it no longer exists, I cannot get into it to delete it and add the correct id.  How can I change this, especially on my Macbook pro?  There is no p/w related to it and even though I tried to reset "password" it won't allow as the id does not exist, neither does the email associated with the old id.  How do I switch it to a newer id?

    It's all rather odd because the old account cannot 'no longer exist' - if you don't have the correct password you won't be able to get into it, but you can't actually delete an iCloud account from the server.
    I'm afraid you will need the services of iCloud Support. If you currently happen to have AppleCare, either because you recently bought Apple hardware or have paid to extend the inititial period, you can contact them here:
    http://www.apple.com/support/icloud/contact/
    You will need the serial number of the covered hardware.
    If you are not covered by AppleCare, then - in common with other free email services - there is no free support and you may be asked to pay a fee.

Maybe you are looking for