 |
Please Note:
HierMenus is protected by copyright laws. Use of the HierMenus code requires a paid licensing agreement.
|
|
 |

|
 |
 |
|
home / documentation / reference / scrollimgsrcbot
ScrollImgSrcBot
- Description:
- The src, i.e., server location, of the default
graphic to be used for the more image in the bottom scroll bar.
- Value:
- String, null, or JavaScript expression that returns a String/null.
- Applies To:
- Menus.
- Browser Compatibility:
- ScrollImgSrcBot is supported in all browsers.
- Comments:
- "More" images are the (usually) triangular images that appear
within a scroll bar denoting the existence of more menu items for this menu.
ScrollImgSrcBot is the server location (URL) of the graphic that will be
used for the bottom scroll bar of the menu.

HierMenus provides several triangular graphics in its distribution file that
are suitable for use in menus, however designers are welcome to create their
own more images as appropriate. The graphics provided by HierMenus are located
in the images sub-directory of the distribution file, and bear names
such as HM_More_black_top.gif, HM_More_white_bot.gif, etc.
Note how the configuration parameter setting ImageDir interacts with
ScrollImgSrcBot. If ScrollImgSrcBot does not begin with http, then
ImageDir is added to the front of ScrollImgSrcBot to arrive at the
actual server location for the image.
- Examples:
// Ok:
ScrollImgSrcBot:"HM_More_red_bot.gif",
ScrollImgSrcBot:"http://myserver.com/myHMImages/HM_More_red_bot.gif",
ScrollImgSrcBot:(window.showMore)?"HM_More_blue_bot.gif":"myTop.gif",
// if the user defined variable "showMore" is true,
// then use "HM_More_blue_bot.gif
// Incorrect:
ScrollImgSrcBot:HM_More_green_bot.gif, // Strings must be quoted
ScrollImgSrcBot:'(window.showMore)?"HM_More_blue_bot.gif":"myTop.gif"',
// no quoted expressions
- Default:
- "HM_More_black_bot.gif"
- See Also:
-
ImageDir,
ScrollEnabled,
ScrollOver,
ScrollInterval,
ScrollBarHeight,
ScrollBarColor,
ScrollImgAltTop,
ScrollImgAltBot,
ScrollImgSrcTop,
ScrollImgWidth,
ScrollImgHeight,
ScrollBothBars,
ScrollHeightMin
|
|