IIS - fly out menu/ layers
Asked By housecommunication
20-Jun-08 01:53 PM
I've created a menu with submenus using the layers/behaviors in FrontPage. I
am trying to do this without using any external sites for JavaScript or
anything. Anyway, this is what I created: http://devhrc/include/issuebank2.htm
The only problem is that how can I keep each of the main links (agriculture,
budget & taxes, children & families, etc) close together but then when the
user mouseover each of the words the list "expands" to make room for the
submenu drop down?
As you can see right now I have to create a bunch of extra space between
agriculture and budget & taxes so you can see the drop-down when it comes up.
Is there a behavior I can use to do this?
JavaScript
(1)
Symonds
(1)
Dynamicindex1
(1)
BB8C9B11E9B2
(1)
Agriculture
(1)
Behaviours
(1)
Mouseover
(1)
Submenus
(1)
Ronx replied...
The link cannot be viewed except on your computer.
Without seeing the page it is not possible to give any real advice, but
take a look at
http://www.rxs-enterprises.org/tests/menu/menu-behaviours.htm
which uses behaviours in the manner I suspect you have used them. Note
that the instructions are for expression web, but you may be able to
adapt them for FrontPage.
In my opinion, you should try the menu tutorial (and code) at
http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
This is much easier to implement and maintain.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
housecommunication replied...
Ok here's more what I'm looking for, I guess it's also called a "folding
tree":
http://www.dynamicdrive.com/dynamicindex1/switchmenu2.htm#
But the zip file doesn't work for me. Anyway I can do this without pasting
all the code, but instead using the FrontPage layers? I have everything
figured out but the "push" feature...

add-on, does anyone have any recommendations for a program? Thank you! FrontPage Programming Discussions JavaScript (1) Expression Web (1) FrontPage (1) DHTML (1) HTML (1) MVP (1) HRM (1) AnyLink trevorl.mvps.org Take a look at http: / / www.seoconsultants.com / css / menus / tutorial / - - Ron Symonds - Microsoft MVP (FrontPage) Reply only to group - emails will be deleted unread. http: / / www.rxs-enterprises.org / fp Or look at http: / / www.dynamicdrive.com / dynamicindex1 / - - _ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] _ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ And just to clarify, there are TWO things you must avoid - 1. Anything Java (it's actually javascript) - Java would bring a whole cascade of problems that you don't even want to those using screen assistive devices (also not desirable), or, for that matter, by anyone with javascript disabled (and there are measurable numbers of such people). - - Murray MVP Expression Web I have 1 var menu1 = 3Dnew Array() menu1[0] = 3D'<a href = 3D"http: / / www.javascriptkit.com"> JavaScript Kit< / a> ' menu1[1] = 3D'<a href = 3D"http: / / www.freewarejava.com"> Freewarejava.com< / a menu to use. Note that the code for the menu links is part of the javascript. This means the following - 1. The menu will not work when javascript is disabled. 2. That being the case, you are forcibly excluding the following classes of
Shared Border - JavaScript IIS I had someone create a flyout menu for my left navigation border. I inserted the code. When I preview the left.htm border file, the javascript flyout menu displays correctly but it doesn't show up at all on any other pages - totally blank. Can someone tell me what to do? FrontPage Client Discussions JavaScript (1) Canberra (1) Symonds (1) Joyce (1) Jeff (1) E5BE16D4B301 (1) Flyout (1) Relies (1) The javascript must be placed in all your pages - anything in the <head> of a shared border shared border. FYI, what you see in your pages now is what any user with JavaScript disabled will see, even when you get the menu working correctly - any menu that relies on Javascript to be seen should be avoided, unless there is a non-javascript alternative provided. - - Ron Symonds - Microsoft MVP (Expression) Reply only to group - emails will be deleted
HELP: ASP & Javascript testing procedures & methods IIS I have been developing web applications with ASP & Javascript for a long time. I have been using Visual Studio 2003.NET. While VS2003 is okay for intellisense of ASP & Javascript, it's still not that great. One of the cons of ASP Javascript is that they're both interpreted, which means one has twice the amount of work to do interms of syntax checking & semantic / runtime checking. Another bad thing is that ASP & Javascript doesn't have real object-oriented features, like public / private members of classes. All functions public and accessible which causes bugs. Does anyone know good testing procedures & methods of ASP & Javascript? I have thought about 2 procedures where testing is split into Javascript Client-side testing, & ASP Server-side testing. ASP testing can be done using AJAX to see if "Page cannot be displayed" or the correct results are returned. Javascript testing can be done to see if GUI-related things are displayed properly. This is
PRB JavaScript in ASP with Request.Form IIS PRB JavaScript in ASP with Request.Form Please help, I'm having a problem with JavaScript in ASP, where the ASP page crashes when I try to determine if data was ASP Crashes here. Why?!??! } %> That code crashes at the "toString()" call, which should not be. JavaScript says all "Object" types have "toString" in them, but both Request.Form("NAME") and Request QueryString("NAME") do not seem to have them. What can be done? IIS ASP Discussions JavaScript (1) QVRT (1) STATE (1) ASP (1) NAME (1) FORM (1) PRB (1) VBScript (1 csTST = Request.Form("STATE") ; . . I get a nice blank. The issue is that the ASP / JavaScript is not returning a string for Request.Form("STATE"). In fact, using "typeof(Request.Form Evertjan for helping, but I found the problem. With Request.Form and Request.QueryString with JavaScript, one needs to use Example: var csTST = Request.Form("STATE").Item; = ?Utf-8?B?QVRT Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress) keywords: PRB, JavaScript, in, ASP, with, Request.Form description: PRB JavaScript in ASP with Request.Form Please help