Linking accordian menu

I want to lik the images and swf to local files but I'm not able to do so. Could you please tell me how?
I took the code from an accordian menu tutorial
This is the xml code
<?xml version="1.0" encoding="utf-8"?>
  <menu menuOpen="1" moveOnMouseOver="false">
             <item Ititle="home" IcontentType="image/swf" IcontentData="image2.jpg"/>
           <item Ititle="about" IcontentType="text" IcontentData="Our company is based on UK! Know how we have born!; Click here"/>
             <item Ititle="Products" IcontentType="image/swf" IcontentData="image5.jpg"/>
           <item Ititle="Services" IcontentType="image/swf" IcontentData="item2.swf"/>
           <item Ititle="Contact" IcontentType="image/swf" IcontentData="image1.jpg"/>
  </menu>
This is the AS code
//import tweenlite classes
  import gs.TweenLite;
  import gs.easing.*;
  var MENU_ARRAY:Array; //used to save the items data
  var OPENED_MENU:int; //to inform the menu that should be open at startup
  var MOVE_ON_MOUSE_OVER:Boolean=false; //tha name says everything
  var xmlLoader:URLLoader; //the xml loader
loadXML("menu.xml"); //load the xml
function loadXML(Uri:String):void {
  xmlLoader = new URLLoader();
  xmlLoader.addEventListener(Event.COMPLETE, onComplete);
  xmlLoader.addEventListener(IOErrorEvent.IO_ERROR, onError);
  xmlLoader.load(new URLRequest(Uri));
function onError(evt:ErrorEvent):void {
  trace("cannot load xml file");
function onComplete(evt:Event):void {
  //read and load xml into array, by parsing it using prepareMenu
  MENU_ARRAY=prepareMenu(xmlLoader.data.toString());
  placeItemsOnStage(); //place all required items on stage.
function placeItemsOnStage():void {
     var pos:Number=0;
  //define the container properties
  menuContainer.x=0;
  menuContainer.y=0;
     for(var c:int=0; c<MENU_ARRAY.length; c++) {
       var it:menuItem = new menuItem; //load out menuItem, because its exported to AS, we can use it here
            it.x=c*27; //its the gray border width
            it.y=0; //place on top
            it.id="Item-"+c; //id the menuItem
            it.name="Item-"+c; //name de menuItem
            it.posX=pos; //actual pos, useful to open and know is position
            it.itemLabel.text=String(MENU_ARRAY[c].Ititle).toUpperCase(); //load the label in uppercase
            it.addEventListener(MouseEvent.CLICK, onMouseClick); //add mouse click listener
            if(MOVE_ON_MOUSE_OVER==true) it.addEventListener(MouseEvent.MOUSE_OVER, onMouseOver); //if configured, load the mouse over event
            it.useHandCursor=true;  //use hand cursor
            it.buttonMode=true; //buttonMode
            it.itemText.visible=false; //hide the textField
            menuContainer.addChild(it); //add the menu item as child
           if(String(MENU_ARRAY[c].IcontentType)=="image/swf")     { //check the content and load things accordint to it
                 var ldr:Loader = new Loader();
                 ldr.x=27;
               ldr.y=0;
                 it.addChild(ldr);
                 ldr.load(new URLRequest(MENU_ARRAY[c].IcontentData.toString()));
          else if(String(MENU_ARRAY[c].IcontentType)=="text") {
                 it.itemText.visible=true;
                 it.itemText.text=MENU_ARRAY[c].IcontentData.toString();
     pos+=27; //the next menuItem x position
//put mask in place
  masker.width=(MENU_ARRAY.length*27+325)
  masker.height=menuContainer.height;
  masker.x=0;
  masker.y=0;
moveItem(OPENED_MENU-1); //open menu confirured in XML
  function onMouseOver(evt:MouseEvent):void {
       if(evt.target.name.toString()=="buttonBack") prepareMove(evt)
function prepareMove(evt:MouseEvent):void {
  var targetName:String = evt.currentTarget.name.toString(); //get the menuItem
  var temp:Array = targetName.split("-"); //split his name: Item-x
  var itemNumber:int=(temp[1]); //got item number
  moveItem(itemNumber); //move it
function onMouseClick(evt:MouseEvent):void {
  if(evt.target.name.toString()=="buttonBack")  prepareMove(evt); //mouse action was done in buttonBack
  else trace("Item "+evt.currentTarget.name+" clicked!"); //mouse action was made on accordion area
function moveItem(num:int):void {
  var itemToMove:menuItem=menuContainer.getChildByName("Item-"+String(num)) as menuItem;
  //get the menuItem child
  for(var m=0;m<MENU_ARRAY.length;m++) //move one-by-one to the new position
  var tempMc = menuContainer.getChildByName("Item-"+m);
  if(tempMc.x > itemToMove.x) TweenLite.to(tempMc, 1, {x:((tempMc.posX) + itemToMove.width-27), ease:Quart.easeOut}); //see tweenLite for info about this.
  else if(tempMc.x <= itemToMove.x) TweenLite.to(tempMc, 1, {x:(tempMc.posX), ease:Quart.easeOut});
function prepareMenu (XMLData:String):Array
  //make sure it cames in XML
  var menuXML:XML = new XML(XMLData);
  //just in case
  menuXML.ignoreWhitespace = true;
  //get XML item's entrys
  var XMLItems = menuXML.descendants("item");
//load all items into an array
  var itemsArray:Array = new Array();
  var itemObj:Object;
  for(var i in XMLItems)
  itemObj=new Object();
  itemObj.Ititle=XMLItems[i].@Ititle;
  itemObj.IcontentType=XMLItems[i].@IcontentType;
  itemObj.IcontentData=XMLItems[i].@IcontentData;
  itemObj.itemID="menu"+i;
  itemsArray.push(itemObj);
  OPENED_MENU=menuXML.@menuOpen; //get menu for open.
  MOVE_ON_MOUSE_OVER=([email protected]()=="true" ? true : false); //get the option for load or not mouseOver open
  return itemsArray;
//finish.
stop();

Bring up this post! I am also inquiring something similiar in another thread http://forums.adobe.com/message/3855478#3855478
Thanks peeps!

Similar Messages

  • Links not working in Spry Accordian Menu

    When clicked the links in the left side accordian menu do not work. However, the child-links work great. Example: http://www.richartbuilders.com/remodel.php
    HEAD TAGS:
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal2.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <link href="content.css" rel="stylesheet" type="text/css" />
    HTML:
    <div id="navSide">
        <div id="sideWrapper">
          <div id="Accordion1" class="Accordion" tabindex="0">
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../remodel.php">Remodel</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../windowsdoors.php">Windows &amp; Doors</a></div>
              <div class="AccordionPanelContent"></div>
              </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../weatherization.php">Weatherization</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="#">Electrical...</a></div>
              <div class="AccordionPanelContent">
                <ul>
                  <li><a href="residential.php">Residential</a></li>
                  <li><a href="commercial.php">Commercial</a></li>
                </ul>
              </div>
            </div>
          </div>
        </div>
    </div>
    <script type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1" ,{ useFixedPanelHeights:false, defaultPanel:0});
    </script>
    external CSS:
    @charset "UTF-8";
    /* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    .Accordion {
        overflow: hidden;
        border: 1px solid #CCC;
        width: 145px;
    /* This is the selector for the AccordionPanel container which houses the
    * panel tab and a panel content area. It doesn't render visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel container.
    .AccordionPanel {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the AccordionPanelTab. This container houses
    * the title for the panel. This is also the container that the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel tab container.
    * NOTE:
    * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
    * user from selecting the text in the AccordionPanelTab. These are proprietary browser
    * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
    * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
    * validate, and don't care if the user can select the text within an AccordionPanelTab,
    * you can safely remove those properties without affecting the functionality of the widget.
    .AccordionPanelTab {
        background-color: #F2F2F2;
        margin: 0px;
        padding: 12px;
        cursor: pointer;
        font-family: "Myriad Pro", Verdana, Geneva, sans-serif;
        font-size: 14px;
        color: #0071BC;
        border-bottom: 1px solid #CCC;
        /* [disabled]text-transform: uppercase; */
    .AccordionPanelTab a {
        text-decoration:none;
        color: #0071BC;
    /* This is the selector for a Panel's Content area. It's important to note that
    * you should never put any padding on the panel's content area if you plan to
    * use the Accordions panel animations. Placing a non-zero padding on the content
    * area can cause the accordion to abruptly grow in height while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
        overflow: auto;
        margin: 0px;
        padding: 0px;
    .AccordionPanelContent ul {
        list-style-type:none;
        margin:0;
        line-height: 22px;
        font-family:"Myriad Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size:14px;
    .AccordionPanelContent ul li {
        color:#666;
    .AccordionPanelContent ul li a {
        display:block;
        padding-top: 5px;
        padding-right: 0px;
        padding-bottom: 5px;
        padding-left: 0px;
    .AccordionPanelContent ul li a:link, .AccordionPanelContent ul li a:visited {
        text-decoration:none;
        color:#0071BC;
    .AccordionPanelContent ul li a:hover, .AccordionPanelContent ul li a:active {
        color:#FF9900;
    .AccordionPanelTab a:link, .AccordionPanelTab a:visited {
        color:#0071BC;
    .AccordionPanelTabHover a:hover, .AccordionPanelTabHover a:active {
        color:#FF9900;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open. The class "AccordionPanelOpen" is programatically added and removed
    * from panels as the user clicks on the tabs within the Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
        background-color: #FFFFFF;
    /* This is an example of how to change the appearance of the panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
    * and removed from panel tab containers as the mouse enters and exits the tab container.
    .AccordionPanelTabHover {
    .AccordionPanelOpen .AccordionPanelTabHover {
        color: #555555;
    /* This is an example of how to change the appearance of all the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
        /* [disabled]background-color: #3399FF; */
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
        /* [disabled]background-color: #33CCFF; */
    /* Rules for Printing */
    @media print {
      .Accordion {
      overflow: visible !important;
      .AccordionPanelContent {
      display: block !important;
      overflow: visible !important;
      height: auto !important;

    When clicked the links in the left side accordian menu do not work. However, the child-links work great. Example: http://www.richartbuilders.com/remodel.php
    HEAD TAGS:
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal2.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <link href="content.css" rel="stylesheet" type="text/css" />
    HTML:
    <div id="navSide">
        <div id="sideWrapper">
          <div id="Accordion1" class="Accordion" tabindex="0">
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../remodel.php">Remodel</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../windowsdoors.php">Windows &amp; Doors</a></div>
              <div class="AccordionPanelContent"></div>
              </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../weatherization.php">Weatherization</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="#">Electrical...</a></div>
              <div class="AccordionPanelContent">
                <ul>
                  <li><a href="residential.php">Residential</a></li>
                  <li><a href="commercial.php">Commercial</a></li>
                </ul>
              </div>
            </div>
          </div>
        </div>
    </div>
    <script type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1" ,{ useFixedPanelHeights:false, defaultPanel:0});
    </script>
    external CSS:
    @charset "UTF-8";
    /* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    .Accordion {
        overflow: hidden;
        border: 1px solid #CCC;
        width: 145px;
    /* This is the selector for the AccordionPanel container which houses the
    * panel tab and a panel content area. It doesn't render visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel container.
    .AccordionPanel {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the AccordionPanelTab. This container houses
    * the title for the panel. This is also the container that the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel tab container.
    * NOTE:
    * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
    * user from selecting the text in the AccordionPanelTab. These are proprietary browser
    * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
    * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
    * validate, and don't care if the user can select the text within an AccordionPanelTab,
    * you can safely remove those properties without affecting the functionality of the widget.
    .AccordionPanelTab {
        background-color: #F2F2F2;
        margin: 0px;
        padding: 12px;
        cursor: pointer;
        font-family: "Myriad Pro", Verdana, Geneva, sans-serif;
        font-size: 14px;
        color: #0071BC;
        border-bottom: 1px solid #CCC;
        /* [disabled]text-transform: uppercase; */
    .AccordionPanelTab a {
        text-decoration:none;
        color: #0071BC;
    /* This is the selector for a Panel's Content area. It's important to note that
    * you should never put any padding on the panel's content area if you plan to
    * use the Accordions panel animations. Placing a non-zero padding on the content
    * area can cause the accordion to abruptly grow in height while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
        overflow: auto;
        margin: 0px;
        padding: 0px;
    .AccordionPanelContent ul {
        list-style-type:none;
        margin:0;
        line-height: 22px;
        font-family:"Myriad Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size:14px;
    .AccordionPanelContent ul li {
        color:#666;
    .AccordionPanelContent ul li a {
        display:block;
        padding-top: 5px;
        padding-right: 0px;
        padding-bottom: 5px;
        padding-left: 0px;
    .AccordionPanelContent ul li a:link, .AccordionPanelContent ul li a:visited {
        text-decoration:none;
        color:#0071BC;
    .AccordionPanelContent ul li a:hover, .AccordionPanelContent ul li a:active {
        color:#FF9900;
    .AccordionPanelTab a:link, .AccordionPanelTab a:visited {
        color:#0071BC;
    .AccordionPanelTabHover a:hover, .AccordionPanelTabHover a:active {
        color:#FF9900;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open. The class "AccordionPanelOpen" is programatically added and removed
    * from panels as the user clicks on the tabs within the Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
        background-color: #FFFFFF;
    /* This is an example of how to change the appearance of the panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
    * and removed from panel tab containers as the mouse enters and exits the tab container.
    .AccordionPanelTabHover {
    .AccordionPanelOpen .AccordionPanelTabHover {
        color: #555555;
    /* This is an example of how to change the appearance of all the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
        /* [disabled]background-color: #3399FF; */
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
        /* [disabled]background-color: #33CCFF; */
    /* Rules for Printing */
    @media print {
      .Accordion {
      overflow: visible !important;
      .AccordionPanelContent {
      display: block !important;
      overflow: visible !important;
      height: auto !important;

  • Dynamic Accordian Menu - Stay Open?

    Hi,
    I've developed an accordian menu seen on left hand side here:
    http://quarsh.worldsecuresystems.com/
    Managed to get it all working so that when the top item is clicked it opens the submenus and other items without submenus remain as standard links.
    I would now like to be able to force the submenu items to stay open if possible. It's acceptable to have to put some special code in relative areas in the dynamic menu editor or in templates.
    Anyone got any pointers?
    Many thanks,
    Tom

    Hello Tom,
    If you want to keep the submenu open when you are on those pages you should just need some css.
    For the hidden ul, when we are within the "What We Do" section would just be:
    #nav ul li.selected ul{
         display: block;
    You will still be able to click the "what we do" link to make the ul hide, but it will show on page load.
    Hope this helps,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • How to open reports in same portlet when clicked on item report links in menu portlet

    Hi,
    I am not sure what forum I should ask this question. Anyway, I am trying in the content areas forum.
    Let me explain what I trying to do.
    I have reports links as menu item links in a menu. I have published this menu to portal and added it to a page. I can now see the report links. If I now click on the report link, it opens the report in a whole window. How do I open the report in the same portlet or if this is not possible, how do I open this in a different portlet on the same page ?
    thanks for helping.
    Mainak

    Hi,
    This is part of JPDK. You will have to install it. Which version of portal are you using? You can also try this out using
    URL portlet which is available with webview in 309.
    Thanks,
    Sharmila

  • Is it possible to change "link" context menu items' order (I want "open in new window.." be the first) ?

    I made an upgrade FF from v3.6.xx to v17.0.x and found that "Link" context menu items' order is not the same.
    v3.6 menu looks as following: 1."Open Link in new Window", 2."Open Link in new Tab",
    v17.0 menu items' order is opposit 1."Open Link in new Tab",2."Open Link in new Window",
    All other items' position are uninteresting for me.
    How to swap this two upper items in "link" context menu?

    Both ways are useful:
    * Menu Editor [https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ https://addons.mozilla.org/en-US/firefox/addon/menu-editor/]
    'Drag-n-drop' in editor window is working.
    * Editing "userChrome.css" [https://support.mozilla.org/en-US/questions/791244?page=2#answer-161497 https://support.mozilla.org/en-US/questions/791244?page=2#answer-161497] .
    For my Windows XP path looks: "C:\Documents and Settings\%account%\Application Data\Mozilla\Firefox\Profiles\%random_name%\chrome\userChrome.css".

  • Using a Stacked Bar Chart With an Accordian Menu

    I am having difficulty using a stacked bar chart with an accordian menu. I am able to have one stack bar populate but the other four stays blank. There seems to be an issue with my destination. I dont think it likes that my destination is more than one row and one column. Is there a way to fix this?

    Hello,
    I think there may be an issue in how your model/Accordion Menu was configured.  What insert option are you using?  Your destination should only be 'one' row OR 'one' column at the most.
    Thanks,
    AJ

  • How to put webpage in separate folder but linked to menu bar in adobe muse?

    How to put webpage in separate folder but linked to menu bar in adobe muse? Need to do this because I want to make this page password protected from the rest of the website.

    Hello,
    While uploading only that page from Muse to your host, use the "Host Directory" option to upload it to a different folder. You can choose to upload selective page by disabling/enabling "export page" option for the pages from plan view in Muse, as shown in this screenshot: http://screencast.com/t/vpuIEjtVdZRS
    To link selective pages to the menu, use "Manual" menus. This will allow you to link any page to the menu, even an external page. You can change the menu type from here: http://screencast.com/t/Ej8x2KrJ
    Hope this helps.
    Cheers
    Parikshit

  • Using Dynamic Visibility with Accordian Menu

    Hiya.  I am trying to use dynamic visibility with an accordian menu.  My menu categories are years, 2005 - 2010. My categories items are key performance indicators such as abandon percentage,  first call resolution, customer satisfaction percentage, call volume and average speed of answer. 
    Of my 6 KPIs, 4 display as percentages and 2 display as whole numbers.  When the percentage graphs are displayed the axis labels needs to be percentages.   When the whole number graphs are displayed the axis label needs to show whole numbers.
    I thought to achieve this I should use dynamic visibility with two different line charts where one line chart shows percentages and the other line chart shows whole numbers.   However I am strugging trying to make that happen.
    Is my concept correct, or is there an easier way to accomplish this?  If my concept is correct,can someone give me some advice on how to make dynamic visibility display the correct chart depending on which KPI I select from my accordian menu?
    Thanks!

    Hi
    You can achieveby doing following steps..
    Insert your categories into D3 and label bind to E3.
    take two charts and bind to the destination data of Accordion menu
    then write a formula in F3 like this =IF(OR(E3="abandon percentage",E3="customer satisfaction percentage"),1,0)
    and bind your two charts to the F3 and set DV for % charts as 1 and # charts as 0.
    I hope this will helps you
    Thanks,
    Srinivas Dandamudi.

  • Problems with accordian menu, look familiar?

    I just upgraded to SP3, and although I have never used the accordian menu, I think I know what it should look like, but since I upgraded, something seems broken.
    When I go to the accordian menu (properties), all that is available in the menu area is "General", and the only options are "Name", "Value" and "Bind" in the header of the columns.
    Can anyone tell me what I have done?
    Many thanks,
    Johnny

    Hi:
       For Accordion Menu, there should be three tabs under property sheet, General, Behavior, Appearance. Also this component should be only available for Xcelsius Engage, and Enterprise version.
       You can try to reinstall Xcelsius to see whether it is the installation problem.

  • Copy an accordian menu

    is it possible to copy an accordian menu onto a new page, i
    would just save it as a new page but I want to change the language
    of the menu and therefor the template for the other page is
    completely different. So I would like to copy the english menu onto
    the spanish page and then just go through and change the
    text.

    Hello,
    I think there may be an issue in how your model/Accordion Menu was configured.  What insert option are you using?  Your destination should only be 'one' row OR 'one' column at the most.
    Thanks,
    AJ

  • How to link one menu to another.

    Hey guys,
    I am creating a user input form for car types and car parts. I want to link one menu to another. I.e. the first menu will be make with a list of car makes, and if the user chooses "Ford" then the next menu will load items from a table "Ford" with the Ford models in it. I have the tables created in a database, one tabel is make with 50 different makes, and then i have 50 other tables for each make with the model types in it.
    Sorry if this is confusing please ask me if you need any more info.
    Thanks in advance

    supersham101 wrote:
     I want to link one menu to another. I.e. the first menu will be make with a list of car makes, and if the user chooses "Ford" then the next menu will load items from a table "Ford" with the Ford models in it.
    What you are looking for is a dependent drop-down menu. To get the values for the second menu, you need to send another request to the server, either by submitting the form again, or by using an Ajax request to populate the dependent drop-down. I don't know of any online tutorials for doing this, but you should be able to find something by doing a Google search. I know that "jQuery in Action, Second Edition" by Bear Bibeault and Yehuda Katz (published by Manning) describes in considerable detail how to do this.

  • Cannot find any of the links under menu

    Hi guys,
    I made a installation of PT8.51 on Oracle11gR2 on Win2k8R2 64-bit.All scripts ran successfully.Everything went fine.Iam using 2 machines i.e. one as an application server and other as an database server.I configured the application server and booted it.I configured the PIA and i logged into it but to my surprise i cannot find any of the links or anything under the menu.Why is it.Do i have to run any scripts to grant the user PS some permission to access the menu or what??Pls help me.Do i have to make any further configuration on any of the servers?

    Thank you for your reply.No nic i have not managed for an upgrade.Is there any other way to check that i have got everything in my PIA.I doubt it may be something like the PS user is not granted the security to access any of the links.PLs advise what to do?

  • Is it possible to add a page in MUSE without it adding corresponding link in Menu Widget?

    I'm building a website that has just three main linked pages. However, I want to add additional pages to the site but not have their links show up in the main menu widget. Is this possible?

    Hey thanks, mac-heibu,
    That was sooo darn easy.  I overlooked it.

  • Links in menu not going anywhere

    Hello All
    On this page http://www.pureoceansalt.com/index6.html the menu links do not go anywhere - I know the pages are live. And I have moved around the js files to see if that is the problem. I assuming it still is but cant seem to get it fixed
    any help is appreciated
    Rob

    thats odd
    because I see this
    <li><a href="/">Home</a></li>
        <li><a href="http://www.pureoceansalt.com/retail/">Retail Packages</a></li>
         <li><a href="http://www.pureoceansalt.com/bulk/">Bulk</a></li>
        <li><a href="http://www.pureoceansalt.com/ingredient/">Ingredient</a></li>
        <li><a href="http://www.pureoceansalt.com/label/">Private Label</a></li>
        <li><a href="http://www.pureoceansalt.com/why-salt/">Why Pure Ocean</a></li>
         <li><a href="http://www.pureoceansalt.com/about/">About Sea Salt</a></li>
        <li><a href="http://www.pureoceansalt.com/contact/">Contact Us</a></li>

  • Link between Menu and Queries

    Hi Guru's,
    Where can I find a link (in which table(s)) between the queries and the menu (pfcg) ?
    Is there something better than AGR_BUFFI ? I need only the technical name of the quey and not the entire URL ...
    Thanks in advance
    Alex
    Message was edited by: Aleksi

    Hi Guru's,
    Where can I find a link (in which table(s)) between the queries and the menu (pfcg) ?
    Is there something better than AGR_BUFFI ? I need only the technical name of the quey and not the entire URL ...
    Thanks in advance
    Alex
    Message was edited by: Aleksi

Maybe you are looking for

  • Music on my cloud is corrupt

    I've got some music in my cloud that when I play it either from the cloud or download it to my computer to play is corrupt.  How do I resolve this (b/c of course, it's some of my favorite music)? It also doesn't matter which device I do this on, my P

  • POP screen to enter custom fields

    Hi gurus, in a FM i want to call a screen as pop up and it should contain fields for entering the data and it should have buttons like enter , cancel , page up , page down  and when ever i enter the values and press enter button it should save the en

  • Is there any x220 owner who does NOT have a fan noise problem?

    Hello All, I've been browsing the forums occasionally for the past week and noted the "pulsing/whining" problem with the x220. I was wondering, does anyone NOT experience this problem or hear this noise? If so, what is your system's configuration and

  • After update to 10.3 standby time halved

    Hi, I use my Q10 only as mobile phone, therefore I disable data services and swaitch network mode to "2G only". With OS 10.2 I was able to reach about 7 days of standby which was one of the things I liked most about my Q10, after the 10.3 update I ha

  • Implementation of New GL

    Guys Deployment of the New GL at half the exercise, have prerequisites? Tks Regards Moderator: Please, search before posting