Af|menu in vertical layout... It's possible?

Hello,
It's possible to have a menu in "vertical mode"?
| menu1 |
         | Submenu1 |
                        | CommandMenu1    |
                        | GoCommandMenu1  |Thanks.
Edited by: MarS on 23/Set/2011 3:49

can i just go to powermac instead of sending back the ipad to the apple store in Japan? and ask them if they can do something about it?

Similar Messages

  • Spry horizontal menu becomes vertical menu

    In IE my spry horizontal menu becomes vertical but is
    stretched to the same width as the horizontal menu is suppose to
    be? Any ideas?

    If horizontal is turning vertical, I have a feeling what is happening is that when you publish it, it's not connected to any style sheet -- or you have the style sheets in the wrong order.
    Remember, with CSS (Cascading Style Sheets) the last stylesheet trumps the earlier one. That's perfectly OK if there are no conflicts, but there may be some that can cause problems.
    Thus, you'd be looking for:
    <link href="styles.css" rel="stylesheet" type="text/css">
    <link href="navigation.css" rel="stylesheet" type="text/css">
    If navigation.css is first, styles.css may be rewriting your styles for your spry navigation.
    Now, I'm going to throw you a curve. Spry has been discontinued and it "going away." I recommend you learn how to make your own navigation and Spry is usually used for drop-down navigation. You can do that in straight HTML and CSS.
    Take a look at my last reply in this forum discussion for a bunch of pretty cool "do it yourself" navigation tutorials.

  • CSS horizontal menu with vertical dropdowns

    What I would like my menu to look like:
    - solid border on top and bottom
    - first-level menu items horizontal and centered
    - first-level menu items equally spaced as opposed to same
    widths
    - second-level menu items vertical and on individual lines
    What my menu actually looks like:
    www.vicesbyproxy.com/staging/exp_menu_vert.html
    What's wrong:
    - border not on top & bottom
    - second level wrapping within the width of the container
    This CSS is much more complex than what I usually do. Any
    help would be greatly appreciated.

    The only way to go -
    http://www.projectseven.com/products/menusystems/pmm/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "anubia" <[email protected]> wrote in
    message
    news:e5o4gk$28t$[email protected]..
    > What I would like my menu to look like:
    > - solid border on top and bottom
    > - first-level menu items horizontal and centered
    > - first-level menu items equally spaced as opposed to
    same widths
    > - second-level menu items vertical and on individual
    lines
    >
    > What my menu actually looks like:
    > www.vicesbyproxy.com/staging/exp_menu_vert.html
    >
    > What's wrong:
    > - border not on top & bottom
    > - second level wrapping within the width of the
    container
    >
    > This CSS is much more complex than what I usually do.
    Any help would be
    > greatly appreciated.
    >

  • Fixed vertical layout for mobile

    Hi, I have done the design mobile site by using adobe muse.  I want to keep the fixed vertical layout, how can I set to disable the auto rotation funcation for mobile only?
    Thanks,
    Andy

    Hi
    I believe you want to restrict the orientation of site when opened in phone browser to vertical.
    With native Muse features we cannot stop orientation changing when user rotate its phone to landscape ,though can be done using custom code.
    View port helps to change the orientation of the site in device browser. Its not advisable to restrict users from using the orientation they want to use the site, but you can try the suggestions mentioned in the documents :
    http://stackoverflow.com/questions/10975387/mobile-site-force-landscape-only-no-auto-rotat e
    http://stackoverflow.com/questions/3501510/blocking-device-rotation-on-mobile-web-pages
    http://stackoverflow.com/questions/6052400/disable-auto-rotate-in-jquery-mobile-or-phonega p
    If this is not what you are looking for , please let me know.
    Thanks,
    Sanjit

  • Vertical menu with vertical submenu's

    Hi,
    I would like to create a vertical menu with vertical submenu's. So when you click on a menu item, it slides open and reveals the submenu items. I tried to combine different accordion widgets together and also to combine an accordion with a vertical menu, but this got all quite messy, especially when I previewed it. It seems such simple feature (Muse is using it for its own menu structures, for example the widget-library) so I find it strange that it is not available in the library or somewhere else online...
    Thanks for your advice!

    Hi
    How exactly you have tried with accordion ?
    With accordion widget this can be achieved , as label the items as main menu and sub menu items.
    For example , insert an Accordion , name the label as Main and insert other elements in container area and then link them to specific pages.
    You can also , try to insert an accordion with rotation so that the menu items should appear with horizontal expansion.
    These video should help you :
    http://www.youtube.com/watch?v=dQy_lj0ZXss
    http://www.youtube.com/watch?v=_LYbjPQnw9k
    Thanks,
    Sanjit

  • Vertical layout Problem!

    I have implemented a Vertical layout Which ads the componenst vertically.
    The problem is the components gets added below the last component added.I want to add the component at the specific location ie : Point in the container...Can somebody please help me out !!!
    the code for Vertical layout is
    public class VerticalLayout implements LayoutManager2,Serializable{
    private int MIN_WIDTH=300;
    public float getLayoutAlignmentY(Container target) {
    return 0.0f;
    public float getLayoutAlignmentX(Container target) {
    return 0.0f;
    //not used
    public void addLayoutComponent(Component comp, Object constraints) {
    //not used
    public void addLayoutComponent(String name, Component comp){
    //not used
    public void removeLayoutComponent(Component comp) {
    * Returns the maximum size of this component.
    * @see java.awt.Component#getMinimumSize()
    * @see java.awt.Component#getPreferredSize()
    * @see LayoutManager
    public Dimension maximumLayoutSize(Container target) {
    Insets insets=target.getInsets();
    int width=0;
    int height=vGap;
    for(int i=0;i<target.getComponentCount();i++)
    Component child=target.getComponent(i);
    width=Math.max(child.getMaximumSize().width,width);
    height+=child.getMaximumSize().height+vGap;
    return new Dimension(insets.left+width+insets.right,insets.top+height+insets.bottom);
    * Invalidates the layout, indicating that if the layout manager
    * has cached information it should be discarded.
    public void invalidateLayout(Container target) {
    * Calculates the minimum size dimensions for the specified
    * panel given the components in the specified parent container.
    * @param parent the component to be laid out
    * @see #preferredLayoutSize
    public Dimension minimumLayoutSize(Container parent) {
    Insets insets=parent.getInsets();
    int width=0;
    int height=vGap;
    for(int i=0;i<parent.getComponentCount();i++)
    Component child=parent.getComponent(i);
    width=Math.max(child.getMinimumSize().width,width);
    height+=child.getMinimumSize().height+vGap;
    return new Dimension(insets.left+width+insets.right,insets.top+height+insets.bottom);
    * Calculates the preferred size dimensions for the specified
    * panel given the components in the specified parent container.
    * @param parent the component to be laid out
    * @see #minimumLayoutSize
    public Dimension preferredLayoutSize(Container parent) {
    Insets insets=parent.getInsets();
    int height=vGap;
    int width=MIN_WIDTH;
    for(int i=0;i<parent.getComponentCount();i++)
    Component child=parent.getComponent(i);
    Dimension d=child.getPreferredSize();
    width=Math.max(width,d.width);
    height+=d.height+vGap;
    return new Dimension(insets.left+width+insets.right+2*hGap,insets.top+height+insets.bottom);//+2*vGap);[email protected] july, 02 2002
    * Lays out the container in the specified panel.
    * @param parent the component which needs to be laid out
    public void layoutContainer(Container parent) {
    Rectangle bounds=parent.getBounds();
    int x=hGap;
    int y=vGap;
    for(int i=0;i<parent.getComponentCount();i++)
    Component child=parent.getComponent(i);
    Dimension prefSize=child.getPreferredSize();
    int width=Math.max(bounds.width-2*hGap,MIN_WIDTH);
    int height=Math.min(prefSize.height,bounds.height);
    child.setBounds(x,y,width,height);
    y+=height+vGap;
    x=Math.max(x,bounds.width);
    parent.setSize(x,y);
    int hGap=0;
    int vGap=0;
    public void setHgap(int hGap)
    this.hGap=hGap;
    public void setVgap(int vGap)
    this.vGap=vGap;
    }

    First of all when you post code use the [url http://forum.java.sun.com/features.jsp#Formatting]Formatting Tags so the posted code is actually readable.
    The point of using a LayoutManager is to let the manager determine the best location for a component based on known information about the component.
    If you want to manually position components (not recommended) then you don't use a Layout Manager and instead use [url http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html]Absolute Positioning.

  • Adobe Content Viewer - possible to view vertical layout?

    Is it only possible to preview the magazine horrisontal, not vertical with the Desktop Content Viewer?

    Hit the "R" key on your keyboard. If that doesn't work, try cmdr or ctrlr.
    Bob

  • Spry horizontal menu goes vertical in IE6

    My site is still incomplete but I was testing the basic
    layout on different browsers, and found that my horizontal Spry
    menu bar at the bottom of the page goes vertical in IE6 (but not in
    any other browser I tested). Any thoughts why this could be? The
    page is
    here.
    On an unrelated note, the left sidebar does not reach all the
    way to the footer in any browser that is not IE. 90% of my traffic
    is from people using IE, but I'd like to fix it if possible. I
    tried using a javascript workaround to making equal length columns
    with CSS that I found on these forums, but could not get it to work
    right across all browsers, so decided to just make fixed-length
    side columns instead. Any help on either problem would be
    appreciated!!

    Have a look at the following piece of code in your modified CSS file
    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);
        background-color: #000;
    /* 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: none;
        background-color: #F00;
    You have changed the latter two highlighted lines, which you must have done because you felt that you are an expert.
    Sorry to disappoint, because the last highlighted line is where the problem lies. If you replace the f/loat value back to the original left, your problem will have disappeared.
    Gramps

  • Need a Dual-Pane vertical layout instead of Tri-Pane

    We are designing a help module with vertical dual pane layout
    instead of default tri-pane layout. The top pane should contain the
    usual buttons to search glossary etc.. the search box and the
    results should come in the bottom pane only. Is there any way we
    can archive this? Thanks in advance

    With my search and experiment till date, i am concluding this
    as not possible.

  • Help with Spry Menu Bar Vertical

    I have a page (html) with 3 frames (Top, Left, and Main). The
    Left Frame will have the Spry Vertical Menu that will expand it's
    submenus to the right, which I want it to overlap to the Main Frame
    (which is to the right of the Left frame) .
    Attempts:
    1) I have increase the Z-Index of the Menu to a greater value
    than anything on all frames, but this didn't working.
    Please help!
    Respectfully,
    -Victor

    quote:
    Originally posted by:
    Enchauva
    I have a page (html) with 3 frames (Top, Left, and Main). The
    Left Frame will have the Spry Vertical Menu that will expand it's
    submenus to the right, which I want it to overlap to the Main Frame
    (which is to the right of the Left frame) .
    Attempts:
    1) I have increase the Z-Index of the Menu to a greater value
    than anything on all frames, but this didn't working.
    Please help!
    Respectfully,
    -Victor
    I too have a similar problem if not exactly the same. I am
    finding it difficult getting information about it because I don't
    really know how to describe what is happening!
    In essence when I have a menu bar as you describe on the left
    and another placeholder AP div to teh right of that menus when I
    preview in a browser the whole things collapses and is very very
    sensitive when you try to navigate to the right and drop out menu
    Mine are vertical (popping out to the left!)
    Now if I remove the place holder all is fine BUT I need to
    use the place holder to position a collapsible panel.
    At one stage I thought it was the collapsable panel causing
    issues but an empty AP DIV tag all cause the issue!

  • Spry Menu Bar Vertical Help

    Hi,
    Since the site isn’t online yet I posted my project for downloading.  I am using Dreamweaver CS4.
    For the website I am creating I would like to have a spry menu bar.  I have been trying to figure this out but I can’t do it.  The main file I am working with is named “theme_02_design.html” which is found in the Publish folder inside of In Play by Heather Ashley Inc. As you can see there is a left navigation area with 3 items listed (Home, Products, and Contact Us).  I would like to change this into a vertical spry menu bar.  Every time I try to do this the page is distorted in some way or another.  I would like the menu on the left of the screen to look the same but with the vertical spry menu bar functions.
    When someone visits the page I would like them to hover over the word products and have a submenu with multiple items.
    It would look something like this...
    Home
    Products  - submenu -  Warm Up Series (I would insert a submenu here as well)
    Contact Us                   Lace Up Hooded Sweatshirt
                                        Fleece Name Pants
                                        Shorts
                                        Accessories
                                        Shell Colors
                                        Trim Colors (I would insert a submenu here as well)
    Can anyone help?
    Thanks

    I fiddled around with your file. I will attach the zip of your files.
    Take a look at your page. I commented out your original navigation and added a Vertical Spry Menu Bar.
    You will have to do some more adjusting, but I copied portions of your own CSS file into the Spry Menu Bar CSS.
    See what you can do with it.
    Beth

  • Spry menu bar - vertical format instead of horizontal

    When I inserted the Spry Menu Bar I selected a Horizontal format (instead of Vertical). However, the menu bar appears vertically in the document. I have inserted it on top of the banner (which was inserted as a background image within a table) and is definitely wide enough to accommodate a horizontal menu bar. I have deleted it and tried a couple of times but still the horizontal selection appears in a vertical format. Any ideas much appreciated.
    This is how it appears in code:
    <table width="970" border="0">
              <tr>
                <td height="160" class="banner"><ul id="MenuBar1" class="MenuBarHorizontal">
                  <li><a href="#">Item 1</a>                </li>
                  <li><a href="#">Item 2</a></li>
                  <li><a href="#">Item 3</a>                </li>
                  <li><a href="#">Item 4</a></li>
                  <li><a href="#">Untitled Item</a></li>
                </ul></td>
              </tr>
              </table>

    Make sure that you have saved the Spry Assets that go along with the Menubar. I assume that you have, but this menubar is a simple list without its assets.
    Also make sure that you have not inadvertently indicated the Vertical menubar. I assume that you have not.
    When you delete and re-insert a Spry Widget, make sure that you do it by clicking anywhere in the Widget on the Document Window and then clicking on the blue widget tab. Then press delete, and all evidence of the Widget will go from your page. I find that manually editing does not always 'clean up' after disabling a Widget.
    If you can post the page live somewhere, we can give you a better answer.
    Z

  • Unable to Access Menu in SFP Layout tab

    Hi,
    Could someone please help me? In transaction SFP, under the Layout tab, I'm unable to access the Menu (Edit, View, Insert, Layout, Tools, Palletes, Help). Is there any setting which I've missed out?
    Just in case this information is important, my machine is installed with Adobe Reader 7.0.8 and Adobe Lifecycle Designer 7.0.
    Also, if the users that will be using ESS/MSS can only have Adobe Reader 6.0 on their machines, I understand that there would be problems trying to display the PCR within the portal. Is there any fix to this?
    Appreciate your help and thanking you in advance.
    Regards,
    Adeline.

    Hi Adeline,
    1) Can you see the Menu? Or is everything greyed out?
    2) Adobe Reader 7.0.8 is suggested to use for the end users. We had a lot of problems with older releases. Please note that in case of Netweaver 2004 you cannot use Reader 8 or higher yet. Adobe and SAP are working on this issue. (The ACF - Active Component Framework) cannot install properly with Reader 8.
    So the only fix is using Reader 7.0.8. - The problem is client side related, not ADS or PCR related.
    Cheers,
    Noë

  • Spry Horizontal Menu is Vertical

    I installed a Spry Horizontal Menu Bar on one of my clients
    web pages and everything was going fine.
    But then all of a sudden the horizontal menu switched to
    vertical and I can't figure out how to undo this.
    At this point even when I ask DW to insert a Spry horizontal
    menu bar onto a new page, it inserts a vertical one!
    Did I mess up the .css somehow?
    Thanks!
    Greg in New Orleans

    Try making one on a fresh page. When you select the Spry
    Menu, you are
    asked if it's vertical or horizontal and then tells you it
    will copy files
    and you click okay.
    Does your page use the SpryHorizontalMenu.css page? Could you
    maybe be
    using the wrong one?
    If you still can't get it, could you post a link to your
    page?
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "geeceeart" <[email protected]> wrote in
    message
    news:fno5i8$1i6$[email protected]..
    >
    > I installed a Spry Horizontal Menu Bar on one of my
    clients web pages and
    > everything was going fine.
    > But then all of a sudden the horizontal menu switched to
    vertical and I
    > can't
    > figure out how to undo this.
    > At this point even when I ask DW to insert a Spry
    horizontal menu bar onto
    > a
    > new page, it inserts a vertical one!
    > Did I mess up the .css somehow?
    > Thanks!
    > Greg in New Orleans
    >

  • Is it possible to make a menu in idvd. i like the possibility for example in the beginning of the dvd of two ours in the menu at the beginning van the dvd and between the scenes of the movie. thanks

    is it possible ta make a menu in idvd. I like different menu with linking to scenes in the movie. for example in a movie of two ours in the menu at the beginning of the movie so you can chose with part of the movie you wil play.  thank you for tips  (holland)

    djinte wrote:
    is it possible ta make a menu in idvd. ...
    iDVD has its own forum, here:
    https://discussions.apple.com/community/ilife/idvd
    what you're looking for is 'chapters', don't hesitate to make use of iM & iDVD's built-in Help.
    btw: no need to write extra-large ...

Maybe you are looking for

  • Internal server error while trying to run testfwktutorial.jsp

    dear all i am new to jdeveloper with OA extention i am tryibg to run the tutorial.jpr and i am getting this error in my browser. 500 Internal Server Error oracle.apps.fnd.cache.CacheException     at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:

  • Windows XP Using iTunes with Multiple Identities

    Hi. I'm using Windows XP and iTunes 7. I have my music files on an external drive, but all my library files are in My Music folders. I'd like to share all the music with other users of this PC (my kids) from their own identities. I was able to import

  • GETTING FORM OUT OF QUERY MODE (URGENT)

    I have a form which start in Query mode, user enter in say employee ID. If that employee exists than user bring its record else create a new record. What I did is start in query mode, when user enter employee ID, I check to see if record exist, if it

  • White screen of death solved??? HP DV2810ea

    I was getting a white screen and a constant beeping from my speekers. I can reflow and reball gpu's ok. However this wasnt the case. I noticed a Burnt out 8 pin chip under fan assembly. was wondering if anyone would know where i could find one or if

  • User unable to view Excel button in ALV grid. Has full authorization

    Hi All, A user in our copany is unable to view Excel button in ALV grid. Has full authorization to S_BDS_DS, S_ALV_LAYOUT. Please note that this is not the export to Excel button. Its the excel icon which enables the users to view the output in excel