How to create hovering effect?

Hi Experts,
I have to create hovering effect in portal. I want to show top level navigation to the users. I want to remove detailed navigation from the portal.
When any user will put the mouse over the top level navigation, then detailed navigation should appear as the result of hovering.
Can you please let me know how I can acheive it?
Regards,
EP

Hi,
Settings for hover effect given below:
Use of hoover effect:
The hover effect allows users to mouse over a first-level tab in top-level navigation in order to see the tab’s second level entries. This function is activated by setting a specific property of the Top-Level Navigation iView (com.sap.portal.topLevelNavigationiView).
Procedure
       1.      In the Portal Catalog, go to Portal Content ® Portal Users ® Standard Portal Users.
       2.      Right-click Default Framework Page (com.sap.portal.frameworkpage) and choose Open ® Object to display the page in the Page Editor.
       3.      Select the Top-Level Navigation iView and click Properties to display the iView’s properties in the Property Editor.
       4.      From the Property Category dropdown list, select Show All.
       5.      Browse to the Hovering property and enter the value True.
       6.      Click Save.
The hover feature must be disabled in portals whose Accessibility flag is enabled.
Thanks
Mona
Assign points if helpful

Similar Messages

  • Can anyone explain how to create this effect in Deamweaver and Fireworks?

    This site was oriinally done in dreamweaver - but the shadow
    effect was done
    outside of Dreamweaver. When I save to html and load into
    Dreamweaver it
    makes no sense to me.
    Can anyone explain how to create this effect in Deamweaver
    and Fireworks?
    http://www.fundflowsystems.com/test.php
    Thanks in advance,
    Joe

    Thank you so much...
    You is da bomb!
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Yes - a blank (completely blank) page.
    >
    > --
    > 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
    > ==================
    >
    >
    > "Ken Binney" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Murray, one more favor if you would be so kind...
    >> Do you recall how this page degraded in Safari?
    >>
    >>
    http://www.binney.us/table-allcode.htm
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Nope. Sorry. You need a Mac.
    >>>
    >>> --
    >>> 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
    >>> ==================
    >>>
    >>>
    >>> "Ken Binney"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Thanks Murray...
    >>>>
    >>>> Is there a way I can test for Safari on my
    PC XP ?
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> Fails in Safari, Ken.
    >>>>>
    >>>>> --
    >>>>> 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
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "Ken Binney"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Here is a solution requiring NO
    images.
    >>>>>> The CSS and the Javascript can
    easily made remote the page
    >>>>>>
    >>>>>> <!DOCTYPE HTML PUBLIC
    "-//W3C//DTD HTML 4.01 Transitional//EN"
    >>>>>> "
    http://www.w3.org/TR/html4/loose.dtd">
    >>>>>> <html>
    >>>>>> <head>
    >>>>>> <title>Shadow</title>
    >>>>>> <meta http-equiv="Content-Type"
    content="text/html;
    >>>>>> charset=iso-8859-1">
    >>>>>> <script
    type="text/javascript">
    >>>>>> var depth = 6 // in pixels
    >>>>>>
    >>>>>> // addLoadEvent t
    >>>>>> function addLoadEvent(func) {
    >>>>>> var oldonload = window.onload;
    >>>>>> if (typeof window.onload !=
    'function') {
    >>>>>> window.onload = func;
    >>>>>> } else {
    >>>>>> window.onload = function() {
    >>>>>> if (oldonload) {
    >>>>>> oldonload();
    >>>>>> }
    >>>>>> func();
    >>>>>> }
    >>>>>> }
    >>>>>> }
    >>>>>>
    >>>>>> addLoadEvent(function() {
    >>>>>>
    >>>>>> var a = document.all ? document.all
    >>>>>> document.getElementsByTagName('*');
    >>>>>> for (var i = 0;i < a.length;i++)
    >>>>>> if (a
    .className == "shadow") {
    >>>>>> for (x = 0;x < depth;x++) {
    >>>>>> var newSd =
    document.createElement("DIV")
    >>>>>> newSd.className = "shadow2"
    >>>>>> newSd.style.background = a.id
    >>>>>> newSd.style.width = a
    .offsetWidth + "px"
    >>>>>> newSd.style.height =
    a.offsetHeight + "px"
    >>>>>> newSd.style.left = a
    .offsetLeft + x + "px"
    >>>>>> newSd.style.top = a.offsetTop +
    x + "px"
    >>>>>> document.body.appendChild(newSd)
    >>>>>> }
    >>>>>> }
    >>>>>> }
    >>>>>> }
    >>>>>> );
    >>>>>>
    >>>>>> </script>
    >>>>>> <style>
    >>>>>> .shadow {
    >>>>>> border: 1px solid silver;
    >>>>>> padding: 2px;
    >>>>>> font: 10pt arial;
    >>>>>> position: relative;
    >>>>>> display: inline;
    >>>>>> background: white;
    >>>>>> z-index: 100
    >>>>>> }
    >>>>>> .shadow2 {
    >>>>>> overflow: hidden;
    >>>>>> position: absolute;
    >>>>>> filter: alpha(Opacity=15); /* modify
    to change the shade
    >>>>>> solidity/opacity, same as below */
    >>>>>> opacity: 0.1; /* firefox 1.5 opacity
    >>>>>> -moz-opacity: 0.2; /* mozilla
    opacity */
    >>>>>> -khtml-opacity: 0.1; /* opacity */
    >>>>>> z-index: 10
    >>>>>> }
    >>>>>> </style>
    >>>>>>
    >>>>>> </head>
    >>>>>>
    >>>>>> <body>
    >>>>>> <table width="800" border="0"
    align="center" cellpadding="0"
    >>>>>> cellspacing="0" class="shadow"
    id="#000000">
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> <tr>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> <td> </td>
    >>>>>> </tr>
    >>>>>> </table>
    >>>>>> </body>
    >>>>>> </html>
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>> "Joe"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>>
    >>>>>>> This site was oriinally done in
    dreamweaver - but the shadow effect
    >>>>>>> was done outside of Dreamweaver.
    When I save to html and load into
    >>>>>>> Dreamweaver it makes no sense to
    me.
    >>>>>>>
    >>>>>>> Can anyone explain how to create
    this effect in Deamweaver and
    >>>>>>> Fireworks?
    >>>>>>>
    >>>>>>>
    http://www.fundflowsystems.com/test.php
    >>>>>>>
    >>>>>>> Thanks in advance,
    >>>>>>>
    >>>>>>> Joe
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • How to create "Fisheye Effect" with Photoshop 10, on a Mac computer

    How to create "Fisheye effect" with Photoshop 10 on a Mac computer?

    One way : use the filter : correct camera distortion. Move the remove distortion slider towards left (barrel distortion)
    Or, first increase the canvas size to a square format bigger than the larger dimension of the image and play with the filter : distort, spherize.

  • Motion how to create 3d effect with a background and one primary object

    motion how to create 3d effect with a background and one primary object

    … like that?
    http://youtu.be/yOht1GJpEm4

  • How to create these effects? What is the most excellent effects resource on interwebs?

    I always stumble upon excellent arts with effects I have no idea how to create. I bet most effects are very elementary and easy to create, but I just don't know how.
    The most recent ones is this
    http://www.wiseidea.net/nightblack/images/2c.jpg
    How to create the "old" effect/stain? How about the fire glow+fire stain on paper?
    Besides that,
    What's the most excellent effects guides you've seen online with great application of effects to artwork?
    You don't need to answer all of them, any would be appreciated.
    Thanks!

    You may try and create overlays with raster images using opacity masks. Also try the blending modes.

  • How to create 'Headset' effect (pilots talking)

    Please listen to the sound of the pilots talking in this video over their headsets.
    /https://www.youtube.com/watch?v=mN8R6ZkrAjA&feature=youtu.be
    I'm trying to create a filter to mimic the sound of pilots talking over the headsets.
    Anyone know what settings I would use?
    I've tried the "Telephone receiver" and "answering machine" filters that come with Audition, but they just don't sound the same.
    Thanks!

    I have an Audition Template to mimic the effect of secured radio comms with noise ducking/driving, using native Audition Filters,  (PM if you want a copy of it, as I can't seem to be able to upload it here).
    Radio comms basically involve mono, bitcrushing, noise and signal issues.  I've consider all tools needed as a baseline.  You don't have to use them all.  New communications with strong signals will sound clear and need only subtle tweaking, while older or weaker signals can have more aggressive filter settings.  The real trick is both including and driving the noise introduced in system.
    Place the voice in Voice track 1.
    Generate a file of white noise for track 2 (Filters - Generate Noise)
    The plugin chain uses Native Audition filters.
    Voice track:
    First we add gain, if needed.
    Second, we turn stereo track to Mono.
    Then we run the Adaptive Noise filter with the settings (top slider to bottom) 32, 80, 7, 20, 20, 20, 0.  This creates a gating effect and produces gaps.
    Then we EQ, to create a lo-fi effect.  Tweak to your taste.
    Then we run the tube-modeled compressor.  Tweak to your taste.
    Finally we add a Notch filter, selecting the 200 Hz and Octaves drop down setting to get that high end chirp.
    Noise Track
    In the Noise track, we add an amplify filter.  A high gain will make the noise more dominate, and lower will make the voice dominate.
    We also have a Dynamics Processing plugin to be driven by the Vocals via side-chain.  On the settings tab, attack and release times must be quick (15ms - 84ms), and link the gain and level channels.
    Master
    We again add an amplifier to gain the overall mix
    A post EQ, tweak to your liking.
    A multiband compressor
    A hard limiter
    Play around with the file.  Turn off the effects and then add each one to see how they apply.
    Voice track settings:
    Noise track settings:
    Master Track Settings:
    Enjoy.

  • How to create fade effect?

    I use PSE8, and I am trying to find somewhere in the menu where I can create a fade effect on an image in order to use it as a background image in a website I am creating.  The Help menu was no help at all; all it did was to explain what it was but not how to do it. Thanks.

    Please provide more information about the effect that you are after. Are you looking for a vignette?
    Can you post a link to a site where this is used?

  • How to create sketch effect on photographs?

    Hi - I have photographs of mine that I would like to use as sketches in my textbooks. Do you know how I can
    create a sketch/drawing effect of photographs with photoshop? Many thanks for your help. Cheers, Schbang.

    Image > Mode > Grayscale
    Filter > Stylize> Find Edges
    30 seconds work!
    You can then experiment on the result with Image > Adjust > Brightness/Contrast (and possibly Threshhold).

  • How to Create Shadow Effect?

    How do youi create the shadow effect down the left and/or
    right edges of the main body of a website page, such as on this
    site ...
    http://www.kremedia.com/ ?
    Thank you!

    8)
    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
    ==================
    "Joe Makowiec" <[email protected]> wrote in
    message
    news:[email protected]..
    > On 13 May 2006 in macromedia.dreamweaver, Murray *ACE*
    wrote:
    >
    >> You cannot right click and save a background
    image....
    >
    > If you use a decent browser you can.[1]
    >
    > [1]
    http://www.mozilla.com/firefox/central/
    > --
    > Joe Makowiec
    >
    http://makowiec.net/
    > Email:
    http://makowiec.net/email.php

  • How to create 3d effect in adobe photoshop 6

    I cannot find the option to convert 2d images to 3d effect in adoble photoshop 6 please tell how to do this.
    I ask it in a website here

    This forum is only to discuss how the forums operate, not products
    If you go to the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the Adobe product you use

  • How to create 3d effect of the movie clip on mouse move

    Dear All
    I have done the research a lot but failed I need to give the effect in flash like this
    http://www.soft.se/#/sv/portfolio/web,single,kaffeakademi
    any one know how to do that please send me any hint or peace of code so i will get an idea
    Thanks in advance

    thanks for the reply, but the carousel is the different thing. the another example http://www.bestvisualization.com/portfolio.htm click on the portfolio button to see the effect with mouse
    this is my own website but i use this portfolio executable file from some where so i need the code how can i build my own effect like this
    i need to know the code or the softwate that make this effect on mouse move
    Message was edited by: RasBilgrami

  • How to create elastic effect on line

    Hi guys,
    i am working on an application that i plan to use as an Lightweight IDE.
    This is a small project that i just started.
    My question ..
    i need to create an elasticity effect... like a 'line streching' effect that can be seen in one of the IDE's called BLUEJ .
    The on 'lt click' is pressed mouse pointer can strech a line and when the 'lt click' is left a line is drawn.
    im using JInternalFrame on JDesktopPane. Is it possibe to do so.
    All help will be appreciated
    Regards
    Naren

    Maybe something along the lines of detecting mouse dragged with a MouseListener, saving the origin of the mouse click and then keep drawing a line from the origin to the current location of the mouse. Probably by calling repaint() and then override the paintComponent() method to draw the line.

  • How to create magnification effect around the mouse.

    Hi everybody,
    I have a problem which really freaks me out at the moment. I am working on an image sorting software and I try to implement a magnification glass. The problem seems to be easy: Create the Region OF Interest, "zoom" in ,display result at the MousePosition. I got it so far:
    bimage is a BufferedImage
                            Graphics2D gi = bimage.createGraphics();
                            gi.setClip(0, 0, bimage.getWidth(), bimage.getHeight());
                   gi.drawImage(bimage, 0, 0, null);
                   //paints red rectangle around mouse position
                   gi.setColor(Color.blue);
                   gi.draw(new Rectangle(mousePosX-100, mousePosY-100, 200, 200));
                   Rectangle zoomRect = new Rectangle(mousePosX-100, mousePosY-100, 200,     200);
                   gi.setClip(zoomRect);
                   gi.copyArea(mousePosX-100, mousePosY-100, 200,     200, 0, 0);
                   gi.scale(1.1, 1.1);
                   gi.translate(-20, -20);
                   gi.drawImage(bimage, 0, 0, null);What happens is, that as soon as I translate it to the right position, the copy area copy's the scaled copy and so on. It looks horrible. Does anyone knows how to make it better?
    Thx in advance.

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class Magnifier extends JPanel implements ActionListener {
        OverlayComponent overlayComponent;
        public void actionPerformed(ActionEvent e) {
            boolean magnify = ((AbstractButton)e.getSource()).isSelected();
            overlayComponent.setMagnify(magnify);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int cols = 3, rows = 3, pad = 20;
            int w = getWidth(), h = getHeight();
            double dx = (double)(w - 2*pad)/cols;
            double dy = (double)(h - 2*pad)/rows;
            // Draw ovals.
            Color[] colors = {
                Color.cyan, Color.magenta, Color.yellow, Color.orange
            for(int j = 0, count = 0; j < rows; j++) {
                double y = pad + j*dy;
                for(int k = 0; k < cols; k++) {
                    double x = pad + k*dx;
                    int index = j*cols + k;
                    Color color = (index % 2 == 0) ? Color.blue
                                                   : colors[count++];
                    if(count > 3) count = 0;
                    g2.setPaint(color);
                    g2.fill(new Ellipse2D.Double(x, y, dx, dy));
            // Draw grid.
            g2.setPaint(Color.red);
            for(int j = 0; j <= rows; j++) {
                double y = pad + j*dy;
                g2.draw(new Line2D.Double(pad, y, w-pad, y));
            for(int j = 0; j <= cols; j++) {
                double x = pad + j*dx;
                g2.draw(new Line2D.Double(x, pad, x, h-pad));
        private JPanel getContent() {
            overlayComponent = new OverlayComponent(this);
            JPanel panel = new JPanel();
            OverlayLayout overlay = new OverlayLayout(panel);
            panel.setLayout(overlay);
            panel.add(overlayComponent);
            panel.add(this);
            return panel;
        private JPanel getLastPanel() {
            JCheckBox checkBox = new JCheckBox("magnify", true);
            checkBox.addActionListener(this);
            JPanel panel = new JPanel();
            panel.add(checkBox);
            return panel;
        public static void main(String[] args) {
            Magnifier test = new Magnifier();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(test.getContent());
            f.getContentPane().add(test.getLastPanel(), "Last");
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class OverlayComponent extends JComponent {
        Magnifier component;
        BufferedImage image;
        Point loc;
        boolean magnify = true;
        OverlayComponent(Magnifier m) {
            component = m;
            addMouseMotionListener(mma);
        public void setMagnify(boolean magnify) {
            this.magnify = magnify;
            repaint();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            if(magnify) {
                if(image == null) {
                    int type = BufferedImage.TYPE_INT_RGB;
                    image = new BufferedImage(200, 200, type);
                    updateImage(new Point(getWidth()/2, getHeight()/2));
                int x = loc.x - image.getWidth()/2;
                int y = loc.y - image.getHeight()/2;
                g.drawImage(image, x, y, this);
        private void updateImage(Point p) {
            loc = p;
            Graphics2D g2 = image.createGraphics();
            g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
            double scale = 1.25;
            int x = (int)(scale*p.x) - image.getWidth()/2;
            int y = (int)(scale*p.y) - image.getHeight()/2;
            g2.translate(-x, -y);
            g2.scale(scale, scale);
            component.paint(g2);
            g2.dispose();
        private MouseMotionAdapter mma = new MouseMotionAdapter() {
            public void mouseMoved(MouseEvent e) {
                if(magnify) {
                    updateImage(e.getPoint());
                    repaint();
    }

  • How to create grainy effect?

    Hi there
    I'm putting together a film, much of which was filmed in low light and has a grainy quality to it.
    I actually really like the grainy quality - it looks like a really old photo - and I would like to re-create it on the other clips which are clearer.
    I've tried fiddling with brightness and contrast, and colour corrector, but am not quite getting there.
    Can anyone suggest a way I could make the other clips look like they were filmed in lower light, and make them grainier?
    Also, I believe there's a way to add 'old film' type scratches when you export - could anyone let me know how to do this too please?
    Thankyou!
    Hx

    There is a Noise generator what you can add to your video. Put it on a track underneath the video. Apply a Composite mode to the like above. Play with the noise controls. Turn down some of the values a lot, crank others up.

  • How to create glass effect??

    hi
    i wish to creat a mobile phone on screen and wish to know if it is possible to produce a glass screen?
    any help would be great
    thank
    martin

    Create an image which shows a glass effect. Then use this image as a transparent texture on a plane which is your glass.

Maybe you are looking for

  • RH8 for Word gives "not responding" message when I try to add a hotspot

    Good afternoon.  I have been trying to add a hotspot or jump to RoboHelp 8 Word with no luck.  My computer keeps freezing and in a few minutes I will see that Word is "Not Reponding" on the blue bar at the top of the screen.  Any ideas?  Thanks.

  • System stuck formatting dual-layer DVD

    I'm trying to format a dual-layer DVD but my system gets stuck in the very beginning "Writing image..." part of the formatting process (I waited at least an hour). If I click cancel, I get the warning: "Stopping now may produce an unreliable disc...o

  • Oracle Provider for OLEDB for 9.0.1 on WinNT

    Is the Oracle Provider for OLEDB in 9.0.1 missing ? I did not find it in the client nor in the server. I am using the OTN Download for installation. Thanks in Advance --Shirish                                                                          

  • Granting document rights to Acrobat Reader users

    I invested a few years ago in a full version of Acrobat (5.0.5, I know, it is somewhat dated now). Can this be used to save a document with forms that can be edited and saved by Acrobat Reader users? If not, do later versions of full Acrobat such as

  • Playlist Shuffle question - M Zen M: 3

    Hi - have a question on playlists and shuffling them. I have several playlists ranging from around 75 to 500 songs. I tend to play them in shuffle mode, and have noticed that some songs get played a lot, and some almost never. I assume that there is