Feedback Extension Not Working

When I click on feedback button to say something about the beta version flaws or praises, the following message gets displayed instead of taking my input. Earlier it was working fine.
"""Oh! So, you want to offer us feedback on the next version of Firefox. Thank you, but you'll need to be on our latest beta.
To do that, simply go to our download page and install/update to the latest Firefox Beta!"""

Same problem as Morrile here.
Morrile posted September 16, 2010
Plez answer!
thx much

Similar Messages

  • Telephone extensions not working after Openreach u...

    My 91 year old mother's phone has not been working for three and a half weeks while lines in her neighbourhood were upgraded to support broadband.
    The good news is that an Openreach engineer has now fixed her master socket and one phone in her house is now working.
    The bad news is that the handsets on two extension sockets stopped working, when the master socket was fixed. 
    The Openreach engineer told my mother that the handsets attached to the extensions were old and should not be used and need to be replaced. That may well be true, but I brought one handset home and it works fine plugged into an extension at our own house - we use BT Infinity with one master socket (for the broadband router) and three extension sockets (with ordinary handsets)
    The two extension sockets in my mother's house seem to be dead. (If you plug a normal handset into them nothing happens). It looks to me as if it's not the equipment that is the problem, but the sockets, which, as far as I can tell, appear to have been disconnected.
    From what I can see, the telephone line comes into an (old) junction box in the house. One (new) line then goes down to the (working) master socket, and another (old) line goes directly from the junction box to the (not working) extension sockets. 
    My question is: who is responsibile for fixing this mess? I understand that the homeowner is responsible for the equipment and internal telephone wiring in their house, but I don't want to meddle with the wiring and sockets myself. Also, my mother (like many elderly people) has an emergency red button machine (supplied by the local authority) connected to the main phone in her house. Fortunately that now seems to be working, but I don't want to do anything that could affect the red button machine or stop the main phone working again. 
    We don't necessarily want to replace the system back to exactly what it was before, but my mother would like at least one extra phone in the house. The main phone is in the living room. She is hard of hearing and can't hear the phone ringing when she is in her bedroom. She doesn't like using a handsfree phone - she fiinds it much easier just to lift the handset to get dialling tone, and replace the handset when she has finished - as you could in the good old days! So an extension socket and handset in (or near) the bedroom seems to be the ideal solution, if only we could get the extension sockets working again!
    My mother does not want broadband. She just wants her ordinary landline to work and to be able to plug an extra handset into an extension socket. 
    Can anyone help please?

    Hi cwmk,
    Welcome to the community and thanks for posting!
    Sorry that your Mum's extension sockets were disconnected when the engineer fixed the master socket.  Send us over the details and we'll look into this from here.
    Click on my username and under the "about me" section you'll see the link to get in touch with us.
    Cheers
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Custom rendering extensions not working in SSRS Report Designer (rsreportdesigner.config)

    My custom rendering extension is working in Report Builder (in RSReportServer.config), but not in Report Designer (in RSReportDesigner.config):  instead of adding a "TXT" export option, it's just adding a duplicate "CSV" option.
    SUMMARY: 
    Is there a way to get these features working, with Report Designer?
    DETAILS:
    We are running SSRS (Reporting Services) under SQL Server 2008 R2.
    Here's my rendering section:
        <Render>
          <Extension Name="XML" Type="Microsoft.ReportingServices.Rendering.DataRenderer.XmlDataReport,Microsoft.ReportingServices.DataRendering" />
          <Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering" />
          <!-- TXT extension with help from:  http://social.msdn.microsoft.com/Forums/sqlserver/en-US/d79845a8-17fb-4ec6-b121-2c40cf466d73/how-do-i-add-a-pipe-delimited-option-in-ssrs-2008-report-manager?forum=sqlreportingservices -->
          <Extension Name="TXT" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
            <OverrideNames>
                <Name Language="en-US">TXT(ASCII,NoColHds)</Name>
            </OverrideNames>
            <Configuration>
                 <DeviceInfo>
                     <FileExtension>txt</FileExtension>
                    <FieldDelimiter>,</FieldDelimiter>
                    <Encoding>ASCII</Encoding>
                    <NoHeader>true</NoHeader>
                </DeviceInfo>
            </Configuration>
          </Extension>
          <Extension Name="IMAGE" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="PDF" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PDFRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="HTML4.0" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.Html40RenderingExtension,Microsoft.ReportingServices.HtmlRendering" Visible="false" />
          <Extension Name="MHTML" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.MHtmlRenderingExtension,Microsoft.ReportingServices.HtmlRendering" />
          <Extension Name="RPL" Type="Microsoft.ReportingServices.Rendering.RPLRendering.RPLRenderer,Microsoft.ReportingServices.RPLRendering" Visible="false" />
          <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering" />
          <Extension Name="WORD" Type="Microsoft.ReportingServices.Rendering.WordRenderer.WordDocumentRenderer,Microsoft.ReportingServices.WordRendering" />
        </Render>
    When I add the above "TXT" section to RSReportServer.config, then Report Builder (and production) both show an export option "TXT(ASCII,NoColHds)". 
    But when I add this "TXT" section to RSReportDesigner.config, and then (in Report Designer / BIDS) attempt to export from a "Preview" of the report, the export drop-down does not show a "CSV" option followed by a "TXT"
    option, but instead shows the "CSV" option twice.
    This simply limits testing of the export option, to Report Builder... or requires any reports be published from Report Designer before they can be tested with
    this export option.
    (FYI, why this export option:  compliance in our industry requires sending data to government agencies, in text files, with fixed-length columns, and ASCII encoding.  Also, we're attempting to give the production of these files to the *users* managing
    communication with those agencies... so we're putting them into SSRS.
    I worked around the fixed length columns (and no delimiters -- no commas), by writing a version of the report where all string columns are padded, and all columns are concatenated, to form ONE LONG COLUMN... but Reporting Services' CSV export format produces
    a Unicode file (UTF-8, which the agency rejected, because it had a leading "", or "EF BB BF" in hex), whereas the agency requires an ASCII file.)

    Hi Doug_atMidway,
    According to your description, you want to enable your custom render extension. Right?
    In Reporting Services, if you want to deploy the custom extension, you just need to add the extension into rsreportserver.config file.  The
    RSReportDesigner.config file stores settings about the rendering extensions available to Report Designer. Since you still use the csv rendering extension in your assembly, we don't need to do any modification in rsreportdesigner.config file. Pleaes
    refer to the links below:
    Thanks for attempting to help, Simon.  
    As my question states, I've *already done* both the above:  changed (1) rsreportserver.config and (2) rsreportdesigner.config.  I added the same code, shown above, to both files.  I did that so I could see the new "txt" extension
    both (1) when exporting in production and Report Builder, and (2) when exporting in Report Designer's "preview".  
    The change in (2) is not working:  I do not see the "TXT" extension in Report Designer, when I try to export from a preview.  Instead, Report Designer shows the CSV extension repeated.
    Thanks for the docs.  I consulted them (well, I consulted the EQUIVALENT pages, for SQL Server 2008 R2), when creating my block of code above.
    Do you see anything to correct, in my code?
    Are the features I'm using actually working, with rsreportdesigner.config?
    Thanks again, 
    -- Doug

  • 3rd party extensions not working in 2014.1 -seeming disaster!

    When I updated to 2014.1 my 3rd party extensions will not activate in Live view. Yes I am using fluid grid layouts. Does anyone know a quick work around? I could not have imagined this happening!!

    Hi Ben, I am using project seven ....
    Image Gallery Magic 2
    Accordion Panel Magic 3
    Horizontal Mega Menu Magic
    Previously I was able to create a template with a fluid grid layout, use the extensions to create a menu, etc. and then click on the extension item (in the menu pull down) and make updates from the third party screen. Not having design view, I cannot access the extensions in live view. Regrettably, I have built many sites using these extensions and now it is very cumbersome to edit and create new menu items. The extensions do work fine in sites that are not fluid grid layout, but most of the sites I have created are FGL.

  • JDeveloper and Team System Extension not working

    I am using JDeveloper 11g (11.1.1.1) and latest VSTS extension. The Team System extension does not work.
    Here are what I have done:
    1) Install JDev, JDev team system extension, TFS team explorer.
    2) Workspace created in Team Explorer.
    3) JDev Versioning control set for Team system. Select workspace, refresh it.
    4) Create a new application/project under team explorer workspace. In Application explorer, The application and project showed up with a "X" mark - not in source control.
    5) Add the application/project into source control. Succeeded.
    6) But - the application and project still show up with "X" mark. Trying to add again, JDev pop up error message: "file already exists in source control". Files still show up in pending changes window.
    I am using windows XP SP2 for development.
    Any ideas? Please, this is urgent.
    Edited by: user8658859 on 2009/9/24 上午 2:55

    I am betting you are running 4.3?  I just upgraded my GS3 to 4.3 and now I can't get the GMail smart extension to work.  Previously, I was able to on the same phone (but running 4.1.2) but couldn't use WatchIt.  Now I can use WatchIt, but can't use Gmail.  How frustrating!!

  • [SOLVED] Cinnamon 2.2.8: Extensions not working

    1. -- Configuring Cinnamon extensions
    NOTE! This problem has been solved. See message #13 for details.
    The first problem I have is that I'm not able to configure any extensions in the recent Cinnamon 2.2.8 in Arch Linux.
    http://s29.postimg.org/v2ierpco7/cinnam … onsbug.png
    When clicking Configure button (either one showed in the picture above or the other on bottom of the main window), I get the following terminal output. On this example, I clicked the button twice:
    Loading Extensions module
    Could not find any instance settings data for this extension - are you sure it is loaded, and supports settings?
    Traceback (most recent call last):
    File "/usr/lib/cinnamon-settings/bin/ExtensionCore.py", line 475, in <lambda>
    item.connect('activate', lambda x: self._configure_extension())
    File "/usr/lib/cinnamon-settings/bin/ExtensionCore.py", line 1009, in _configure_extension
    settingContainer = XletSettings.XletSetting(uuid, self, self.collection_type)
    File "/usr/lib/cinnamon-settings/bin/XletSettings.py", line 53, in __init__
    self.build_single()
    File "/usr/lib/cinnamon-settings/bin/XletSettings.py", line 145, in build_single
    self.current_id = instance_key
    UnboundLocalError: local variable 'instance_key' referenced before assignment
    Could not find any instance settings data for this extension - are you sure it is loaded, and supports settings?
    Traceback (most recent call last):
    File "/usr/lib/cinnamon-settings/bin/ExtensionCore.py", line 475, in <lambda>
    item.connect('activate', lambda x: self._configure_extension())
    File "/usr/lib/cinnamon-settings/bin/ExtensionCore.py", line 1009, in _configure_extension
    settingContainer = XletSettings.XletSetting(uuid, self, self.collection_type)
    File "/usr/lib/cinnamon-settings/bin/XletSettings.py", line 53, in __init__
    self.build_single()
    File "/usr/lib/cinnamon-settings/bin/XletSettings.py", line 145, in build_single
    self.current_id = instance_key
    UnboundLocalError: local variable 'instance_key' referenced before assignment
    Traceback (most recent call last):
    File "/usr/lib/cinnamon-settings/bin/XletSettings.py", line 71, in on_hide
    self.content.hide()
    AttributeError: XletSetting instance has no attribute 'content'
    My gcc version is:
    gcc (GCC) 4.9.0 20140507 (prerelease)
    and python version:
    Python 3.4.0
    I installed a fresh Arch Linux two days ago so there should not be old configurations etc. in the system.
    2. -- Missing several Cinnamon modules
    NOTE! This problem has been fixed by loqs & clfarron4. It was caused by a missing mintlocale package. Thank you for your attention!
    The second problem I have is lack of the following Cinnamon settings in GUI (cinnamon-settings):
    - region (Regional Settings)
    - Languages
    Output when trying to load, for example, region module:
    [fincer@fincer-laptop ~]$ cinnamon-settings region
    Unknown module region, using cinnamon-control-center
    I already checked folders
    /usr/lib/cinnamon-settings/modules/
    /usr/lib64/cinnamon-settings/modules/
    /usr/lib/cinnamon-control-center-1/panels/
    /usr/lib64/cinnamon-control-center-1/panels/
    I have libregion.so in panels folder but I couldn't find more relevant information related to the problem.
    Any help is appreciated. Thank you!
    Last edited by Fincer (2014-05-22 20:54:24)

    Thanks clfarron4. I voted for the package.
    I needed to re-open this topic since it seems that issue number 1 is still alive.
    To be more detailed, I can currently access extension configurations via configure button in cinnamon-settings. However, I noticed that I'm not able to actually change any extension settings and thus, these extensions are not working. In my Linux Mint installation (Cinnamon 2.0.6), they are working perfectly fine.
    So, I still have GUI access to extension configurations but the settings affect nothing, no matter of my customizations. They simply do not run.
    I get this terminal output while running cinnamon-settings and entering to configuration tab:
    Opacify plugin:
    __init__ took 236.561 ms
    Loading Extensions module
    Could not find tooltip for key 'opacity' in xlet '[email protected]'
    Could not find tooltip for key 'beginTime' in xlet '[email protected]'
    Could not find tooltip for key 'beginEffect' in xlet '[email protected]'
    Could not find tooltip for key 'endTime' in xlet '[email protected]'
    Could not find tooltip for key 'endEffect' in xlet '[email protected]'
    Backgrounds plugin:
    __init__ took 309.628 ms
    Loading Extensions module
    Could not find tooltip for key 'path' in xlet 'backgrounds@mohammad-sn'
    Could not find tooltip for key 'time' in xlet 'backgrounds@mohammad-sn'
    My basic question is: what in Earth could I miss here? I have correct extension files & subfolders in both ./.local/share/cinnamon/extensions and ./.cinnamon/configs/.
    Last edited by Fincer (2014-05-22 07:56:53)

  • Feedback App Not Working and Some Bug Reports

    Tecnical Preview Build 9840 =Upgrade to==>9860==>9879
    >Hi. when i try to open this app, its opening black and then freeze. I was going to report a bug with this app but its not working. So i ill use here. Here visual bug :

    Thank you very much for the quick reply. It is indeed working again (although I still never see any feedback from other users that I could upvote)

  • Business Catalyst extension not working since upgrade

    I have installed the CC 2014.1 upgrade and now can't get my BC extension too work.
    I click on Site->Manage Sites->Import Business Catalyst Site to add a BC site to DW and a dialog comes up saying BC is available as an add-on.
    That then takes me to the Adobe Add-ons page which says it is already installed. If I go to Windows->Extensions it says there are no extensions available.
    If I go to the Business Catalyst window in DW it shows a video link and a button that says 'Get Started' which does nothing.
    What has happened?

    I've installed the Business Catalyst add-on for Dreamweaver CC and I'm having a similar issue to the initial post above but I'm also receiving the error showing in the first (Dreamweaver) screen grab below. When I view applications through CC App, it shows that the Business Catalyst add-on is installed. Likewise, when I use the Adobe Extension Manager, it also shows the Business Catalyst add-on is installed. I've followed your instructions for cleaning up the Preferences. I've also tried uninstalling and re-installing the Business Catalyst add-on several times. I noticed one of the troubleshooting steps for Business Catalyst add-on states:
    a. Check the version of Adobe Extension Manager CC installed on your machine.
    b. If the version is not 7.3.3.39 or later, update your Adobe Extension Manager CC using the Creative Cloud app.
    I checked my version of Extension Manager and it's only at ver. 7.3.2.39 even though I followed the update procedure through the Creative Cloud app. I've closed all apps and re-started my computer. I've followed all the troubleshooting procedures I can find on the Add-ons website and the forums and I'm stuck.
    Dreamweaver screen grab:
    Extension Manager screen grab:
    My versions:
    Dreamweaver CC 2014.1
    Extension Manager CC ver. 7.3.2.39
    Business Catalyst ver. 1.0.0
    Creative Cloud Desktop Manager ver. 1.9.0.465
    64 bit Mac OS X (10.10.2)
    I appreciate any assistance.

  • Why is the extension not working?

    My extension isnt working for Photoshop CC2014

    Hello martycash,
    I'm a little unsure of what you are trying to add and the error message that you are getting. I assume that you are talking about a .class file or jar file when you say package and the error message that you get says that something is not found.
    lib\ext is a good place to put such files but it is not the only place to put them. You may put them almost anywhere. In the lib folder for instance, or outside of the jdk folder if you like. What you need to do is to set your CLASSPATH to point to the folder where you put them. By putting them in the lib folder, you avoid having to modify your CLASSPATH.
    -Merwyn,
    Developer Technical Support,
    http://www.sun.com/developers/support.

  • Manual update for plug ins and extensions not working

    I've just noticed that when I attempt to manually check for updates either in plug ins and/or extensions from the gear symbol drop down screen that I get the drop down screen, but, the check for updates function does not work. It just sits there with nothing happening. I have to close the screen to get out of that function. Anybody know anything about this?

    Thanks you for your comments. I would mention that this problem just started with the update to FF 37.0.4 I tried restarting FF in safe mode with no effect on the above mentioned problem. Any other thoughts?

  • Lenovo Security Solution FP 5.9.2.5697 and firefox 3.6 + password bank extension not working ?

    Hi,
    I have a thinkpad T61 with WXP SP3 and I have recently upgraded the finger print software from the UPEK site after selecting the lenovo laptop and it took me to the lenovo support site where I have downloaded the latest finger print sofware protector suite ql and it was working fine recently Until i have upgraded my firefox 3.5 to ff 3.6 to the latest version. I have recently seen my lenovo software not working on the latest firefox 3.6 extension. I have contacted the UPEK guys and they said to contact the lenovo support since I have the customized version of their software which is true. I have tried to install the http://www.upek.com/support/customersupport/techsupport/Topic.asp?ID_Topic=76
    and its not working, i get a message that the passwork bank extension do not work with my latest ff 3.6. So please provide me the customized version of the latest password bank FP 5.9.2.5697 extension to use my t61 with the firefox 3.6. Please provide me the update asap after contacting the upek software. Please let me know if you need any details, I hope there are a lot of other customers as well who are facing the same problem as mine, since I have seen many blogs with the same question. So lenovo please help all the customers.

    I have exactly installed the extension rite on the releaes day....the one which u have sent but its not working on my system, I have wxp professional edition sp3 + firefox 3.6 + Lenovo security solution FP 5.9.2.5697 downloaded from the lenovo support site. I had it working until I had my firefox upgrade from 3.5.7 to 3.6 recently a week ago. I have upgraded the password bank from the upek site ( the link which u have sent) rite on the release day of the extension which is on the 28th Jan 2010 at around 1:00 PM since I was checking their update site very frequently and I was so happy that they have released the extension for ff 3.6 ..but after installing it dint work, I have to use IE8 which i do not like at all, but I had no choice since my ff 3.6 is not working at all with the upek ff 3.6 extension. When ever I open the ff 3.6 for the first time it says my installed upek extension do not work since its not supported. I am currently checking the lenovo forum and chekcing upek update link ...may be if some one will provide solution to this problem. I am in touch with UPEK tech support guys as well, they said to wait for some more days untill they release the customized extension version for the latest ps ql 5.9.2.5697 version and also doing the lenovo system update regularly twice to see ....if lenovo had released any customized version of the extension for the LSS FP 5.9.2.5697 users. I hope I had given u all the needed information, let me tell u my password bank is 100% legal and from the lenovo site and its absolutely working fine with my ie8 browswer. Let me know if u need any more information. I hope I am clear with my description.

  • Speech feedback does not work

    Have tried using Speech Feedback. Initially, I set it up, used a few commands, and calibrated. Then, after opening Safari, it stopped working. I restarted the computer, and the feedback icon comes at the bottom of my desktop, and after using the first command 'Open Safari' or 'What time is it?' it would refuse to work anymore. Even calibrating again, or enabling/disabling it, or deleting the feedback preference file did not work. Now, I can only use it once only, and then it stops. Any ideas?

    Hi Sue,
    Have you installed any screen reader? Such as JAWS (http://www.freedomscientific.com/jaws) or NVDA (http://www.nvda-project.org, which is open source software) on Windows, or enabling the Voice Over (Instructions here: http://www.apple.com/accessibility/voiceover) on Mac OS.
    To enable Adobe Digital Editions (ADE) for use with screen readers, you need the JAWS or NVDA reader on Windows or VoiceOver reader on the Macintosh.
    Good luck!
    Derek

  • Google Chrome GPO extensions not working in Central Store.

    Hi, I'm trying to get the Google Chrome GPO extensions to work in central store, I've copied the adml file to
    \\dc01\SYSVOL\*domain name*\PolicyDefinitions\en-us and the admx file to
    \\dc01\SYSVOL\*domain name*\PolicyDefinitions\ , like I've done with many other GPO extensions but when I create a new policy and open administrative templates the Chrome extensions aren't
    there.
    Any ideas what my problem might be? I'm running a 2012R2 domain.
    Regards,
    Freyr

    It's working fine for me.
    I just tried it on Win8.1u1 (local policydefinitions and GPedit), and on my virtual WS2012R2 DC (again using local policy definitions and GPMC) and again I created a CS on this virtual DC, copied the entire local policydefinitions folder content/structure
    into SYSVOL to create a CS and every time the Google admin templates showed up just fine...
    You are using the admx/adml files from here?
    https://support.google.com/chrome/a/answer/187202?rd=1
    Edit:... wait... your CS path seems to be missing \policies\ ?
    e.g.: \\fqdn\sysvol\fqdn\policies\policydefinitions\
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Extensions not working in CC 2014

    I have just installed DW CC 2014 which is so far a disaster. I opened a site in the old CC version created and saved a page and then attempted to insert a P7 photo gallery. The P7 extensions are showing up in the old DW CC menu, but will not insert with a click like they normally do.
    Then I open the file in the new CC2014 and no extensions show up. So I go to the extension manager and see that all of my extensions are installed in the old version and one (not the one I need). So I attempt to install the extension I need and get the following error message: "The extension your are about to install conflicts with the following extensions. Do you want to remove the follwoing extensions and continue installation: The extension 'PVII Image Gallery Magic 2I installed in the product Dreamweaver CC, Dreamweaver CC 2014
    I click yes and you guessed it, here comes he next error message: Failed to parse XML file: 'C\Users\Joe Dempsey\AppData\Roaming\Adobe\DreamweaverCC\en_US\Configuration\objects\insertbar.xml. The extension will not be installed.
    If I attempt to remove the extension from old CC I get approximately the same messaage but it tells me it cannot remove it.
    I'm not certain what I am missing here, but I have a client who expects his photo gallery in the morning and I am at this point: I cannot use the old program to insert the gallery. I cannot use the new program to insert the gallery. Everything worked fine before the installation.
    Does anyone have any ideas on what to do / or alternatively, the DWCC 2014 product manager's personal cell number?
    Thanks,
    Joe

    I also had problems with my extensions.
    I followed the following steps.
    1. Closed Dreamweaver
    2. Updated Extension Manager CC using the Creative Cloud desktop app.
    3. Renamed C\Users\Joe Dempsey\AppData\Roaming\Adobe\DreamweaverCC\en_US\Configuration to C\Users\Joe Dempsey\AppData\Roaming\Adobe\DreamweaverCC\en_US\Configuration-backup
    4.Deleted and re-installed the extensions using the Extension Manager.
    5. Started Dreamweaver.
    There may be a more efficient method; the above worked for me.

  • Breadcrumb navigation in console extension not working

    Hi everyone,
    I'm trying to get the breadcrumb navigation working in my console-extension for wls 9.2.
    Currently it is displayed like this:
    Home >  com.bea.console.handles.JMXHandle%28%22No+context+provided+for+Loggers%22%29 ("Loggers" is the definitonLabel of my netuix:page element).
    As described on [url http://e-docs.bea.com/wls/docs92/console_ext/addcontrols.html#wp1078025]page 6-15 of the "Extending the Admin Console" guide I added the <netuix:meta name="breadcrumb-context" content="handle" /> element exactly as in [url http://e-docs.bea.com/wls/docs92/console_ext/addcontrols.html#wp1078078]listing 6-7.
    Do you have any idea what goes wrong here or any pointers what I might be missing?
    Any help is greatly appreciated.
    Btw. Is there a more appropriate place to post this question?

    Chariot, unless someone decompiles that swf we cannot see
    your code or how you constructed it. I did do that and took a look
    but not everyone can do that. In the future, you can either post
    the FLA or use the "Attach Code" button to show what you've done.
    1.) first thing I noticed was that your HIT area on your
    buttons is the text itself. If you make a rectangle on the HIT
    frame only that is slightly larger than your text, you won't have
    such jumpy behavior when mousing over or trying to find the "sweet
    spot" that will actually click. You've made invisible buttons, I
    see. It's the same concept. That way, you can get rid of the
    invisible buttons altogether.
    2.) Not sure why you have several layers on your buttons.
    Looks like you have a layer per letter. They can all be on the same
    layer. :)
    3.) Try to put your button code on the main timeline instead
    of on the buttons themselves. If you're curious why, read
    this
    article.
    4.) You only need one arrow button... not a different one for
    each section. Again, place the code on the main timeline and
    specify at each keyframe what you want "leftArrow_btn" or
    "rightArrow_btn" to do. I just made up those instance names but
    they'll do whatever you tell them to do even if it's different than
    what you told them to do before.
    Other than that, I don't see what you are referring to.
    There's a lot of cleaning up to be done. That will probably fix
    some errors. I've posted an example of how it might work for you
    here.

Maybe you are looking for