Spark TextInput -  prevent text highlight when tabbing in

How can I stop automatic text selection when I am tabbing into a Spark TextInput control?
Thanks

Well, I still want to be able to highlight it with a mouse down. I want to turn automatic selection off when a user is tabbing into the control or it gets its focus programmatically.

Similar Messages

  • Tab control doesn't highlight when tabbing

    I have to navigate through my application without a mouse, using the tab key, return key, etc. As I tab through the controls I've noticed that as a control receives focus it is outlined with a black box. This doesn't seem to be true, however, for the tab control. Is there someway I can get the tab control to be highlighted when it receives focus via the tab key?

    There are ways you can do it by using attribute nodes. You can monitor the tab controls attribute node to see if it is in focus, then change color, size, or display the page, etc. Here is an example.
    Attachments:
    Tab_control.vi ‏28 KB
    Tab_controld.png ‏4 KB

  • Can you retain text highlighting when exporting to PDF from InDesign?

    Hi,
    I have several publications that are now going to be reviewed by another individual and I was planning to export them to PDF.
    However, I've already highlighted bibliographic references, table call outs, figure call outs in the InDesign file using different colors and I was wondering if there is a way to retain that highlighting when exporting to PDF? Just thought it might make their life a little easier since I already have all that done in the file.
    Thanks!

    Ah ha! Got it! All I needed was your prompt! I looked to make sure that it was set up as conditional text and noticed the Show/Hide option at the bottom of the pop-up. (I knew I saw something before that would allow this, but couldn't remember where!)
    Thanks for jogging my memory!

  • Hyperlink text highlight when hovering over

    Is there a way to create text highlight effect when hovering over hyperlinks in interactive pdf's created in InDesign6 ?

    You have text wrap applied to the image underneath. Right click the text frame and choose text frame properties and enable ignore text wrap.
    Bob

  • Prevent windows closing when tabs are open

    Safari closes windows without warning even when multiple tabs are open. This is even more of a problem with the Close button just above the Back button (I tend toward mouse vs keyboard control). I know this has been discussed before, but the solutions either aren't currently available (Taboo) or no longer seem to have the warning tool (Safari Enhancer).
    Can Safari do this on it's own (issue a warning before closing pages with multiple tabs open)? If so, how? If not, anyone have a solution?
    Thanks,
    Carl

    Hi Carl
    3rd party add-on SAFT has a close window warning as one of its many features. This same feature is also available in Safari 3 Beta via the Safari Preferences>Tab panel. Beta 3 could be installed on your MacBook (requires either 10.4.9 or 10.4.10), but not the other machine.
    Beta 3 is available here. If you decide to try it, do not use the computer during the install. After the restart Safari 3 will be in your applications folder. If you use any 3rd party items, such as SafariPlus, SAFT, etc. make sure you have the latest version installed. Same with Adobe Reader (8.1) and Flash (at least 9.0.28).
    If you decide to uninstall the Beta, there is an Uninstaller in the Installation package. This is the only way to safely revert back to Safari 2.0.4.

  • Hidding Button Text & Highlight Thumbnail

    I'm fairly new to DVDSP. I would like to create buttons that do not show the text and have the border highlighted when you mouse over (or use a DVD remote arrow buttons).
    I would like to create a chapter index template that I can use build a chapter index. The problem is my chapter names are really long and there is no reasonable way to show them. Thus, I want to eliminate the chapter name text from the buttons.
    The only way I have found to "get it done" seems to create the chapter index, then manually remove the button text for each button. To get the remaining button to highlight, I seem to have to choose a shape like "Picture Frame Rectangle White".
    I could deal with deleting the text, but I don't like any of the border highlight shapes that I have found as the ones that seem to both highlight AND show the still or motion are not what I'm looking for. Something like "L Shape Highlight" could work, if only it was programed to show still/motion.
    Any suggestions would be appreciated.

    When you create a chapter index by dragging a track with markers onto a button on a template, hold it and select "Create Chapter Index" from the pop-menu then select a index template. If you use any of the Apple supplied templates, such as "Brush Index", it creates the appropriate index pages. Each index page has buttons to access the specific chapters. All the buttons on these index pages seem to include the chapter name (as set in the chapter marker) and most include a preview of the video starting at that chapter index.
    The chapter names I assigned are the names of the people in the video clip. When there are 2 or more names, it is too long to fit in the space allotted for the chapter title in the chapter index. It does not make sense in this context to name the chapters something short that could be displayed on the chapter index. Instead, I would like to tell DVD studio NOT to display the chapter names on the chapter index, thus only displaying the button with the video preview.
    The only way I found to prevent the text from showing is create the chapter index, then, delete all the text in each button, leaving only the preview.
    The problem with this approach is most of the button styles change the TEXT highlighting when the button is selected. When there is no text, you can not tell which button is selected.
    As a result not only do I want to turn off the text for the buttons, I also want to be able to have the a highlight show on the non-text portion of the button.
    Let me try to provide a visual for this: you look at the Apple Template "Brush Index". Remove the text from each button. Next, instead of having the text change color in the "Selected" and "Activated" show a colored border around the video preview when Selected or Activated. That's what I'm trying to do.
    I have not found a good way to accomplish this seemingly simple task in DVDSP using the Apple provided buttons and templates. Hopefully I'm missing something and there is an easy way to do this.
    NOTE - this is a trivial task in other programs (i.e. Nero Vision for Windows). The reason need to use DVDSP is this is the only application I have that supports multiple video angles.

  • Change text highlight colour in Spark TextInput

    Hi,
    As the title says, anyone know how to change the highlight colour in a Spark TextInput component? By the "highlight colour" I mean that if some of the text is selected this would be the background colour of the selected text.
    Thanks.

    SetStyle("focusedTextSelectionColor", ...)
    There are also unfocusedTextSelectionColor and inactiveTextSelectionColor
    styles.

  • How to set selected text color in Spark TextInput

    I'm trying to make Spark TextInputs and MXFTETextInputs look like Halo/MX TextInputs as much as possible, since I have a mix of both Spark and MX TextInputs in my application. I know I can set the
    selection background color to black using focusedTextSelectionColor. How can I set the selected text color to white so it matches the MX white-on-black look?

    This works, if you set the enabled property directly on the s:TextInput:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <s:layout>
            <s:VerticalLayout horizontalAlign="center" verticalAlign="middle" />
        </s:layout>
        <s:controlBarContent>
            <s:CheckBox id="ch" label="enabled" selected="true" />
        </s:controlBarContent>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|TextInput:disabled {
                color: red;
        </fx:Style>
        <s:Group>
            <s:TextInput id="ti" text="The quick brown fox jumps over the lazy dog" enabled="{ch.selected}" />
        </s:Group>
    </s:Application>
    It can get a bit trickier when you're setting the enabled property on a parent container, since (I believe) that the child control's enabled properties are still set to true and just the container is disabled. One possible workaround would be to bind the child TextInput control's enabled property to the container's enabled property. That way the s:TextInput should still go to it's disabled state and you can customize the disabled state's styles to have darker text, or whatever else you want.
    <s:Group id="gr" enabled="{ch.selected}">
        <s:TextInput id="ti" text="The quick brown fox jumps over the lazy dog" enabled="{gr.enabled}" />
    </s:Group>
    Peter

  • How do I get spry menu tab  highlighted when on page ???

    Hey guys I'm stuck
    I'm  trying to get  the tab in the spry menubar to be highlighted  when each relevant page  .. but something isn't right it's not working what am I missing here ???
    now when I hover the btn disappears  and when on the  page the tab isn't highlighted ? Please help ! many thanks in advance for taking the time to look
    I have placed  this code at the  bottom of   sprymenuhorizontal.css to over ride above styles !
    ul.MenuBarHorizontal a span {
        visibility: hidden; 
    ul.MenuBarHorizontal  {
        background: url(images/btn.png) no-repeat;
        height: 35px;
    ul.MenuBarHorizontal :hover, ul.MenuBarHorizontal :focus,
    ul.MenuBarHorizontal .MenuBarItemHover, ul.MenuBarHorizontal .MenuBarItemSubmenuHover, ul.MenuBarHorizontal .MenuBarSubmenuVisible {
        background: url(images/btnhover.png) no-repeat;
    ul.MenuBarHorizontal li.activeMenuItem  {
        background: url(images/btnonpage.png) no-repeat !important;
    then I put in this code  at the top of the page   to link to sprydomutils which is in my spryassest folder!
    <script src="SpryAssets/SpryDOMUtils.js"></script>
    <script>
    function InitPage(){
    Spry.$$('#MenuBar1 li').forEach(function(node){
        var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
        if(a.href == window.location){
            Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    <script src="SpryAssets/SpryDOMUtils.js"></script>
    <script>
    function InitPage(){
    Spry.$$('#MenuBar1 li').forEach(function(node){
        var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
        if(a.href == window.location){
            Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet">
    <style>
    ul.MenuBarHorizontal a span {
        visibility: hidden;  
    ul.MenuBarHorizontal  {
        background: url(images/btn.png) no-repeat;
        height: 35px;
    ul.MenuBarHorizontal :hover, ul.MenuBarHorizontal :focus,
    ul.MenuBarHorizontal .MenuBarItemHover, ul.MenuBarHorizontal .MenuBarItemSubmenuHover, ul.MenuBarHorizontal .MenuBarSubmenuVisible {
        background: url(images/btnhover.png) no-repeat;
    ul.MenuBarHorizontal li.activeMenuItem  {
        background: url(images/btnonpage.png) no-repeat !important;
    </style>

    The reason I asked if you used templates or not is that in this case we would have a centralised script to detect the active menu item.
    If you have a menu on each page (without the template) then it is easy to mark the menu item as being the current one by simply adding a class as follows
    <li class="activeMenuItem"><a href="index.php">Home</a></li>
    Now we merely add a few rules to style the active menu item as in
    .activeMenuItem a {
        background: #a59a84 url(nav_background.png) !important;
        color: #ffffff !important;
    The !important is necessary otherwise the JS will override these values.
    Add the style rules to the bottom of SpryMenuBarHorizontal.css and add the class to each relevant menu item in each document.
    Which brings me to the fact that you have used a horizontal menu bar for vertical positioning. Why? I must admit, the effect is not bad and that is more important.
    Gramps

  • Top link bar tab not highlighted when subsite beneath subsite active

    Scenario: All sites in a site collection share the same top link bar for consistent global navigation.
    Site A (top-level)
        Site A1 (2nd level)
            Site A1a (3rd level)
        Site A2 (2nd level)
        etc.
    Problem:  When site A1 is active, tab "A1" is highlighted.  When site A1a is active, no tabs are highlighted.  And the bread crumbs do not include site "A1."  So the user has no context to where they are in the site taxonomy.
    In MOSS 2007 the behavior is different.  Tab "A1" is highlighted when site A1 or any of its subsites is active.  So when site A1a is active, tab "A1" is highlighted and the user knows where they are.  This is good.
    Question: How can I make SharePoint 2010 highlight the top link bar tabs in a similar manner to MOSS 2007?

    I activated the "SharePoint Server Publishing Infrastructure" site collection feature, still it didn't work for me.
    I have Custom Top navigation bar in my project.
    Eg :   AAA   BBB   CCC   DDD
    When i am into CCC site , if i create sites under this at three levels say. : 
    CCC > CC1 > CC2 > CC3 > CC4
    The top navigation bar does not get highlighted when i am into CC4 site.
    Actuly the top naviagtion bar should look like this :
    Eg :   AAA   BBB   CCC   DDD
    But it does not get highlighted and it shows normal like this . Eg :  
    AAA   BBB   CCC   DDD
    Please suggest some solution for the same. Why Navigation does not work at this level.
    Regards ,
    Avinash

  • I have a spark textinput, this textinput is stuck and wont disappear when poping or pushing to a new view any idea ?

    i have a spark textinput, this textinput is stuck and wont disappear when popping or pushing to a new view any idea ? also sometime this textinput and when scrolling is stuck in a certain x-y position and do not move with scroll
    below is my code:
    <s:BorderContainer borderVisible="false" backgroundImage="@Embed(source='../assets/BGNotifications.jpg')" backgroundImageFillMode="scale" width="100%" height="100%">
        <s:Scroller id="homeScroller" y="0" pageScrollingEnabled="false" name="homeScroller"  height="100%" width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="on" skinClass="Skins.HMobileScrollbar" >
            <s:VGroup width="100%" horizontalAlign="center" verticalAlign="top"  gap="0">
                <s:VGroup horizontalAlign="center" paddingTop="45" paddingLeft="10" width="85%" height="100%" verticalAlign="top"  gap="0">
                    <s:TextInput id="txtUsername" width="{278 * txtRatio}" height="{40 * txtRatio}" borderVisible="false" color="#575757" focusColor="#C42828" textAlign="left" fontStyle="normal" maxChars="200" styleName="{MystyleAccordingToWidth}TextBox{resourceManager.getString('resources','ImageP ath')}" ></s:TextInput>
                </s:VGroup>
            </s:VGroup>
        </s:Scroller>
    </s:BorderContainer>

    Hi, it sounds like you are running into a known issue with a mobile app using the spark textinput (assuming its mobile as you are referring to piping and pushing views)
    The kind folks over at Flexicious have provided a solution to this problem
    http://blog.flexicious.com/post/Scrolling-Issues-With-TextInput-for-Flex-Air-Mobile-Native -StageText.aspx

  • "Search for text" Zooms when number keys pressed. Expecting it to FIND text

    For months I have been using (&relying on) the "search for text when I start typing " feature.
    I am a school teacher & this helps me to search for students & record scores in an online grading program.
    The "search for text when I start typing feature" stopped working two days ago.
    Before, whenever I typed the "Find" box immediately opened up, searched the screen,
    and highlighted whatever I had just typed. Now, when I enter a "1", "2" , "6" , "9" or "0" (zero)
    the find box does not come up- so this disrupts all the grade recording process for me.
    Instead, when I type in 6 or 9 (it zooms in the screen instead), 0 (it zooms out instead) and I cannot tell what happens
    when I type in 1 or 2 (nothing appears to happen- but no "Find" box comes up.
    Edit by a moderator to improve the title
    (As suggested by a contributor, flagging the post)
    Was
    *The Firefox "search for text when I start typing feature" has just stopped working correctly
    Now
    *"Search for text" Zooms when number keys pressed. Expecting it to FIND text
    ~J99
    I tried restarting Firefox and turning on/off the Advanced feature ( "search for text when I start typing feature")
    but it did not help. I am using a Mac. I also tried using an external keyboard/keypad but the exact same
    results occur.
    Please help!
    Thanks,
    Barry

    The keyboard shortcut for resetting the zoom level is Command+0, so seeing that kind of response implies that Firefox is misreading the state of the Command key, thinking it is stuck down. Usually tapping the key numerous times will send a signal to all programs that the key has been released (at least on Windows).
    On the other hand, in that case, Command+6 should jump to the sixth tab in the current window, it shouldn't change the zoom level. So... hmm...
    In case a component of the OS has malfunctioned, have you already tried shutting down the system completely and then starting it up again?

  • How to clear text fields when the user navigates back to the screen

    Hi,
    Does anyone have any idea on how to clear the text input fields and dropdown boxes when the user navigates back to the screen, say for e.g. create screen?
    My issue is that i have plenty of fields in the create screen within a form. Is there a way to avoid programaticaly blanking out every field and just do it at the form level using an api to reset to a state before the user entry?
    Thanks

    This code allows you to make it more generic, and you would need to tweak it if there are more than TextInput controls, but it should provide some ideas.
    As far as using states, you could use SetProperty to set the text to empty, but that might be messier.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
      <mx:Script>
        <![CDATA[
          import mx.containers.FormItem;
          import mx.controls.TextInput;
          import mx.events.IndexChangedEvent;
          import mx.core.Container;
          private function clearSreen(evt:IndexChangedEvent):void{
            var view:Container = tn.selectedChild as Container;
            for each(var child:Object in view.getChildren()){
              if(child is FormItem){
                var subchild:DisplayObject = child.getChildAt(0);
                if(subchild is TextInput){
                  TextInput(subchild).text = "";
        ]]>
      </mx:Script>
      <mx:TabNavigator id="tn" resizeToContent="true"
        change="clearSreen(event)">
        <mx:Form id="frm1" label="View Number One">
          <mx:FormItem label="First name:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="Last name:">
            <mx:TextInput/>
          </mx:FormItem>
        </mx:Form>
        <mx:Form id="frm2" label="View Number Two">
          <mx:FormItem label="Address1:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="Address2:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="City:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="State:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="Zip code:">
            <mx:TextInput/>
          </mx:FormItem>
        </mx:Form>
      </mx:TabNavigator>
    </mx:Application>
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.stardustsystems.com
    Adobe Flex Development and Support Services

  • How do I left justify the text in the tabs of a JTabbedPane.

    In 1.3.1 this used to work by supplying an HTML string with <div align="left"> but when I run with 1.4.1 this is now broken and I get center justification.
    Does anybody know a way to get the text in the tabs to be left justified.
    Thanks,
    Philip

    First, I found while using JTabbedPane that the "standard" behavior is to allow to a tab the exact space needed to display the tab text. Hence with this behavior, there is actualy no difference of "left" or "center" aligned text. So I assumed that you found a way or another to make your tabs wider than the "string width"...
    Here is a solution:
    You can override the TabbedPaneUI class and ajust the "layoutLabel()" method. Here is the code..
    //Your code using the tabbedPane
    JTabbedPane tp = new JTabbedPane();
    tp.setUI(new LeftTabbedPaneUI());
    //File containing the overrided TabbedPaneUI
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.text.View;
    class LeftTabbedPaneUI extends javax.swing.plaf.metal.MetalTabbedPaneUI {
            //I also overrided this function just to force tabs wider than
            //the displayed "String Width". I asume that you found another
            //way to do this so you can delete this function in your
            //implementation
         protected int calculateTabWidth(int tabPlacement, int tabIndex, FontMetrics metrics){
              return 150;
        protected void layoutLabel(int tabPlacement,
                                   FontMetrics metrics, int tabIndex,
                                   String title, Icon icon,
                                   Rectangle tabRect, Rectangle iconRect,
                                   Rectangle textRect, boolean isSelected ) {
            textRect.x = textRect.y = iconRect.x = iconRect.y = 0;
         View v = getTextViewForTab(tabIndex);
         if (v != null) {
             tabPane.putClientProperty("html", v);
         //This Line is added to avoid writing on tab border while aligned to left.
         //You can comment this line to test and or adjust the "5" pixel space
         Rectangle rec = new Rectangle(tabRect.x+5,tabRect.y,tabRect.width,tabRect.height);
            SwingUtilities.layoutCompoundLabel((JComponent) tabPane,
                                               metrics, title, icon,
                                               SwingUtilities.CENTER,
                                               SwingUtilities.LEFT,
                                               SwingUtilities.CENTER,
                                               SwingUtilities.TRAILING,
                                               rec,
                                               iconRect,
                                               textRect,
                                               textIconGap);
         tabPane.putClientProperty("html", null);
         int xNudge = getTabLabelShiftX(tabPlacement, tabIndex, isSelected);
         int yNudge = getTabLabelShiftY(tabPlacement, tabIndex, isSelected);
         iconRect.x += xNudge;
         iconRect.y += yNudge;
         textRect.x += xNudge;
         textRect.y += yNudge;
    }Here I overrided the "Metal" implementation of the tab but you must override the implementation of the used Look And Feel,
    ex. "com.sun.java.swing.plaf.window.WindowsTabbedPaneUI" for the windows LAF.

  • Mystery of mysteries. Can't get rid of "Glossary" text on Favorites tab.

    I consider myself relatively well-versed in chm file compiling and chm related issues, but this one has me stumped...
    System Specs;
    RH 9 now (initial English help in background below was compiled using RH 7)
    Windows 7 64-bit
    First, the background -- We use RoboHelp to compile our English CHM. We then decompile the files from the CHM and ship those off for localization. When they come back from translation, we use usually use FAR HTML to recompile the help. Sometimes we use RH (if FAR HTML is being tempermental). And in rare cases, like today, we use both. So today I was working on compiling a Traditional Chinese help we got back from translation recently. I tried using FAR HTML as usual for the initial post-translation compile. I ran into various and sundry compiler errors that made no sense whatsoever, so I decided to try compiling it in RH instead. The compilation made it through, but the Contents and Index tabs weren't displaying the proper Chinese characters. So I took this Traditional Chinese chm that was compiled by RH, decompiled it, and tinkered with .hhc and .hhk file encoding and charsets and used FAR HTML again to compile. And this time compiling worked without a hitch. We got proper characters. Yay! So far so good. Well, sort of. That's just the background.
    Now, the problem -- So now, compiling back in FAR HTML from the above decompiled RH 9 files, I'm getting a psuedo Glossary tab I don't want since in our localized versions of the help. (We simply just call an htm containing the glossary info, and tie the htm to the toolbar.) I say "pseudo" because here's what the navigation pane on the compiled help looks lilke:
    Notice that the Favorites tab is actually somehow getting named as "Glossary".  We don't want this. I want the default "Favorites" text for the tab. If I unregister the hhactivex.dll and recompile, the "Glossary" string on the tab thankfully goes away, showing just "Favorites". If I register the dll again or move the compiled help onto a system with a registered hhactivex.dll, the problem reappears all by itself when the help is launched.
    How can I get my Favorites tab back to normal? I suspect this problem is contained somewhere in the HHP file, specifically my Windows definition. But I've tried recreating the hhp, and the window definition many times, but it still appears. I even at one point tried removing the Favorites tab but then the mystery "Glossary" text moves onto infesting the Search tab.
    Here's my hhp innards if it helps:
    [OPTIONS]
    Binary TOC=No
    Binary Index=Yes
    Compiled File=pcdlrn.chm
    Contents File=pcdlrn.hhc
    Index File=pcdlrn.hhk
    Default Window=HtmlHelp
    Default Topic=intro.htm
    Default Font=,,136
    Full-text search=Yes
    Auto Index=Yes
    Language=0x404 Chinese (Traditional/Taiwan)
    Title=PC-DMIS Help
    Create CHI file=No
    Compatibility=1.1 or later
    Error log file=_errorlog.txt
    Full text search stop list file=
    Display compile progress=Yes
    Display compile notes=Yes
    [WINDOWS]
    HtmlHelp="PC-DMIS Help","pcdlrn.hhc","pcdlrn.hhk","intro.htm","intro.htm","pcdlrn_glo.htm","Glossary Button",,,0x61520,244,0x4386E,[432,113,1354,863],0xB0000,,,,,,0
    [FILES]
    Auto_Edge_Strength.htm
    ... and a bazillion other files ...
    [ALIAS]
    #include Core.ali
    [MAP]
    #include BSSCDefault.h
    [MERGE FILES]
    errorcodes.chm
    pcdbasic.chm
    pcdmiscmm.chm
    pcdmisdci.chm
    pcdmisfixturing.chm
    pcdmislaser.chm
    pcdmisnc.chm
    pcdmisportable.chm
    pcdmisregistry.chm
    pcdmistutor.chm
    pcdmisvision.chm
    Is RH somehow still doing something to it even though technically I'm not using it to compile? Is there some other setting or file somewhere that could be controlling this or is it just a compiler bug that I've never noticed?

    Thanks Cara, but I'm not sure if that's the same thing. In this problem the Favorites tab in the CHM was showing up with the word "Glossary" in it. Anyway, it's water under the bridge now for me. Things are better now that we're localizing our Engish RH project directly, instead of our old way of decompiling the English chms and sending the decompiled htms.

Maybe you are looking for