Why is the Custom button in the Marker settings dialog grayed out in CS6?

I'm wondering why it's grayed out and what its purpose is. Also, is there any way to make the Marker window display Names as well as comments? I feel like the comments field would be used for notes and comments while the name field is used to actually name the marker. It seems weird that the name field wouldn't be displayed in the Marker window and that the only way to identify which is which is by the thumbnail and comments.

https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • My wifi won't turn on at all. Even when I try switching the wifi button to on, it's just grayed out. So it's stuck on off. I need help

    My wifi won't turn on at all. Even when I try switching the wifi button to on, it's just grayed out. So it's stuck on off. I need help

    Turn your phone off and connect your cable to the computer, but not the device just yet. Start up iTunes. Now, hold down the home button on your phone and plug it in to the cable - don't let go of the button until iTunes tells you it's detected a phone in recovery mode. Now you can restore to factory settings.

  • Adding a custom button to the Builtin Button Group of an MVToolbar object.

    I suspect this is not possible, however, I would like to add a custom button to the built-in button group of an MVToolBar object. I have attempted to do this with the following code:
    // Create an array of the built-in buttons I require
    var toolArry = new Array();
    toolArry.push(MVToolBar.BUILTIN_CIRCLE);
    toolArry.push(MVToolBar.BUILTIN_RECTANGLE);
    toolArry.push(MVToolBar.BUILTIN_REDLINE);
    // Create the MVToolBar object using the array items created above
    createLocToolBar = new MVToolBar("createLocShapes",toolArry,MVToolBar.HORIZONTAL);
    // Add the Toolbar to the map view object
    mapview.addToolBar(createLocToolBar);
    // Create the required custom button
    createLineBtn = new MVToolButton("createLine",MVToolButton.TOGGLE,"/i/blue_arrow_down.gif","/i/blue_arrow_up.gif");
    // Attempt to add the custom button to the built-in toolbar
    createLocToolBar.getBuiltInButtonGroup().add(createLineBtn);
    Upon running the above script, the built-in buttons I've defined in the array are displayed as expected, but the custom button does not appear (no errors are displayed either).
    If I comment out the above line and instead include the line below, the custom button is displayed, but of course this is not part of the built-in group.
    createLocToolBar.addButton(createLineBtn);
    Any assistance greatly appreciated,
    JR

    Thanks for the reply, Michael. I understand that the Login.jsp needs to be modified and redeployed, but the question is how to create a new button with the same look and feel as the Login button. Currently we have modified the Login.jsp with a "Forgot Password" html link, but it would be prefered to create a button to match what already exists. I understand that this might be outside the scope of this forum, but I was hoping that someone that has done this (specifically the original poster if he found a solution) could share the relevent code.

  • Adding custom buttons to the Rich Text Editor in CQ

    Hi,
    I have added custom buttons to the rich text editor in order to allow our editors to add specific content, such as popovers, custom videos and other data necessary data.
    I have successfully modifed the Rich Text editor so, that it includes the custom buttons in the actions panel.
    I have also managed to make the buttons work and include the data where necessary, when user highlights the text and clicks on a certain button.
    The last bit I am struggling with, is the visual feedback we give to the users when this text has associated action with it.
    E.g. when we select this text and make it bold when we click on the word B the button B becomes highlighted in the actions panel, later when we continue typing our text and click again on "bold" the letter B becomes highlighted again.
    Is there any button related callback/method I could overwrite to add this functionality and make my button highlighted ?
    Thanks,
    Puzanovs

    After lot's of thinking found a solution....
    Essentially the first step is to extend the CQ.form.rte.plugins.Plugin in your custom button.
    Then during the UI initialisation we create our "custom"
    var pressButton = new ui.TbElement("press-button", this, true,this.getTooltip("press-button")); // Essential extend of the button
    setInterval(function() {
                     if(window.jQuery) {
                         window.jQuery(document).ready(function () {
                             window.jQuery(".x-edit-glossary-insert").css({width:45,"background-image":"none"}); // Ignore the background
                             window.jQuery(".x-edit-glossary-insert").text("Press Button"); // Set the name
                            $(document).on({
                                mouseenter: function(){
                                  window.jQuery(".x-edit-glossary-insert").html("<b>Press Button</b>"); // Set the name bold                        
                                mouseleave: function(){                       
                               window.jQuery(".x-edit-glossary-insert").html("Press Button"); // Set the name normal
                             }}, '.press-button');
                 }, 100);
    tbGenerator.addElement("press-button", plg.Plugin.SORT_LISTS, pressButton, 10); // element is inserted
    Every time the element is inserted I add the following html
    <span class="press-button">Test peter</span>
    Now, every time in the editor, the content editor mouse overs the custom button it is higlighted in the RTE))

  • When i go to buy an app on my ipod touch, i click the buy button then the install button and it just keeps repeating itself then dissappears, why is this?

    when i go to buy an app on my ipod touch, i click the buy button then the install button and it just keeps repeating itself then dissappears, why is this?     help me please, i cant download no apps.

    If  you have iOS 3.1.3 then it is an Apple problem.

  • Can i insert the custom button on JOptionPane

    sir i want to insert the custom button instead of default buttons means
    i want to insert the icon button of ok and cancel.
    plz guide me with line of codes
    thanks in advance

    plz guide me

  • In Firefox 4 the dropdown menu next to the forward button in the Navigation Toolbar that allowed the user to select another page in the history to go back to is gone. Why?

    In Firefox 3, the user could access a dropdown menu by hovering over a small black arrow next to the forward arrow in the Navigation Toolbar. This allowed the user to go to earlier pages in the browser history, rather than using the back button to go to the immediate previous page.
    After updating to Firefox 4, this menu disappeared. Was it moved? Was it removed?
    I found this feature to be very useful. Why was it changed?
    Nick

    There are two ways to get this: (1) Hold the back button until the menu appears (2) Right click the back button. See the screenshot below for reference.

  • Htp.p doesn't work from the custom button event handler ...

    Hi,
    I am trying to pop up an alert from the custom button event handler. I created a button and put the following code.
    htp.p('<script language='JavaScript1.3">
    alert ("Test Message");
    </script>;
    But alter doesn't show up after clicking the button.
    Thanks

    OK i've attached them and copy/pasted the relevent parts. The parent window is the SFLB file.
    -----------------------------------------here's the code in the parent window
    private function editServerPool():
    void
    serverPoolPUW = PopUpManager.createPopUp(
    this,popups.ServerPoolPopup,true);PopUpManager.centerPopUp(serverPoolPUW
    as IFlexDisplayObject); 
    if (newServerPool.SecondarySPAlgorithm != null){
    serverPoolPUW.enableSSCheckBox.selected =true;serverPoolPUW.DisplaySecondaryServerPool();
    serverPoolPUW.bigResize.play();// serverPoolPUW.height = 602; //yes...i know i need to move thisserverPoolPUW.switchoverPolicyCB.selectedItem = newServerPool.SwitchOverPolicy;
    serverPoolPUW.switchoverThresholdTI.text = newServerPool.SwitchOverThreshold;
    ----------------------here's the code in teh popup window (popups.ServerPoolPopup.mxml)
    <mx:Resize id = "bigResize" heightFrom="506" heightTo="602" target="{this}" /> 
    <mx:Resize id = "littleResize" heightFrom="602" heightTo="506" target="{this}"/>
     public function DisplaySecondaryServerPool():void{
    //make the screen large if the secondary server checkbox is selected; otherwise small.  
    if (enableSSCheckBox.selected){
    //display secondary server pool tab, expand the screen 
    //note that we cannot attach a data provider to the data grid until the grid creation is  
    //completed. This is done in an event handler.secondaryPanel.enabled =
    true; switchoverPolicyCB.visible =
    true;switchoverThresholdTI.visible =
    true;thresholdFI.visible =
    true;policyFI.visible =
    true;bigResize.play();
    else
     <mx:CheckBox label="Enable a Secondary Server Pool" width="264" fontWeight="bold" click="DisplaySecondaryServerPool()" id="
    enableSSCheckBox" fontSize="12" x="83" y="40"/>

  • Customized buttons in the Music App

    Good morning, all.
    I use my iPod Touch 4G mainly to listen to podcasts and audiobooks.  For previous versions of iOS I have customized the quick access buttons on the bottom of the UI.  When I updated to iOS 6, the buttons changed to Playlists, Podcasts, Genres, Albums, More.  I went to More > Edit  which brought me to the configure page and I replaced Genres with Audiobooks, then clicked Done.
    The problem occurs sometime later.  I have not successful reproduced on demand the circumstances, but after a day or two, the quick access buttons revert to the default settings.  Is there someway to make the change permanent (until I decide to change it)?
    Thanks.

    I am having the same issues though they only started recently.  I use Music to listen to podcasts and replaced the Album button with the Podcasts button.  Every so often it will go back to default, most times it seems it is after I sync my iPod with my computer to get new episodes.  I change it back every time and it stays that way for a while but then reverts back.  Not sure if it happens every time I do a sync or not, but seems to have just started this behavior in the last few weeks and again noticed it today after sync yesterday.
    Is there any other place that this could be resetting itself?  I know you can customize your home screen with iTunes, but thought the only way to change the menus in Music was within the app itself.

  • I don't see the AirPlay button on the bottom right of my iTunes (v 10.6.3) window. Does anyone know why and how I can set it up? Thanks!

    I don't see the AirPlay button on the bottom right of my iTunes (v 10.6.3) window. Does anyone know why and how I can set it up? Thanks!

    You do not have to have an Apple TV, but you should have an AirPlay capable speaker on your network.

  • I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue?

    I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue? Is there a work around? I have done this app twice and still cant get the exit to except the Cancel or Done  bar buttons

    Yes I checked it.  As far as I can see I did everything Apple said to do.  I took some screen shot so you can see how the screens are connected and what and where the code is, and what it does when I drag the cancel and done bar buttons to the exit

  • Why is there a horizontal line a quarter inch above the Home button on the iPad main screen all of a sudden?

    Why is there a horizontal line a quarter inch above the Home button on the iPad main screen all of a sudden? Does that mean the screen itself is problematic?

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help I suspect there is a hardware problem with the iPad. Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • TS3694 Why does my ipod keeps powering off, and when I turned if on, I have to press down the power button and the screen button at the same time ???

    Why does my ipod keeps powering off, when I have to turn it on ... I have to press on the power button and the screen button at the same time ??? over and over again. I just got this in December 2011 as a gift.

    I am having similar 'freezing' problems with many programs (Mail, Safari, iTunes, etc.). I have done a clean install of Lion instead of an upgrade when it came out. Perhaps something went wrong with my install? I'm thinking about wiping and reinstalling.

  • Why can't I view my bookmark folders in alphabetical order when I click on the bookmark button on the browser? Is there a way to see the folders in alphabetical order all the time?

    I click on the bookmarks button on the Firefox browser and the folders that hold the bookmarks are not in any particular order. I would like the folders to be in alphabetical order when I see them...when I click on the bookmarks button at the top of the browser. When I go to organize bookmarks I can sort them so they are in alphabetical order, but they do not show up that way when you just click on the bookmark button to get to your bookmarks. Any help would be greatly appreciated! Thank you!!

    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically

  • The HOME BUTTON in the top row of Firefox does not bring me back to Firefox Home Page. A message comes up saying that HOME BUTTON URL is not valid and cannot be processed. Why?

    Whenever I use the Firefox browser to go to another site, Ican't get back to Firefox home page by simply pressing the Home button at the top left line of the page.

    Open the page that you want as the home page in a tab and drag the tab or the favicon from the left end of the location bar on the toolbar Home button.
    *https://support.mozilla.com/kb/How+to+set+the+home+page

Maybe you are looking for