Newbie... menu problem  :) Lit'l help plez

I'm trying to create a menu, that uses css and a bit of java, of which both my knowledge is minimal to say the least.
but... Im making slow progress. Basically my problem is the submenu components, when you mouse over the items that have a sub menu, show behind the main menu. I need the sub menu items to show on top of the main menu, so that I can see the sub menu items. I know this is some code in the java page, but do to my lack of java script, I'm a bit lost. Could anyone out there please help me fix this. Any and all suggestions are greatly appreciated!
below is the code to each defined document.
horizontal.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Horizontal Drop Down Menus</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript" src="horizontal2_files/drop_down"></script>
<style type="text/css">
@import "style2.css";
</style></head>
<body>
<ul id="nav">
  <li><a href="#">Home</a></li>
  <li><a href="#">Shade Sail Technology</a></li> 
  <li><a href="#">Shade Sail Fabrics</a>
    <ul>
      <li><a href="#">High Density Polyethylene(HDPE)</a></li>
      <li><a href="#">Fire Retardant High Density Polyethylene(FR/HDPE)</a></li>
      <li><a href="#">PVC Composite Fabrics</a></li>
       <li><a href="#">Warranties</a></li>
    </ul>
  </li>
  <li><a href="#">Dangers of UV</a></li>
  <li><a href="#">Architects / Designers</a></li>
  <li><a href="#">Application Gallery</a>
    <ul>
      <li><a href="#">Residential</a></li>
      <li><a href="#">Commercial</a></li>
      <li><a href="#">Schools</a></li>
      <li><a href="#">Playgrounds</a></li>
      <li><a href="#">Restaurants</a></li>
       <li><a href="#">Sports Venue</a></li>
      <li><a href="#">Auto Dealerships</a></li>
      <li><a href="#">Parking Areas</a></li>
      <li><a href="#">Resorts</a></li>
      <li><a href="#">Campus Designs</a></li>
       <li><a href="#">Parks & Recreation</a></li>
      <li><a href="#">Kiosks</a></li>  
    </ul>
  </li>
  <li><a href="#">External Links</a>
    <ul>
      <li><a href="#">SunWise Program</a></li>
      <li><a href="#">SkyShades USA</a></li>
      <li><a href="#">Skin Cancer Foundation</a></li>
      <li><a href="#">WeatherStopper </a></li>
    </ul>
  </li>
  <li><a href="#">Contact Us</a></li>
