Collapsible Menu using "Display Cover.swf"

I want to create a menu that will collapse and expand from the side of the Xcelsius model. I've been trying to figure this out using the "Display Cover (white).swf", flash file that comes with Xcelsius, but that is apparently not the way to go. Does anyone know how I can make the described menu in Xcelsius?

That particular file is an art remnant left over from older versions of Xcelsius. It was created in another program, not Xcelsius. Xcelsius components cannot slide back and forth like this. However, you can create a similar effect with a menu by doing the following:
1) Insert desired Menu component
2) Insert a button or icon component
3) Button: Labels = Show/Hide; Source Data: Off = 0, On = 1; Insert In: A1; Behavior - Default = On;
4) Menu: Behavior: DV: Display Status = A1; Key = 1; Entry Effect = Grow X First; Duration = 0.5
*Clicking the button on or off will determine if the menu is shown or hidden.
This will slide the menu out, but the menu will blink off. You could get more sophisticated with two icons (with or without image components for customization) set to show or hide based on whether the menu is shown or hidden. This should at least get you headed in the right direction.

Similar Messages

  • Collapsible menu displaying within a slide?

    Hello,
    I was wondering if it was at all possible to place a collapsible menu on a slide.  Rather than displaying a TOC that is currently available in captivate - see screen capture below.
    Thankyou kindly
    ali

    Captvate has no native functionality to achieve this.  You could use the Hyperlink Widget to set up interactive clickable text that can trigger Advanced Actions to jump to another slide or project when clicked.  However, be warned that jumping to another project is not a good idea if your course is delivered from a SCORM compliant LMS as this action usually violates the rules around how the SCORM API wants to work.
    Feel free to log a feature request if you think this idea might be worth developing in a future version of Captivate: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5

  • Incorrect menu being displayed after several forms are called and closed

    Have been searching and agonizing for a few hours and still can't find the reason for this.
    Forms v9i web version
    The starting form (main_form) has a custom menu (cus_menu) and this is displayed when the user begins the application. Form B can be called in two different ways:
    1) Directly from the main_form menu, here is the code: call_form('FORM_B',HIDE,DO_REPLACE);2) Via a button from another form, Form C which is called from the menu in the same way as Form B was. Code for the button is same as above.
    The menu attached to Form B is another custom menu (b_cus_menu).
    The problem occurs when Form B is called via the second method.
    Here are the steps,
    1) From main_form, Form C is called from the menu (cus_menu)
    2) Button is pressed that calls Form B (call_form('FORM_B',HIDE,DO_REPLACE);).
    3) Menu correctly changes to b_cus_menu
    4) Form B is closed and now Form C is visible. Menu correctly reverts to the menu set for form C.
    5) Form C is closed and main_form is now visible. Menu incorrectly reverts to the menu used in form B (b_cus_menu) instead of cus_menu.

    Problem seems to only occur when Form B has the same window name as the main form. Strange...
    Message was edited by:
    SamB

  • Creating a vertical dropdown menu that displays inline

    I would like to change how my dropdown menu displays.  First I'd like for it to dropdown directly underneath its menu item and in the process move the other links down.  And remain visible until it is clicked again, thereby shifting other links back up.
    Here is what I am trying to accomplish:
    Main menu:
    main link 1
    main link 2
    main link 3
    main link 4
    Then when user clicks on a link:
    main link 1
       sub item
       sub item
       sub item
    main link 2
    main link 3
    main link 4
    And for it to remain displayed like the above until clicked again.
    So in essence it could even look like this as a user is navigating:
    main link 1
       sub item
       sub item
       sub item
    main link 2
       sub item
       sub item
       sub item
    main link 3
       sub item
       sub item
       sub item
    main link 4
       sub item
       sub item
       sub item
    And then each submenu disappear as its main link is clicked again.
    Hope this makes sense and hope someone can help.
    Thanks!
    P.S. Im using Dreamweaver CS6

    Bare bones example: (needs styling with css) (if you want a bit more of a smooth animation use - $(this).find('.sub_menu').slideToggle(); instead of $(this).find('.sub_menu').toggle(); in the jQuery script below highlighted in red
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>jQuery Drop Down Menu</title>
    <style type="text/css">
    ul {
    margin:0;
    padding:0;
    list-style-type:none;
    /* hide sub menu */
    .sub_menu {
    display: none;
        /* indent sub menu */
    .sub_menu li {
    padding-left: 10px;
            </style>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    $('.menu').click(function() {
    $(this).find('.sub_menu').toggle();
    </script>
    </head>
    <body>
    <ul id="navigation">
    <!-- menu 1 -->
    <li class="menu"><a href="#">Menu 1</a>
    <ul class="sub_menu">
    <li><a href="#">Sub Navigation 1</a></li>
    <li><a href="#">Sub Navigation 2</a></li>
    <li><a href="#">Sub Navigation 3</a></li>
    </ul>
    <!-- menu 2 -->
    </li>
    <li class="menu"><a href="#">Menu 2</a>
    <ul class="sub_menu">
    <li><a href="#">Sub Navigation 1</a></li>
    <li><a href="#">Sub Navigation 2</a></li>
    <li><a href="#">Sub Navigation 3</a></li>
    </ul>
    <!-- menu 3 -->
        </li>
    <li class="menu"><a href="#">Menu 3</a>
    <ul class="sub_menu">
    <li><a href="#">Sub Navigation 1</a></li>
    <li><a href="#">Sub Navigation 2</a></li>
    <li><a href="#">Sub Navigation 3</a></li>
    </ul>
        </li>
    </ul>
    </body>
    </html>

  • How can I get rid of the blue border in Spry collapsible menu

    How can I get rid of the blue border that displays in Safari when I click on the Spry collapsible menu?  Also want to get rid of dotted border that displays in Firefox.  Any suggestions?  Thanks.

    Please take a look here http://webaim.org/blog/plague-of-outline-0/
    If, after reading the above, you still want the outline removed the add the following style rule to your document.
    ul.MenuBarHorizontal a {
        outline: none;

  • Tree type expandable collapsible menu in JSP.

    Hi,
    I am looking for an expandable collapsible menu which can be integrated into a jsp as a tile. I googled it but only came up with handful and even those are not free to use.
    Regards,

    Try, Yahoo! UI Library: TreeView
    http://developer.yahoo.com/yui/treeview/

  • Menu Icons Display Strange

    All my disabled buttons appear like this where they are gray.  What can I do to fix this or what would cause them not appearing correctly?
    Thanks!

    Here are my System Specs
    Dell Latitude E6500
    Windows XP Pro Service Pack 3. 32 bit
    Intel Core 2 Duo 2.66 Ghz
    NVIDIA Quadro NVS 160M
    The buttons seem to work fine, they just look all grayed out when they can't be selected.
    Thanks for your help.
    Alan Wayman [email protected]
    Date: Thu, 10 Sep 2009 14:58:40 -0600
    From: [email protected]
    To: [email protected]
    Subject: Menu Icons Display Strange
    Hi again
    Hmmm, new install. Aside from the funky icons does it seem to function?
    What is your operating system? Vista, Windows 7, Windows XP and how many bits? 32 or 64.
    Note that Adobe has no version of Captivate that has been blessed and purported to run flawlessly on 64 bit systems. We are seeing more and more folks arrive here that are using 64 bit systems and citing all manner of issues. Mostly surrounding capture and audio.
    Cheers... Rick
    | http://www.robowizard.com/pc.gif | Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com |
    >

  • Horizontal Menu Not Displaying Right in IE (Shocker!)

    Can someone look and see why my menu wont display correctly in IE. I've used the same feature on other sights with no problems. I may have jacked up the code when tweaking the design. Any help would be appreciated. Cheers.
    www.brand32.com/Evoke
    I'll be happy to add code if needed.

    Here is the CSS. Hopefully this will elicit some response. Thanks in advance for those who reply.
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0px 0 0 0px;
    padding: 38px 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    background-color: #300607;
    border: 0px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #fff;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;

  • Menu parameter, display text and filter by ID

    Is it possible with a parameter of type menu to display the text that has meaning to the user
    But when filtering in my query send the ID's of the items the user selected in the menu?
    For example I have a catalog with 50 reason descriptions in my DB, every reason description has an ID
    So I display the 50 reason descriptions so that the user selects whatever he wants
    When he runs the report how can I get the ID's of the reason descriptions he selected?
    Thanks and Regards

    for All option:
    select description, id from table
    union all
    select "All", -999 from dual
    in the query SQL:
    where
    colum1 = decode(:parameter1,-999,colum1,:parameter1)
    for Multiple selection:
    colum1 in (decode(:parameter1,-999,colum1,:parameter1) )
    example to create a report:
    1.create a list:
    select rownum || '-' || t.tname tname, rownum tnum from tab t
    union all
    select 'All' tname, -999 tnum from dual
    order by tnum
    2. create a parameter using above list
    3. create a data model with following sql:
    select rownum || '-' || t.tname tname, rownum tnum from tab t
    where rownum in ( decode(:PM_doc_id,-999,rownum,:PM_doc_id))
    4. generate the layout
    5.view this report to verify it.

  • Call and display Xcelsius SWF file from an SAP Transaction

    Hello Experts ,
                          Could you please suggest if it is possible to Call and display Xcelsius SWF file
    from an SAP Transaction and if Yes how can this be achieved.
    Regards ,
    Jerin.

    Jerin,
    It is possible to embed a Xcelsius model into an SAP WebTemplate (Anil promised to write a blog about this very soon). After that you can include the WebTemplate in the GUI menu, Role menu or Portal.
    Henk.

  • Flash menu screen and related .swf "blank"?

    Unable to always obtain Flash menu screen (and related .swf file). This is really odd! On some rare occassions it is possible to successfully create flash output but most times not. As the number of successes are rare, I can't analyse & determine what is going on (output to DVD & Blu-ray is fine but can't get flash)??

    That sounds a little severe. Have you made any changes at all to your Mac - changed graphics cards or anything? Also, do you use a font management app like suitcase? If you do, have you turned off any of the fonts DVDSP uses as part of the system? I know it sounds odd, but this has caused all kinds of issues for people in the past and the only resolution was to turn on the system fonts again.
    Have you run a hardware test (using the Apple hardware check disc that your mac came with)? I am no expert on any of this stuff, but check your graphics card... I had one with bad memory and many, many glitches started to appear which just got worse over time. Changed the graphics card and all was fine.

  • Is there any way to edit the standard Firefox context menu for displayed Web pages?

    Is there any way to edit the standard Firefox context menu for displayed Web pages? I frequently want to save a picture appearing on a page. Sometimes I "slip" and hit "Send Image" when I want "Save Image As", and have to sit and wait for a default send-mail page to come up, then close it, fiddling with its "are you sure" dialogs. This is a painful way to handle a slip-up. I basically NEVER want to e-mail an element directly from a page. Is there any way I can just delete "Send Image" from the context menu?

    You can remove entries in the context menu with code in the userChrome.css file
    *http://kb.mozillazine.org/userChrome.css
    Some IDs are listed in this MozillaZine Knowledge Base article:
    *http://kb.mozillazine.org/Chrome_element_names_and_IDs
    To find the ID of others you will have to use the DOM Inspector.
    * https://support.mozilla.org/kb/DOM+Inspector
    * https://developer.mozilla.org/En/DOM_Inspector
    * https://developer.mozilla.org/en/Introduction_to_DOM_Inspector
    * DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/

  • Can't get a Google Site navigation menu to display on Safari

    I can't get my Google Site navigation menu to display on Safari (iPad or iPhone)? Navigation menu is off the page...tapping the screen opens the sidebar but then it instantly closes automatically.
    I looked in Google Sites Admin for a mobile device compatibility setting, but didn't find one. Also looked in my Safari settings on my own iPhone/iPad devices and nothing I do allows the Google Site navigation to work. This makes my Google Site unusable by iPad and iPhone users.
    Help...?

    Are you using Safari? Have you tried an alternative browser - Chrome, Firefox?
    Edit: What's the website - maybe it's down.

  • Drop Down Menu Using CSS Only

    Apex 3.2
    I have created a drop down menu for my application by following this blog
    http://www.grassroots-oracle.com/2013/05/css-pull-down-menu-using-apex-list.html
    It works perfectly if my list has only one level, but I can't get it working for sub items.
    If I add a sub item to my list, then the whole menu displays incorrectly.
    Has anybody used this blog before
    I would post on the blog, but it requires a google acount, which I am not allowed to create
    Gus

    Hi Gus,
    Have you read the comment from ino?
    Thanks Scott, very useful.
    One update: this works if there are no sub menus. For the same reason as you described about the <ul> bug, you can change the Sublist with sublist items to
    <li><a href="#LINK#" class="dir">#TEXT#</a><ul>
    (extra <ul> at the end). Took me a while to figure out why my sub menus were not showing properly, until I read your comment in the "Sublist template before rows" section.
    It looks to me that this would solve your problem.
    Regards,
    Kees Vlek
    Company: http://www.orcado.nl
    Blog: http://www.orcado.nl/blog/blogger/listings/69-kvlek
    Twitter: http://www.twitter.com/skier66
    +If the question is answered please change it to answered and mark the appropriate post as correct/helpfull.+

  • Display external SWF via XML

    Hello gang - I don't do much much in the way of AS, and this
    is my first real foray into XML and dynamic data in regards to
    Flash. I followed this guide successfully:
    http://www.kirupa.com/developer/actionscript/xmldataflash.htm
    Using that technique, I'm able to get text to display as I
    wish. The XML text is displayed using a dynamic text field - but
    I'm at a loss for how to display the swf?
    Here's my AS:
    function loadXML(loaded) {
    if (loaded) {
    _root.name =
    this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
    _root.swf =
    this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
    panel1_txt.text = _root.name;
    swf01.text = _root.swf;
    } else {
    trace("file not loaded!");;
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("panels.xml");
    And here's my XML:
    f<?xml version="1.0"?>
    <box>
    <panel>
    <name>superchange your web presense</name>
    <swf>
    http://www.core3solutions.com/panels/panel_1.swf</swf>
    </panel>
    </box>
    Any suggestions?
    Thanks in advance!

    You probably need to contact the designer of the component to see why it behaves that way if the documentation that came with it doesn't explain why that might happen.  If the swf you are loading happens to load other files dynamically, that could also be a source of a problem (the file failing due to not being able to load something).  Based on what you showed, I doubt the xml has anything to do with it the problem you're having.

Maybe you are looking for