</ul>
</body></html> --------------------------------------------------------
the css document: style2.css
body {
     font: normal 10px verdana;
ul {
     margin: 0;
     padding: 0;
     list-style: none;
     width: 258px; /* Width of Menu Items */
     border-bottom: 1px solid #ccc;
ul li {
     position: relative;
li ul {
     position: absolute;
     width: 137px;
     left: 130px;
     top: 0;
     display: none;
/* Styles for Menu Items */
ul li a {
     display: block;
     text-decoration: none;
     color: #333366;
     background: #fff; /* IE6 Bug */
     padding: 5px;
     border: 1px solid #ccc;
     border-bottom: 0;
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
ul li a:hover { color: #21536A; background: #DDEEFF; } /* Hover Styles */
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
li:hover ul, li.over ul { display: block; }---------------------------------------------------------------------------
and finally the js file: drop_down.js
// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes;
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
window.onload=startList;
thanx again,
Kim

Java and Javascript are different languages. This forum is about Java. You are asking about Javascript.

Similar Messages

  • Spry menu problems. Please help.

    Hello,
    I am new to web design so please try and be patient with me . 
    I am trying to create a horizontal spry menu bar into a new page.  Even though I select horizontal, the menu is vertical.  I have read through many previous posts and FAQ'q, but cannot find the answer.  It is not just in IE, it is in every browser and dreamweaver itself.  I am using 5.5.
    UPDATE-- If I create the spry into a new blank HTML document, it works just fine. So I imagine it is something to do with the template?
    Heres the code:
    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: 0;
              padding: 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;
              width: 8em;
              float: none;
    /* 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
              border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: #EEE;
              padding: 0.5em 0.75em;
              color: #333;
              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
              background-color: #33C;
              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
              background-color: #33C;
              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-image: url(SpryMenuBarDown.gif);
              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-image: url(SpryMenuBarRight.gif);
              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-image: url(SpryMenuBarDownHover.gif);
              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-image: url(SpryMenuBarRightHover.gif);
              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;
    ul.MenuBarHorizontal {
              width:8em;
              margin: auto;
    And this is the HTML for the menu bar when insterted into a page:
    InstanceBeginEditable name="Header" -->
                <div class="Header">
                  <ul id="MenuBar1" class="MenuBarHorizontal">
                    <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
                      <ul>
                        <li><a href="#">Item 1.1</a></li>
                        <li><a href="#">Item 1.2</a></li>
                        <li><a href="#">Item 1.3</a></li>
                      </ul>
                    </li>
                    <li><a href="#">Item 2</a></li>
                    <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
                      <ul>
                        <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                          <ul>
                            <li><a href="#">Item 3.1.1</a></li>
                            <li><a href="#">Item 3.1.2</a></li>
                          </ul>
                        </li>
                        <li><a href="#">Item 3.2</a></li>
                        <li><a href="#">Item 3.3</a></li>
                      </ul>
                    </li>
                    <li><a href="#">Item 4</a></li>
                  </ul>
                </div>
                <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="Main Content" -->
    Thank you for any and all help!
    Nick

    Ok so I decided to make a nice menu through fireworks.
    This confuses me even further, how did you make a SpryMenuBar through FW?
    It now works, but the links to the drop down menu are not horizontal in the drop down menu.
    So it doesn't work
    And this is only when trying to enter it into the template, into a new HTML it works fine..So it does work
    Unforuntely I cannot post the website
    Well, our worries are over, there is no need to correct the problem, no one will ever see the website.
    Yes, I am being facetious.
    In all seriousness, you can upload the website to a temporary location. This way we will be able help you.
    Have a happy New Year!
    Gramps

  • N96 multimedia menu problem. Please help.

    I have a N96. The problem is that once i open the main menu and then i press the close button, (the button on the right) it opens the multimedia menu. If i then press the close button to close that, it close the multimedia menu but if i press it again it does the same again, kind of in a loop. If i press the left options button this now takes me back each step of the menu depending where i was. I've found that if once i've opened the main menu and gone further into any other menu, if i press and hold the options button down and the press the exit button once, then it will go back to the previous menu as it should. However, once i let go of the options button the mutimedia menu opens again. Also if i haven't got the key lock on, the main screen light stays on. If i lock the keys the screen does go darker but you can see the message flashing up on the screen as if i'm pressing a key. I've tried everything i can think of to sort this, factory reset and hard reset, also checked to see if the buttons are stuck down but they are not. nothing makes a difference. I had this problem once before, but after a few months one day it just worked normal again. Also i've just had the phone back a week from nokia repair as they repaired it after it suffered white screen of death after a recent upgrade i tried. all firmware and such is up to date.
    Please can somebody help, i really feel like throwing it through a window. Any help would be very helpful.
    thanks.

    I got the same problem on N95 8GB, after firmwareupdate and format massmemory, got new pc-suiit, and all.
    (but no c++ error, When i start up Map Loader it says "Waiting for Device". The USB mode on my phone is "Pc Suit", i have winxp pro)
    Then i remember from the update a half year ago, i need to "start and close" maps on my phone one's first, after that all work fine.
    Message Edited by kjello on 01-Jan-2009 04:37 PM
    Kjell O

  • Newbie - Basic Problem - Can anyone help?

    I can't seem to get video transitions to work on either .jpg's or .DV's - the effects are showing in gray. I'm sure it's something very basic. If anyone could offer a suggestion, I would really appreciate it.
    Thanks

    No -- you're reading a bit wrong. What you've read has to deal with something else...handles yes... but not what you want.
    Your issue stems from the viewer. It's the clip window on the left.
    When you load (dbl click) the clip from your browser (FCP's Browser window) it will automatically load into the viewer so you can choose the range you want to load into your timeline/sequence.
    IF you don't set in and out points in the viewer it will load the entire media into the timeline... thus, no 'handles.'
    Handles here are defined as media on either side of the edit that DOESN'T show up in the timeline.
    So --
    You should set in and out points that are at least 15 frames from the first and last frame of the viewer if you want to add a 30 frame (1 second) transition. 15 frame handle after the out of the outgoing clip and 15 frame handle before the IN of the incoming clip.
    Another way to do this...but again, maybe the NEXT step for you to learn after you've got the "handle" (I crack myself up) of the above technique is to use the trim tool in the timeline to give yourself the handles you want.
    Ok --
    Now - fade up from black.
    Two ways -
    1) Once the clip is in the timeline, dbl click it to load BACK into the viewer. This loads the TIMELINE clip, not the BROWSER clip... VERY important. Click on the MOTION tab in the viewer and down a bit you'll see opacity. Set keyframes for 0 and 100 over say 1 second or 2 seconds and you'll have a nice ramp.
    or
    2) Turn on the timeline overlays... looks like little mountains in the lower left of the timeline. Then use the PEN tool (p) and add keyframes directly on the clip in the timeline.
    Anyway -- good luck, and have fun -- (some people do this for a living and THEY never have any fun!!!)
    CaptM

  • Repainting problems of the Menu items in Oracle Help Navigator

    All,
    I am facing a strange problem when using Oracle Help for my application which is developed in Java,Swings.
    Whenever, I open Help for any component through my application, the menu items in the Help screen are not visible. They are not getting repainted. Only when user drags the mouse over the items, they are getting repainted and visible to the user. This has been raised as a bug by our testing people. I couldn't get any help in aspects of any errors/exceptions being logged when the action takes place.
    Where can I have the log files for Help window?
    Can anyone help me and guide me to the right solution in this regards.
    My environ is like this:
    Windows NT, JRE1.4, Oracle Help - ohj-jewt-4_1_16.jar,
    Thanks in advance for all.
    regards,
    Kishore.

    iweb2 navbar is rendered by javascript widget, therefore you can change navbar font style with javascript; this is an efficient way to change navbar font style.
    Copy and paste the following into your pages using HTML Snippet:
    <script type = 'text/javascript'>
    function changeNavbar() {
    navCSS = parent.document.getElementById('widget0-navbar');
    navCSS.style.fontSize = '0.75em'; // font size, change to less than 1em to change font smaller;
    navCSSbg = parent.document.getElementById('widget0-bg');
    navCSSbg.style.textAlign = 'center'; // navbar list alignment;
    clearInterval(chkNavbar);
    chkNavbar = setInterval('changeNavbar()', 500);
    note: You won't see the changes in iweb, but you will see the change when view the pages online - after publishing.

  • Problems with the help menu.

    Hi. I'm a new iMac user and have had problems using the help menu on my computer. Every time I click on help and search a topic I get a blank untitled window. Nothing ever opens up in the window and then the spinning beach ball comes up. It is only in the blank window and I am still able to use the computer normally. I am unable to close or force quit the program and have to restart to get rid of it. I have called tech support and spent over an hour on the phone with no help and ended up reinstalling the operating system. Still having the same problem. Anyone have some advice or have had a similar problem?

    Welcome to Apple Discussions!
    Try reindexing the hard drive via Apple menu -> System Preferences -> Spotlight.
    Drag the hard drive into the Privacy section, and the select it in that section, and select the minus sign in the bottom left corner below the field holding the drive.
    Click then on Spotlight every half hour to wait until the Indexing status no longer shows up.
    If Help still doesn't come up entirely, try clicking on the clear jewel in the upper right corner of the Help menu. It may reveal the search field. If it doesn't, quit from the Help Viewer application menu, and then go to com.apple.helpviewer.plist and delete it. Help should then load normally.
    If it still doesn't, try repairing permissions with Applications -> Utilities -> Disk Utility.
    In the end, if that still doesn't work, let us know, and we might suggest something else.

  • I am having a problem using the help menu in Adobe elements 5

    I am having a problem using the help menu in Adobe elements number five.
    When I open the help menu, the dialogue box defaults to an unreadable display font. Is there any way to change that default font? Using the help menus to find a solution is not possible for I cannot read what it is displaying.

    For product, there is an option in preferences where we can set fonts. There are two options: One is application font and other is system font. I am talking about elements 8 which I have but not sure that will solve your problem which is help related.
    Hope Help in 5th version is html which opens in Browser? Please confirm.

  • Help Mac menu problems

    Hello,
    I am french, my english is not very well, i am sorry !
    I have problems with the Help Mac menu. When I clik or tape a topic nothing is written. i have a white page. what's happened ? Is it erased ?
    Help me !
    Virginie

    Hi Marmotte, Welcome to Apple Discussions.
    This is a common issue and usually easily solved.See this FAQ on troubleshooting Help Viewer
    -mj
    [email protected]

  • I cannot find the next and previous button in iTunes get info menu? Is there anyone that has also experienced this problem that can help me please

    I cannot find the next and previous button in iTunes get info menu?
    Is there anyone that has also experienced this problem that can help me please
    I have the lates version of Itunes

    I have managed to figure out how to solve this problem, after looking around I saw a lot of people kept saying makesure it is list view however this still did not work, I found the only way for me get these buttons back was to change the Movie to a TV Show and only then did the "Next" and "Previous" button appear. Right Click> Get Info > Options > Media Kind and then Select TV Show, this is extremely inconvienent but the only way that I found that has worked so far.
    Hope this works for you too!!

  • I have an iPod Nano that is synced to my mac, but it is sent in for the battery issue. Anyway, I have bought a 2nd gerneration Ipod touch and I want to now sync it to my mac, but it does not show up in the left menu bar. Please help. Thanks All!

    I have an iPod Nano that is synced to my mac, but it is sent in for the battery issue. Anyway, I have bought a 2nd gerneration Ipod touch and I want to now sync it to my mac, but it does not show up in the left menu bar. Please help. Thanks All!

    http://support.apple.com/kb/TS1591
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • Menu problem with IE

    menu problems with IE connected with spry - see site:
    1.
    http://www.whatwomenwant-tv.com/index.html
    (horizontal menu bar - will not display fully, probably to do with
    flash)
    2.
    http://www.whatwomenwant-tv.com/about.html
    (horizontal menu bar swerves to the left)
    3.
    http://www.whatwomenwant-tv.com/streetinterviewswomen.html
    (vertical menu bars in questions are all over the page)
    thanks 4 help.

    I tried in Firefox 3 and IE7 and they both seemed fairly slow
    for any action to take place. But IE7 did seem pretty slugish.
    It seems that you're already determined what the issue is,
    you have waaaaaay too many menu items. Seems to me that that number
    of items don't belong in a menu. There are even menus that are too
    long to appear entirely on the page, so they can't be easily
    accessed without accidentally hiding the menus again, which I did
    several times. IN particular:
    Cartuchos > Technologica
    If you cannot change to a different format to show all of the
    items, then perhaps you can split up the menu so that you don't
    have too many at one time. I checked the code of your page and it
    seems that you've got a lot of other scripting going on there
    besides Spry, so is the issue with Spry or with everything else
    you're trying to do with that menu. If you can try to recreate the
    page with only the menu items on it (and not pulled in dynamically
    on the fly), and then add back to your page a bit a time, you might
    be able to find out what is really causing the delays.

  • Context menu problem in ADF 11g

    Hi All,
    A context menu problem puzzle me. Following is the source,
    =======================================
    <af:tree id="tree" value="#{treeTest.collectionModel}" var="node"
    contentDelivery="immediate"
    disclosedRowKeys="#{treeTest.treeDisclosedRowKeys}"
    rowDisclosureListener="#{treeTest.rowDisclosureListener}"
    rowSelection="single">
    <f:facet name="nodeStamp">
    <af:group id="g1">
    <af:image source="/image/#{node.treeLevel}.jpg" id="i1"
    inlineStyle="width:16px; height:16px; vertical-align:middle;"/>
    <af:outputText id="ddl" value="#{node.name}">
    <af:showPopupBehavior popupId="myPopup" triggerType="contextMenu"/>
    </af:outputText>
    </af:group>
    </f:facet>
    <f:facet name="contextMenu">
    <af:popup id="myPopup" popupFetchListener="#{treeTest.popupListener}"
    contentDelivery="lazyUncached">
    <af:switcher id="s1" facetName="#{treeTest.level}">
    <f:facet name="1">
    <af:menu text="menu 1" id="m1">
    <af:forEach items="#{treeTest.menuItems['0']}" var="menuItemss">
    <af:commandMenuItem text="#{menuItemss.name}"
    actionListener="#{bindings.onNodeClicked.execute}"
    disabled="#{!bindings.onNodeClicked.enabled}">
    </af:commandMenuItem>
    </af:forEach>
    </af:menu>
    </f:facet>
    <f:facet name="2">
    <af:menu text="menu 2" id="menu1">
    <af:forEach items="#{treeTest.menuItems['1']}" var="menuItemss">
    <af:commandMenuItem text="#{menuItemss.name}"
    actionListener="#{bindings.onNodeClicked.execute}"
    disabled="#{!bindings.onNodeClicked.enabled}">
    </af:commandMenuItem>
    </af:forEach>
    </af:menu>
    </f:facet>
    </af:switcher>
    </af:popup>
    </f:facet>
    </af:tree>
    ========================================================
    I want to get the commandMenuItem tag's information, i use following code in onNodeClicked method try to get it,
    FacesContext facesContext =FacesContext.getCurrentInstance();
    ELContext elContext = facesContext.getELContext();
    ExpressionFactory expressionFactory =facesContext.getApplication().getExpressionFactory();
    ValueExpression exp =expressionFactory.createValueExpression(elContext,"#{menuItemss.name}", Object.class);
    but the exp is null.
    Please help me to solve this problem.
    Thank you very much.
    Edited by: Yitao Li on Dec 4, 2009 1:06 PM

    You might need a #
    ValueExpression exp =expressionFactory.createValueExpression(elContext,"#{menuItemss.name}", Object.class);

  • Black screen & all menu items grayed out -help!

    Sorry folks, total AE nube here, in over my head already. Having just purchased AE CS3 I'm completely adrift.
    I was in the process of looking at & changing preferences when shortly thereafter my screen went All black. A friend suggested it may have something to do with the output display, which may be the problem, however, I have gievn up searching after 4 days trying different searches in the program help function with no joy.
    Apparently, I don't know "Adobe Speak" well enough to phrase the seach to get meaningful results. I did finally find that If I put the cursor at the very top of the screen & click I can then see the menu. Every dropdown list in the menu, is grayed out and no amount of pounding on the keys, gnashing of teeth, pulling hair, etc will allow me back in to the preferences where I suspect I misunderstood what the selection of "Cinema display" would do. Unfortunate that FCP 7 allows one to select that for a higher resolution view that I have in fact used before.
    If that was indeed my error, since even the preferences are grayed out, how does one reset preferences to factory default?
    OR
    Is this a problem of a different nature? The monitor works just fine in all other programs, so I don't bevieve that is the problem.
    Any help would be greatly appreciated.
    Ken

    Well,
    I just don't know why I keep buying this Adobe crap. Apparently, they must outsource all the programming to China, because it sure isn't written in a way that I can understand as an American. Like most of the big software companies, they do not provide either a clear path to or a coherent explanation of how to use the arcane & obtuse programming that makes up their fare. Of course, you never really know what you are getting into, because they don't make it clear just how difficult it is to learn or use.
    In their rush to make gobs of money, they seem to have forgotten that not everyone who purchases their crap has had enough prior experience to undestand the little known secrets of how to find out what to do when all goes wrong.
    It is the same mistake that many programmers the world over make day in & day out, they can't concieve that those who have no familiarity with the way they see how to make their software work, find their software unfathomable. THE NEWS FLASH IS THAT NOT EVERY ONE KNOWS WHAT YOU KNOW ABOUT HOW TO MAKE SOFTWARE WORK. The attitude seems to be: "Anyone who doesn't know the secrets of the brotherhood shouldn't be using it!"
    As one who once went through the rigors of obtaining a CS degree (and actually considered starting a software company), it became obvious (20 years ago) that the future was not how many tricks you could make the pony do, but rather how intuitive you could make the software to allow the intended user to operate it without having to know it's arcane secrets AND to make it fault tolerant and self healing as much as possible. The telephone is a reasonable analogy, very few people know how it works, but they sure can use it until the cows come home with very few operator errors. In short, the technology is virtually transparent to the user.
    I realize that company cultures rarely change unless an outsider is brought in to clean house and start afresh and that the likelyhood of that happening at Adobe is about the same as winning the Powerball lotto Jackpot 3 times in your life. I guess that makes me a modern day Don Quixote, but so be it. I also know that EVERY organization that does not change it's approach to the marketplace will eventually be replaced by some upstart who figures out a way to do it better.
    So, ladies & germs, I did what anyone who uses a telephone would do when you aren't making any progress, I hung up the phone (un-installed the program) and stopped trying to figure out the technology that keeps my screen black AND does not allow me to undo the prefs quickly, and with a new dialtone, I redialed the number (re-installed). A clever little monkey am I.
    If it happens again (or something similar) I'll bring my disk and man's best friend to the park for a stress bustin game of frisbee!
    Adobe, it really is the 21st century, and you have failed miserably at meeting the future of making software more transparent to the user !
    Ken
    P.S. - For the record, I've been in an altered state (call frustration) for 20 years worth of Adobe products, and the light at the end of their tunnel, IMO is an oncoming train.

  • Spry menu problem - CS6 Dreamweaver

    I wonder if anyone can help me with my spry menu problem which I have with a fixed 960px wide horizonal menu bar that has 8 items in it. The sub-menus don't seem to display properly when you click on them in that some of the submenus only show up at the end of the menu bar itself in Explorer browsers 8/9. Does anyone know of any code I can apply to fix this problem? I am new to spry menu features and so any help would be very much appreciated.

    Also validate the rest of the code in your pages to see if you have any critical errors that need fixing.  For example, a missing doc type declaration might explain Spry failures.
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    As an FYI, Adobe abandonded the Spry Framework late last year, after CS6 was released because Spry drop-menus don't hold up well on touch screen devices.   If you can't get satisfaction with Spry, try jQuery Superfish.  It's a better menu system.
    http://users.tpg.com.au/j_birch/plugins/superfish/
    Nancy O.

  • My MacBook can find my wifi says it has perfect signal and it's connected. But there is no internet and I've have had this same problem at my house my friends and wifi source I use. Has anyone had this problem or can help me with this thanks

    i have a MacBook pro. I'm trying to connect my Mac through wifi at my house, it shows my router says it's connected with full signal yet I have no internet. So I thought I would try it at my friends house but I had the same problem. the Internet connection and wifi were on, as our iPhones were working through wifi. And my friends Mac works via wifi at my house. Just mine dosnt has anyone had this problem or can help me with this problem thanks.

    Try this.
        Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204

Maybe you are looking for

  • Iby_ext_party_pmt_mthds is not being created from supplier open interface

    In 11i payment method the PAYMENT_METHOD_LOOKUP_CODE was stored on the po_vendors record.this value could be retrieved by : SELECT payment_method_lookup_code INTO v_temp_look_up FROM po.po_vendors WHERE Trim(UPPER (vendor_name)) = Trim(UPPER (var_ven

  • Execution of a Function module ?

    Hi, Could you please tell me how to execute a custom function module in which the import parameters are a couple of tables which has lot of fields. Do i need to give entries in all of the fields to execute or to debug the Function Module..?? Thanks i

  • How can you get out of a group text

    How can you stop a group message text?

  • Create Cost Centre with out co code

    Hello spa gurus, can you tell me is it possible to create a cost center with out co code, looks like co code is mandatory in cost centre master data. I want to create a general cost centre where i can use on all the co codes. is this possible? if yes

  • MD04-Function module

    Hi Gurus,               Is there any function module available for MD04 transaction code to do availability check. Can you check BAPI availability also? Thank you ANil