Chapter 17. Controlling Layers with JavaScript

CONTENTS

graphics/01icon01.gif

 

  •  Dynamic HTML: Layers and Scripting in the Browser
  •  Controlling Layer Visibility
  •  Controlling Layer Contents
  •  Dragging and Dropping Layers
  •  Controlling Other Layer Properties
  •  Summary

So far in this book, you have learned what CSS is and how it can be used as a sophisticated page layout tool. The next two chapters cover the dynamic aspect of DHTML how to use JavaScript to control CSS page content. The current chapter examines the various Dreamweaver behaviors for controlling layers, including determining visibility, changing layer content, and setting other properties; the next chapter will focus on performing these activities over time or in other words, animating your layer control.

Dynamic HTML: Layers and Scripting in the Browser

DHTML is a series of overlapping technologies for creating dynamic web pages pages capable of responding in complex ways to user interactions without using server-side processing, plugins, or other helper applications. CSS and JavaScript are the key players in DHTML, along with various proprietary technologies such as Netscape's JSS (JavaScript style sheets) and Microsoft's ActiveX filters.

Note

graphics/01icon07.gif

For more about CSS and Layers, see Chapter 14, "Using Layers for Page Layout."

About the DOM

The heart of live data page control is the DOM. The DOM, or Document Object Model, is a hierarchical description of the structure of objects in an HTML page. In scripting terms, an object is an element that can be accessed and altered by scripting commands. The browser window is an object, for instance; with scripting, you can determine what size it is, and what location (URL) it's currently displaying, and you can even tell it to change its location to a new URL. The document currently being displayed in the window is an object, and so is a form sitting in the document, and each input field inside the form. A JavaScript statement like

window.document.theForm.textField1.value="Hello world"

enables you to climb up the document "tree" to talk to a text field inside a form, inside the document that is currently inside the browser window, and finally to change that text field's value. By accessing that value, you have just navigated the DOM.

Like everything else about computers, the DOM develops and has versions. Basic form access, like that shown here, is part of the Level 0 DOM. The more total page access used for Dynamic HTML requires the more developed Level 1 DOM. Only browsers 4.0 and above can understand the Level 1 DOM; therefore, only those browsers can handle DHTML.

DOM Incompatibility

The DOM is important to you because all DOMs are not the same. The single biggest problem facing most DHTML developers is that the Netscape DOM the hierarchy you must use to access page elements in that browser is very different from the Internet Explorer DOM. The IE DOM is more sophisticated and more in line with the official Level 1 DOM standards set by the W3C. Though the Netscape 6 DOM is closer to the standard than the Netscape 4 DOM, it's still not the same as the IE DOM. This means that, even if you consider only these two major browsers, you have three different DOMs to deal with.

In general, DHTML authors have a choice of the following:

  • Pick one browser to design for, and ignore the rest.

  • Try to be as inclusive as possible by using only features that work everywhere.

  • Try to be reasonably inclusive but also use new features, by putting two or more sets of code in each page, each directed at a different browser.

Dreamweaver's DHTML Authoring Strategy

One of the reasons Dreamweaver is popular as a DHTML authoring tool is that it shields designers from most of these compatibility problems. By default, it writes its layer code using the cross-browser <div> tag. All of its layer-related behaviors are written with the proper JavaScript to work as well as possible in both major browsers. DHTML features that are purely browser- or platform-specific (such as the IE/Windows filters and page transitions) are either not included or not emphasized in the interface.

You can never be completely shielded, however. Certain items will display differently across browsers and across platforms in different browsers. Certain behaviors will behave differently in different browsers or they won't behave at all, despite Dreamweaver's robust coding. This chapter focuses on how to use Dreamweaver tools for dynamically controlling layers. Be aware, as you go through it, that not everything you do will work equally well in all browser/platform situations.

Controlling Layer Visibility

One of the simplest, and most reliable, layer properties you can control with scripting is visibility. By dynamically hiding and showing layers, you can create pages that store much more information than is visible at any given time. The designer's buzzword for this is nested content. Nested content can include contextual information popping up where needed, drop-down navigation menus, and different sets of body content that display as users click navigation controls. The possibilities are limited only by the designer's imagination and ingenuity.

You control layer visibility in Dreamweaver with the Show-Hide Layers behavior. As Figure 17.1 shows, it's simple and straightforward to use.

Figure 17.1. The interface for Show-Hide Layers behavior.

graphics/17fig01.gif

Note

graphics/01icon07.gif

Visibility control as scripted by Dreamweaver is supported by Netscape Navigator 4 and 6, IE 4-6, and Opera 5 6 across platforms.

The Basics of Showing and Hiding Layers

As with any behavior, start by creating the layer to show or hide, and selecting the object that will trigger the visibility change. Showing and hiding can be triggered by rollovers, mouse clicks, form data changes, or even pages loading. Then follow these steps:

  1. In the Behaviors panel, choose the Show-Hide Layers behavior.

  2. In the dialog box that appears, select a layer from the list.

  3. Choose the visibility state you want it to have.

  4. Repeat steps 2 and 3 for any other layers you want to change with this instance of the behavior.

Note that you can change the visibility of as many layers as you like, in this one dialog box, with just one instance of the Show-Hide behavior. If you have three alternate content layers, for instance, one instance of Show-Hide will show one content layer and hide the other two. (That's the scenario being illustrated in Figure 17.1.) Here are a few other tips.

Setting Visibility Versus Changing Visibility

It's important not to confuse the use of JavaScript to change a layer's visibility with the use of HTML to assign the layer's initial visibility. You assign the latter through the Property inspector or Layers panel (see Figure 17.2). If you want your layer to be invisible from the moment the page starts loading, set its visibility to be hidden here. Only if you want your layer's visibility to change based on user interaction or browser activity do you need to use the Show-Hide Layers behavior.

Figure 17.2. Setting layer visibility in the Property inspector or Layers panel.

graphics/17fig02.gif

Note

graphics/01icon07.gif

What's the difference between setting the property initially and using the behavior to set it onLoad? Behaviors that execute onLoad will execute only after the page has finished loading. You can, for instance, create a loading screen by making a layer containing the word Loading, and setting it to start out visible, but become hidden onLoad.

Showing, Hiding, and Default

When you choose the Show-Hide behavior, you have three visibility choices. Show and Hide are self-explanatory. Default sets the visibility state to inherit. (See Chapter 14 for a full discussion of inherited visibility.)

Choosing Not to Show or Hide a Particular Layer

What if you're in the Show-Hide dialog box, and you've selected a particular layer and set it to show or hide, and then you realize you had the wrong layer chosen? You don't have to cancel the whole operation. Just choose the same option for the same layer again to toggle it off. If you've set the layer "Fred" to "show" by mistake, for instance, just leave Fred selected and click the Show button again.

Working with Invisible Layers

After you start working with this behavior, you are likely to run into the following situation. You've created a layer that will start out invisible, until the user clicks a button or mouses over something that makes it show. How do you continue working with the layer in Design view, now that it's invisible? One solution is to leave it visible until you've finished editing the page. The very last thing you'll do before saving, closing, and uploading the file is use the Property Inspector or Layers panel to set the layer's visibility to Hidden.

For any of you who have less-than-perfect memories, however, this is a dangerous idea, because it's easy to forget that last step when you're facing down a deadline and have a million things to do. Instead, use the Layers panel to select your hidden layer. Clicking a layer's name in the panel will select it, and as soon as it's selected, it will become visible and will stay visible as long as you're editing its contents. As soon as you deselect it, however, it will disappear again. Making the layer temporarily visible in this way doesn't change the HTML code at all (that is, the code still defines the layer as being invisible), so there's no danger of it getting uploaded and displayed on the web improperly (see Figure 17.3).

Figure 17.3. Selecting an invisible layer in the Layers panel to make it temporarily visible in Design view.

graphics/17fig03.gif

Exercise 17.1 Creating a Drop-Down or Cascading Menu

In this exercise, you'll create one of the most popular hidden-layer effects, a graphic menu bar with menus that appear when the mouse rolls over topics on the menu bar. This sort of menu is called a drop-down menu when the menu bar is placed horizontally across the top of a page (like the menu bars in standard applications), and a cascading menu when the menu bar is vertical and the menus appear to the side. All files for the exercise are located on the CD in the chapter_17/menus folder.

If you haven't done so already, copy the chapter_17 folder to your hard drive and define a site with that folder as the local root folder.

  1. Start by opening dropdown.html and examining its contents and structure. This file contains four layers one for the menu bar and three for the menus that will appear from it. The three menu layers are nested within the main menu bar layer, so the whole menu system can be repositioned by moving only the main layer. Preview the file in a browser and you'll see that the first of the menus already contains rollovers for each entry (see Figure 17.4).

    Figure 17.4. The dropdown.html file, before any Show-Hide Layer behaviors have been applied.

    graphics/17fig04.gif

  2. When working in depth with layers, an important habit to get into, is giving them names you'll recognize when you see them in a dialog box or inspector. Before proceeding with the scripting in this exercise, take a moment to rename the layers. Name them "main," "books," "music," and "video."

  3. The three books, music, and video layers should initially be invisible. Using the "eyeball" column in the Layers panel, make the books, music, and video layers invisible by clicking until the closed eye icon shows (see Figure 17.5).

    Figure 17.5. The Layers panel for dropdown.html, with layers renamed and "eyeballs" closed, signifying that the layers are hidden.

    graphics/17fig05.gif

  4. You want each menu to appear when the user mouses over the appropriate title in the menu bar. This means attaching the Show-Hide behavior to the three main graphics in the menu bar. Start with the BOOKS image.

    • Select the image.

    • Open the Behaviors panel, and choose Show-Hide Layers from the actions list.

    • In the dialog box that appears, from the list of layers, find "books" and set it to "show" (see Figure 17.6).

      Figure 17.6. The Show-Hide Layers dialog box, showing the "books" layer.

      graphics/17fig06.gif

    • When you're done, click OK to close the dialog box.

    After you've applied the behavior, check the Behaviors panel to make sure the (onMouseOver) event trigger is chosen. (Remember to use the event trigger that appears in parentheses, to ensure maximum cross-browser compatibility. For more on this, see Chapter 16, "Getting Interactive with Behaviors.")

    Preview in Browser to make sure the behavior is working. Then repeat the above procedure for each of the other two menu topics.

  5. After you've applied all three behaviors, the menus should appear on cue but they never disappear. The mechanics of making that happen aren't difficult it's just a matter of applying another Show-Hide behavior. But what event should trigger the behavior? That's a matter of strategy.

    One strategy is to make each menu button (BOOKS, MUSIC, VIDEO) trigger its own menu to show and the other menus to hide. To accomplish that, select one of the menu title graphics BOOKS, for instance and, in the Behaviors panel, double-click its Show-Hide behavior to edit it. For the BOOKS graphic, the books layer should already be set to show. Select the music layer and set it to hide; then set the video layer to hide also. Using this one behavior, you've now created a script that shows one menu and hides the other two (see Figure 17.7).

    Figure 17.7. The Show-Hide Layers dialog box for the BOOKS menu title, set to show the books layer and hide the other two menu layers.

    graphics/17fig07.gif

    Repeat this process for each of the three title graphics. Rolling over any menu title should show that title's menu and hide the other two menus.

    When you're finished, check out the result in the browser. Assuming that your users will check out each of your menus and then choose a destination from one of them, your menu system should work perfectly. There's one niggling interface flaw remaining, however. What if your visitors check out all the different menus, and then decide not to choose a destination from any one of them? After the menus have started showing, there's no way to get all three of them to hide. Again, this is a matter of strategy. What event can be used to trigger all menus hiding?

    A sneaky solution is to put another layer behind all of the menu layers, fill that layer with an invisible image, and set that image to trigger all menus hiding when it is rolled over. Figure 17.8 shows this happening.

    Figure 17.8. Adding a large layer behind the menus, to be used in triggering all menus to hide.

    graphics/17fig08.gif

  6. Start by drawing a new layer. Make it large enough to cover the entire area of your menu bar and menus. While you're at it, jot down its width and height from the Property Inspector. (Don't nest the background layer in with the main layer, or the effect won't work.) Because it will sit behind the other layers, as a kind of invisible background for them, name it menubg.

    Arrange the new menubg layer behind all the other layers by going to the Layers panel and dragging it to the bottom of the list of layers.

    With the cursor inside this new layer, use the Image object from the Insert bar to insert trpix.gif. This transparent, single-pixel GIF image is located in the chapter_17/menus/images folder with the rest of the image files for this exercise. Set the width and height of the image to match the dimensions of your layer.

  7. With this large transparent image selected, go to the Behaviors panel and add another Show-Hide Layers behavior. Set this behavior to hide all three menu layers. Set the triggering event to onMouseOver or (onMouseOver).

    When you're finished, preview the page in a browser. When a menu is showing, moving the mouse away from the menu should hide all menus.

    What's happening here? When the mouse rolls over the transparent image, all menus will hide. But when the mouse is over another image, in another layer, which is in front of the transparent image, its event handler is disabled. So, effectively, you've created a trigger that will hide all menus only when the mouse is in the vicinity of the menu system but not actually over any menus or the menu bar.

    Should you use onMouseOver or (onMouseOver) as the trigger for the transparent image? As was discussed in Chapter 16, any time an <img> tag is selected, you have a choice of event triggers with or without parentheses. Choosing a trigger with parentheses will add the behavior's function call to an <a> tag surrounding the image (and will even create the <a> tag, if necessary). Choosing a trigger with no parentheses will add the function to the <img> tag itself. Since Netscape 4.x does not support event handlers for <img> tags, it's safer to use the triggers in parentheses. But adding an <a> tag also causes the cursor to change to a pointing finger. This is the user's cue that a link is present. In the case of your menu system, users are going to be confused if, any time the mouse gets anywhere near the hidden menus, the cursor changes to indicate a link. That's bad interface design.

    For this exercise, try the menu system out both ways with onMouseOver and (onMouseOver). See what the difference means to you. Figure 17.9 shows what the user will see if you choose the safer (onMouseOver) event handler.

    Figure 17.9. The pointing finger cursor appearing over empty space, if an <a> tag is added to the transparent image behind the menus.

    graphics/17fig09.gif

    Note

    graphics/01icon07.gif

    To access the nonparenthetical onMouseOver trigger, set the event handlers pop-up menu to show events for IE 4.0.

  8. Optional challenge: Can you see how the menu system you've just created could function as a vertical menu bar with cascading menus, without any change in scripting? The only changes required are layout changes altering the table structure of the main layer, the relative positions of the various menu layers, and the dimensions of the invisible image and layer in the background. See if you can create a sideways cascading menu from this file. If you get stuck, check out cascading_finished.html, in the chapter_17/menus folder for a completed example. Figure 17.10 shows a cascading menu system in action.

    Figure 17.10. The dropdown menu system, redesigned as a cascading menu.

    graphics/17fig10.gif

Working Smart with the Show-Hide Behavior

The actual mechanics of applying this behavior are not complicated. However, working with invisible page elements brings up a host of questions that you'll undoubtedly stumble across when you least expect them. Here are a few points to consider.

Downloading and Invisible Layers

Any content within an invisible layer is still considered part of your page. It will download when the page downloads. This has all sorts of ramifications. If your page contains many layers that are initially invisible, and if those layers have substantial content in them, your page will take a while to download even though it looks like a simple, fairly empty page. If a user clicks a button that makes a layer visible, and that layer's contents haven't finished downloading yet, he'll experience a delay. After the page has finished downloading, however, layers that become visible will display immediately. In essence, you've preloaded the contents of those layers.

Triggering JavaScript Actions Within Invisible Layers

Because layers can contain just about anything, your layers might include buttons or text links that have their own behaviors attached to them. Be aware that triggers won't work if a layer is invisible. If you have a rollover set to open a new window when the mouse moves over it, and that rollover is hidden in an invisible layer, no visitor is going to accidentally trigger the new window opening by moving his mouse over that hidden item.

Media Objects in Invisible Layers

Embedded video, audio, Flash movies, and other media objects can be placed in layers (see Chapter 19, "Plugins, ActiveX, and Java," for more on this); but this limits the functionality of the layers. Depending on the browser, the platform, and the media plugin involved, the layer might not become properly invisible, or it might not be possible to change layer visibility with scripting. If you want to use media objects in conjunction with DHTML effects like this, test your pages carefully in all target browsers.

Controlling Layer Contents

An alternative approach to putting nested content on pages is to change the contents of a single layer, instead of hiding and showing multiple layers. In Dreamweaver, you do this with the Set Text of Layer behavior.

Note

graphics/01icon07.gif

As coded by Dreamweaver, the Set Text of Layer behavior works in IE 4+, Netscape 4.x, and Netscape 6.x. It will not work in Opera 5-6.

The Basics of Setting Layer Text

The Set Layer Text behavior is tucked away in the Set Text submenu of the Behaviors panel's Actions pop-up menu. Choosing it brings up a dialog box in which you can choose any of your document's layers and enter any text you want to appear in that layer (see Figure 17.11). Whatever you enter here will replace the existing layer contents regardless of the contents. You can even change the contents of the layer containing the object the behavior is attached to. If you leave the dialog box's input area empty, the contents of the specified layer will be deleted.

Figure 17.11. The Set Text of Layer behavior in the Behaviors panel Action list, and the dialog box it calls up.

graphics/17fig11.gif

Working Smart with Set Text of Layer

What can you do to really take advantage of this behavior?

Setting More Than Text

Despite its name, Set Text of Layer is not limited to text effects. You can use it to put almost any content into a layer, by entering HTML code rather than straight text into the input field of the dialog box. Code such as

<h1>Welcome!</h1>  <p>Are you ready for the <b>big</b> moment?</p>

will display a formatted text message in the specified layer. Tables and images, links, and forms can all be written into layers using this behavior. A more accurate description for the behavior might be "Set HTML Content of Layer."

Here are a few tips to consider when using Set Text of Layer.

Watch Those Quotes

Whatever text or HTML you enter in the dialog box will be inserted into the behavior's function call, like this:

onClick="MM_setTextOfLayer('Layer1','','Hello World')"

If you have set your Code Rewriting Preferences to URL-encode special characters and attribute values, any HTML source code you enter will be inserted into your page code looking like this:

onClick="MM_setTextOfLayer('help','','%3Cimg src=%22duck.gif%22  width=%2250%22 height=%2250%22%3E')"

While this code will work perfectly fine in a browser, it isn't too readable if you later want to hand-edit your HTML. You can avoid this mess by going to Edit > Preferences > Code Rewriting (Mac OS X: Dreamweaver > Preferences > Code Rewriting) and disabling both Special Characters options the Encode Special Characters in URLs and Encode <, >, &, and " in Attribute Values Using & options. With these options deselected, Dreamweaver will escape all quotes with \ and leave all other characters alone. If you do this, however, you must only include single quotes in your HTML code. This code, for instance, will break the behavior:

<img src="duck.gif" width="50" height="50">

But this code will work fine:

<img src='/books/1/75/1/html/2/duck.gif' width='50' height='50'>

It will be inserted into your page code as the following function call:

onClick="MM_setTextOfLayer('violin','','<img src=\'duck.gif\'  width=\'50\' height=\'50\'>')"

For a full discussion of functions and function calls in Dreamweaver behaviors, see Chapter 16. For more on the Code Rewriting preferences, see Chapter 33, "Writing Code in Dreamweaver."

Avoid Hand Coding

If you want to insert HTML formatting using Set Text of Layer, but don't want to type all that code yourself, work smart with Dreamweaver. Create the desired display in Design view, either in the same file you're working on or in a temporary file; then go to Code view and copy the code from there. Open the Set Text of Layer dialog box, click in the input area, and paste. Remember, though, that Dreamweaver always encloses tag attributes in double quotes. So if you have disabled the Special Characters options as described earlier, you'll have to replace all double quotes with single quotes, either by hand or using the Find & Replace command, before the behavior will work.

Don't Include Media Objects

Browsers won't display embedded media properly when the <embed> code appears as part of this command. Media objects and layers often don't mix well.

Exercise 17.2 Setting Layer Text to Display Context-Sensitive Information

This exercise builds an interactive illustration that puts different data in an information layer depending on what part of the illustration the mouse rolls over. All the files for the exercise can be found in the chapter_17/violin folder on the CD.

  1. Open and examine violin_write.html. This file, pictured in Figure 17.12, presents the user with a picture of a violin. Image map hotspots will be used to trigger a behavior that puts different information in the help layer as the user's mouse rolls over those parts of the illustration. If you browse this file, you'll see that some of the hotspots already trigger basic text-only information to appear. You'll be adding the same behavior to the remaining hotspots and then dressing up the way the contextual information displays. (To see the final presentation in action, browse violin_write_finished.html.)

    Figure 17.12. The violin_write.html presentation as it should appear in the browser when complete.

    graphics/17fig12.gif

  2. Select the hotspot at the top of the violin picture. Open the Behaviors panel and choose Set Text of Layer from the Actions list. In the dialog box, choose the help layer from the pop-up menu, and type the word Scroll in the input field. After you have finished, make sure the event triggering the action is onMouseOver. Figure 17.13 shows the dialog box with information entered.

    Figure 17.13. The Set Text of Layer dialog box, set to enter a simple text message in the help layer.

    graphics/17fig13.gif

    You also need to blank out the help layer when the mouse rolls off of the violin scroll. With the same hotspot selected, add another instance of the Set Text of Layer behavior. Choose the help layer from the pop-up menu again, but this time leave the input field blank (enter no text). When you're done, change the trigger event to onMouseOut.

    Repeat the procedure for the hotspot directly below this one, configuring it to show the word Neck onMouseOver. Make sure you preview in the browser, to make sure you've coded the effect properly, before proceeding to the next step.

  3. Now make the Scroll and Neck messages a bit fancier. Select the top hotspot, and double-click its onMouseOver behavior to edit the text that will appear. Replace the original message with this code:

    <h1>Scroll</h1>  <p>Scrolls are curly and brown, and have wooden pegs sticking  out of both sides.</p>

    Close the dialog box and Preview in Browser. Rolling over the violin scroll should now display information like that shown in Figure 17.14.

    Figure 17.14. The Set Text of Layer behavior used to display HTML-formatted text.

    graphics/17fig14.gif

  4. After you've verified that your behavior is working, check your code to see how the HTML was inserted into the function call. (You can do this quickly by going to Code and Design view and selecting the hotspot in the Design View portion of the Document window.) Depending on how your URL encoding preferences are set, you might see a mess like this:

    <area  onMouseOver="MM_setTextOfLayer('violin','','%3Ch1%3EScroll%3C/h1%3E%0D%  3Cp%3E Scrolls are curly and brown, and have wooden pegs sticking out  of both sides.%3C/p%3E')" shape="rect" coords="65,3,145,89" href="#">

    To clean up this code, go to Edit > Preferences (Mac OS X: Dreamweaver > Preferences), and choose the Code Rewriting category. Deselect both Special Characters options. After this is done, return to the Behaviors Panel and double-click the scroll hotspot's Set Text of Layer behavior to open its dialog box. You don't need to change anything in the dialog box; just click OK. Check your code again, and you should see a more readable function call than before:

    <area  onMouseOver="MM_setTextOfLayer('violin','','<h1>Scroll</h1><p>  Scrolls are curly and brown, and have wooden pegs sticking out of  both sides.</p>')" shape="rect" coords="65,3,145,89" href="#">
  5. For the Neck hotspot, use Dreamweaver to help write the formatted code. Create a new Dreamweaver file, and save it in the chapter_17/violin folder as temp.html.

    In temp.html, type the following text:

    Neck  Violin necks are long and skinny, and since they're made of wood they're not much good  graphics/ccc.giffor swallowing.

    Now use the Property Inspector to format the first line as <h1> and the rest as <p>. Go to Code view, select all the HTML code for the formatted text, and copy it. (If you copy directly from Design view, you'll get only the text, not the formatting code.)

    Back in violin_write.html, select the Neck hotspot and open its Set Text of Layer behavior for editing. Delete the contents of the input field and paste in the HTML code from the temporary file. Preview in Browser again; rolling over the Scroll and Neck hotspots should display similarly formatted text in the help layer. If you changed your Code Rewriting preferences in the previous step, your page's source code should contain a nice, readable (non-encoded) chunk of HTML in the Neck hotspot's function call.

  6. To make things even fancier, replace the <h1> title with a GIF image, again using the temp.html file as a handy code-creating workshop.

    Open temp.html (or bring it to the front) and go to Code and Design view. In the Design portion of the Document window, delete the heading, and in its place insert the image scroll.gif. Figure 17.15 shows how the revised scroll message should appear in the temp file.

    Figure 17.15. Creating a fancier chunk of display information in temp.html.

    graphics/17fig15.gif

    If you have disabled URL encoding in your preferences, you'll need to replace all double quotes with single quotes. To do this, go to Edit > Find and Replace. Set your search parameters to Current Document and Source Code. Search for double quotes (") and replace with single quotes ('). Since this is only a temp file, go ahead and click the Replace All button to perform the search quickly.

    When this is complete, activate the Code view portion of the Document window, and select and copy all the code for the image and text. Then go back to violin_write.html, open the Scroll hotspot's behavior for editing, and replace its contents with the new code.

  7. Preview your violin page in the browser. If you entered your code correctly, you should see a result like that shown in Figure 17.12. If your browser preview doesn't work properly, double-check the code for your page. The scroll hotspot's event handler should contain escaped single quotes.

    Note

    graphics/01icon07.gif

    Let Dreamweaver's color coding work for you. If your pasted code contains incorrect quote marks, the improperly terminated string literals will turn blue. If the quote marks are correct, the entire function call (everything after onMouseOver=) will be pink.

  8. If you want to complete the violin-browsing experience and get some practice with this behavior, repeat the previous steps to dress up the rest of the violin hotspots. All the required GIF images are in the chapter_17/violin folder.

Using CSS Layer Styles to Format Text

A lovely, efficient way to put nicely formatted text into a layer without having to enter and reenter the HTML formatting for each new set of text is to assign a custom CSS class to the layer itself. It works this way (see Figure 17.16):

Figure 17.16. Setting up and applying a CSS class to control the formatting of a layer that will have its content set dynamically.

graphics/17fig16.gif

  1. Create the layer you're going to be targeting with the behavior.

  2. Using the CSS Styles panel, create a new custom class. Include any text formatting, positioning, or layer formatting you like in this style.

  3. In Design view, select the layer and apply the style to it.

After this is done, whenever you Set Text of Layer, you need to enter only the text itself. All formatting will be supplied.

Set Text of Layer or Show-Hide Layers?

Repeatedly setting the text of a single layer can create a similar effect to starting with a stack of hidden layers and showing them one at a time. Why choose one method over another?

  • Loading and preloading. If all of the document's content is present when the page initially loads (as it is when using Show-Hide Layers), it will all display immediately when called on. Depending on your project, you might decide that this is a good thing, or not. If you know ahead of time that users are probably going to access all the content, you'll want to download it as soon as possible so use Show-Hide Layers. If you think users will probably want to access only one or two layers' worth of contents, you might not want to make them wait for the other layers' content to download so use Set Text of Layer.

  • Simple text changes. If your content all consists of similarly formatted text, it will probably be more efficient to create and edit content using Set Text of Layer. You can use a CSS style applied to the layer to control formatting, and need only enter unformatted text in the behavior's dialog box.

  • Different content, identical layers. If your content will all appear in the same position on the page, it's easier to format, resize, and position one layer than several. Use Set Text of Layer.

  • Browser compatibility. Setting layer text as it is scripted in the Dreamweaver behavior is supported by all current versions of Netscape and IE, but not by Opera. If this extra browser support is important to you, stick with Show-Hide Layers.

Dragging and Dropping Layers

It's easy in Dreamweaver's Design view to move layers around on the page, but after the page is created and published on the web, everything is cemented in place. Or is it? With the Drag Layer behavior, you tell layers to track the coordinates of the user's mouse. You can use this scripting to create repositionable navigation menus and pop-up windows, drag-and-drop games, shopping carts, and even slider controls.

Note

graphics/01icon07.gif

Note that the Drag Layer behavior as implemented in Dreamweaver will not work in Netscape 6 or in Opera.

The Basics of Dragging and Dropping

Applying the Drag Layer behavior is not as straightforward as applying the other layer behaviors, because it must be triggered when the page loads, not when the user presses the mouse down on a layer. What you're doing is declaring a given layer to be "draggable" after that, it's up to the user to drag it around or not. To set up a draggable layer, follow these steps:

  1. Open or create a document that has at least one layer in it.

  2. Deselect all page content, or use the tag selector to select the <body> tag.

  3. Open the Behaviors panel and choose the Drag Layer behavior from the Actions list. In the dialog box that appears, use the pop-up menu to select the layer that you want to be draggable. Configure any other settings as desired, or leave the default settings in place.

  4. Make sure the event triggering the action is onLoad.

That's it! For the life of this document, the layer is draggable. Figure 17.17 shows the Drag Layer behavior dialog box, with its various options diagrammed.

Figure 17.17. The Drag Layer behavior dialog box in Basic and Advanced mode.

graphics/17fig17.gif

Draggability Options

You can customize a layer's draggability in various ways. You can control which portion of it is draggable, where and how far it can be dragged, what happens to its z-index (position in the stacking order) as it is dragging, and what should happen when the user drops it. Some of these options can be tricky to use, but they are responsible for the power of the behavior.

Constraining the Drag Area

If you apply no constraints, the user is free to drag the layer anywhere within the browser window. Depending on why you've made the layer draggable in the first place, you might want to limit users to dragging only within a certain area. If you're creating a game, for instance, you might want the draggable game pieces to stay within the defined game boundaries.

Assigning a constraint area is easy: Just select the Constraint option from the Movement menu in the Basic tab of the Drag Layer dialog box.

The tricky part is determining what constraint values to specify in the four text fields. These fields all ask the same question: Starting from its current position, how many pixels up/down/left/right should the layer be allowed to move? Depending on what kind of constraint you're trying to create, figuring these values out can be simple or it can require some tinkering and thought.

If you love solving engineering problems and are good at diagramming and math, you probably don't need any help with this. For everybody else, here's a simple strategy:

  1. Grab a pencil and paper, and in Dreamweaver open the History panel.

  2. Select the layer you want to constraint, and write down its starting L (left) and T (top) position.

  3. Drag the layer to the topmost, leftmost position you want it to go. Note the new T (top) position, and subtract it from the starting T value. That's your "up" value. Note the new L (left) position, and subtract it from the starting L value. That's you're "left" value.

  4. Drag the layer to the bottommost, rightmost position you want it to go. Note the new T position, and subtract the original T value from it. That's your "down" value. Note the new L position, and subtract the original L value. That's your "right" value.

If you're not sure which value to subtract from which, just remember that all constraint numbers must be positive integers, or 0. (A value of 0 means the layer isn't allowed to move in that direction.) Subtract the smaller from the larger. Figure 17.18 shows a form you might find handy for your note taking.

Figure 17.18. A form for determining constraint values in the Drag Layer dialog box.

graphics/17fig18.gif

Assigning a Drop Target (And Snapping to It)

A drop target is the location where you want the user to drop the layer. If you're creating a game, such as a matching game, this would be the location of the correct answer. If you're creating a shopping cart interface, this would be the cart graphic that tells you the user wants to buy an item. This option is specified in the Basic tab of the Drag Layer dialog box.

You specify the drop target as Left and Top coordinates, which represent where the upper-left corner of the layer should be when it's dropped. Because it's almost impossible for a user to drop a layer on exactly those coordinates (not one pixel right or left, up or down), you enable snapping and assign a "snap-to" distance, also measured in pixels. If the user drops the layer within that many pixels of the target, the layer snaps into place and is officially on target.

How do you figure out what values to use for the drop target? The dialog box gives you a helpful Get Current Position button click the button and the current coordinates of the draggable layer will be entered. This is useful, however, only if the layer is currently sitting at its target location. Therefore, one way to approach the problem is to close the dialog box, move the layer to its desired destination, return to the dialog box, and click the button. Then close the dialog box again and move the layer back to its starting position.

Another way to handle this situation is to move the layer to the drop target destination, write down the coordinates, and then choose Edit > Undo or use the History panel to put the layer back where it started. Then go to the dialog box and type in the values you wrote down. (The second method has the advantage of putting your layer back in exactly the same position where it started.)

Specifying a Drag Handle

Do you want the user to be able to click anywhere on the layer to start dragging it, or can he drag only from a particular location (like a handle)? If your layer contains a puzzle piece or shopping item, for instance, you probably want the entire layer to be draggable. If it's an interface item, however, like a mini-window or Popup Message, you'll probably want users to drag it only by its title bar (just like a real computer window).

Choose the Area Within Layer option from the Drag Handle menu in the Advanced tab of the Drag Layer dialog box. Text fields will appear, asking you to specify the drag handle's left edge, top edge, width, and height. The left and top measurements are relative to left and top of the draggable layer. To use a temporary layer to determine the appropriate values for a drag handle, follow these steps (demonstrated in Figure 17.19):

Figure 17.19. Using a temporary layer to determine measurements for a drag handle.

graphics/17fig19.gif

  1. Draw a temporary layer to use as a proxy for the drag handle. Resize and position this layer to where you want the handle to be.

  2. Jot down the new layer's W, H, L, and T values from the Property inspector.

  3. Select the draggable layer, and jot down its L and T values. The temporary layer's W and H values will become the drag handle's W and H.

  4. Subtract the draggable layer's L and T values from the temporary layer's L and T values, to get the drag handle's L and T values.

  5. When you're done, delete the temporary layer.

Note

graphics/01icon07.gif

If you repeatedly find yourself scratching your head over pixel coordinates and measurements, try using an onscreen pixel ruler utility. You can find plenty of them available at shareware sites such as www.download.com.

Changing the Z-Index

The z-index determines which layers are on top of which other layers. While a layer is being dragged, it should probably be on top dragging a layer that goes behind other layers is a weird experience. When the layer is dropped, you might want it to stay on top, or you might want it to return to its normal position in the stacking order. Use the Advanced tab of the dialog box to specify how the z-index is treated.

Exercise 17.3 Creating a Draggable Shopping Cart Interface

In this exercise, you use the Drag Layer behavior to create a graphic shopping experience where visitors can drag shopping bags into a cart. All the files for this exercise can be found on the CD in the chapter_17/shoppingcart folder.

  1. Start by opening shopping.html and examining its contents (see Figure 17.20). All the page elements are in place, and the layers have been given descriptive names. None of the scripting has been added.

    Figure 17.20. The shopping.html file, ready for adding behaviors.

    graphics/17fig20.gif

  2. You want all three shopping bag layers to be draggable, so you need three instances of the Drag Layer behavior, each triggered when the page loads. Deselect all page content, or use the tag selector to select <body>. Then open the Behaviors panel and create a Drag Layer behavior for each shopping bag. Preview in the browser to make sure the bags are indeed draggable.

  3. For your first refinement, limit the draggable area for the shopping bags. You don't want users dragging and dropping bags on top of the title bar or shopping instructions, so define an official "shopping area" from the bottom of the title bar to the bottom of the shopping cart, and from the left edge of the price fields to the right edge of the shopping cart.

    Before plunging back into the dialog boxes, you need to calculate the Up, Down, Left, and Right constraint values for each bag. Using the method outlined earlier (or any other method you like better), determine the values for each bag. Then configure each Drag Layer behavior instance with the correct numbers. Figure 17.21 shows the editing dialog box for the red bag layer, with appropriate values entered.

    Figure 17.21. The Drag Layer dialog box for the redbag layer, showing its correct constraint values.

    graphics/17fig21.gif

  4. Now set drop targets for all three bags.

    Move all three bags to where you think their final destination should be in the cart (see Figure 17.22). For all three, jot down their L and T values. Then use Edit > Undo or the History panel to put the bags back to their original positions, and enter each bag's values in the appropriate Drag Layer dialog box. For each bag, enter a snap-to distance of 100 pixels.

    Figure 17.22. The desired location of all three shopping bags, after they're dropped in the cart.

    graphics/17fig22.gif

  5. You want each bag to come to the front as you're dragging it. When the bags are dropped, however, you need to reset the z-index so that they end up sitting inside the cart rather than on top of it. Open up each Drag Layer behavior and bring the Advanced tab to the front. Make sure that Bring to Front is selected and choose Restore z-index from the pop-up menu.

  6. Try it out! In browsers that support the Drag Layer behavior, you should be able to drop items in the shopping cart or leave them lying around the window but not outside your official shopping rectangle.

Triggering Actions with Drag and Drop

Being able to drag items around onscreen might be fun, but it can really be useful when you use it to trigger other actions. If the layer is a slider, if it's a game, or if it's a shopping cart, you might need to know three things:

  • That an object is currently being dragged

  • That an object has been dropped

  • That an object has been dropped on target

Calling JavaScripts from the Drag Layer Behavior

In Dreamweaver, you use the Call JavaScript options in the Drag Layer dialog box's Advanced tab to trigger other actions based on the user's dragging and dropping. As you can see from the dialog box, the behavior can be configured to trigger a script as soon as the user starts dragging, when the user drops the layer, or only when the user drops the layer on target. Any JavaScript statement(s) entered into the appropriate input field will execute when the specified condition is met. In the dialog box shown in Figure 17.23, for instance, dropping the layer on target will pop open an alert window with a short message.

Figure 17.23. The Drag Layer dialog box, configured to open an alert window with the "Hello world" message if the layer is dropped on target.

graphics/17fig23.gif

Note

graphics/01icon07.gif

Another handy one-liner to use with Drag Layer is location='anypage.html', which will cause the browser to go to the specified relative or absolute address as soon as an item is dropped on a target.

Using Drag Layer to Trigger Another Behavior

If you want the Drag Layer behavior to trigger scripts longer than a line or two, you don't want to enter the entire script in those tiny little input fields. It's better to create a JavaScript function in the document <head> and enter the function call here. On the other hand, wouldn't it be nice if you could just trigger another Dreamweaver behavior from here, instead of having to manually code scripts? The previous chapter presented a sneaky technique for using behaviors in unusual places by inserting a behavior into a document and then "borrowing" the function call portion of the behavior (see the section on "Working Sneaky with Behaviors" in Chapter 16). In working with the Drag Layer behavior, this means placing the function call from another behavior into one of the Call JavaScript fields, in the Drag Layer dialog box. Figure 17.24 shows this happening.

Figure 17.24. Borrowing the function call from the Popup Message behavior to use in the Drag Layer dialog box the Popup Message behavior will be executed when the dragged layer is dropped.

graphics/17fig24.gif

Exercise 17.4 Responding to Items Dropped in a Shopping Cart

In this exercise, you'll add more functionality to the draggable shopping cart developed in the preceding exercise. If the user drops a shopping bag in the cart, you'll trigger another script that responds in various ways.

  1. If you completed the preceding exercise and are happy with your results, open the shopping.html page you created. If you would rather start fresh, open shopping_finished.html from the chapter_17/shoppingcart folder on the CD. Whichever file you open, save it as buying.html.

  2. In the Behaviors panel, open any of the Drag Layer behavior instances to open its editing window and bring the Advanced tab to the front. In the When Dropped: Call JavaScript text field, type the following code:

    window.alert('You bought me!')

    This nice simple statement will make a Popup Message appear. So that the message appears only if the bag is in the cart, select the Only If Snapped option. Try the new improved shopping cart out in your browser. Dragging the bag to the cart should call up a pop-up window like the one shown in Figure 17.25.

    Figure 17.25. Dragging a shopping bag to the cart, and the resulting alert window.

    graphics/17fig25.gif

  3. Now get your shopping cart to do something fancier, by inserting a function call for a Dreamweaver behavior. You'll make your document's three price layers invisible to start out with and then have each one become visible as its matching bag is dropped in the cart.

    To set up the effect, make each of the price layers (redprice, greenprice, blue-price) invisible, by closing its eye in the Layers panel.

  4. Following the steps outlined earlier, you'll start by adding a fake text link. Create a new, small layer somewhere on your page. Type the words buy me!, or some other simple word or phrase, into the layer, and use the Link field in the Property inspector to link the text to "#". Figure 17.26 shows this happening.

    Figure 17.26. Creating a simple text link as a temporary holder for a function call.

    graphics/17fig26.gif

  5. With the text link selected, use the Behaviors panel to add a Show-Hide Layers behavior. In the behavior dialog box, configure it to show the redprice layer. Before proceeding, test this behavior in the browser to make sure it's working properly.

  6. Now copy the function call. Select the text link and go to Code view or Code and Design view. The code for the text including its <a> tag, event handler, and function call should be selected and therefore easy to locate. Deselect the code, and select only the function call. Your code and selection should look like this (selected code is shown here in bold):

    <div id="Layer1" style="position:absolute; left:263px; top:116px;  width:138px; height:61px; z-index:7"><a href="#"  onClick="MM_showHideLayers('redprice','','show')">buy me! </a></div>

    Copy the selected code and go back to Design view.

  7. Now paste the function call into the Drag Layer behavior. In the Behaviors panel, find the Drag Layer instance that controls the red shopping bag, and open its dialog box. In the Advanced tab, if there's any code written in the When Dropped field, delete it. Then paste the function call into that input field. Your dialog box should now look like the one shown in Figure 17.27.

    Figure 17.27. The Drag Layer dialog box showing the pasted function call from the Show-Hide Layers behavior.

    graphics/17fig27.gif

    Try the result in your browser! If it doesn't work, check the pasted function call and make sure you pasted exactly the code shown in Figure 17.29 (that is, everything after the onClick event handler and between the double quotes).

    Figure 17.29. The Change Property dialog box set up to change the z-index property of a <div> layer.

    graphics/17fig29.gif

  8. Finally, delete the layer containing the text link, because you don't need it anymore. Select the layer in Design view, and then go to Code view. Make sure you have everything including the <div> tags selected, and delete. Then scroll up to the top of the page to make sure the MM_showHideLayers() function is still present. After you've done this, check the page in a browser again to make sure the behavior still works.

    Note

    graphics/01icon07.gif

    When in Code view, to quickly determine what JavaScript functions are present in a document, go to the toolbar and click the {} icon to get a pop-up list of functions. See Chapter 33 for a full discussion of navigating in Code view.

  9. You still need to add the same behavior to the other two shopping bags. Although you could go through the entire process again (yuck) for each bag, with a tiny bit of hand coding you can accomplish your task quickly and easily.

    The function call for Show-Hide Layers should still be on the Clipboard from your preceding copy-paste action. In the Behaviors panel, open up another of the Drag Layer instances. In the dialog box, note which shopping bag this instance is controlling (green or blue). Then bring the Advanced tab forward, click in the When Dropped text field, and paste again. Examine the pasted code. Find the reference to redprice, and change the color name to match the color of this bag. Repeat this process for the third Drag Layer behavior instance, and all three of your shopping bags should now be scripted.

    Note

    graphics/01icon07.gif

    Aren't you glad you gave your layers easy-to-remember names like redprice, greenprice, and blueprice? This is a good example of the importance of good naming conventions as you work.

  10. One more revision. What if, after putting an item in the shopping cart, the user decides not to buy that item? When a bag is dragged out of the cart, you want the relevant price layer to hide. You can accomplish this task as well, within the limits of the Drag Layer behavior, by using the While Dragging: Call JavaScript setting in the behavior's dialog box. With just a little more hand coding, you can even reuse the function calls you've already added.

In the Behaviors panel, open one of the Drag Layer instances and bring the Advanced tab forward. In the second input field (the one you just filled in), drag to select the entire function call entry and copy. Paste that code into the first input field. In the first field, find the reference to show and change it to hide. Everything else remains the same. Your first code entry will read as follows:

MM_showHideLayers('greenprice','','hide')

The second entry will look like this:

MM_showHideLayers('greenprice','','show')

Repeat this process for the other two Drag Layer instances and try the finished page in the browser. As soon as you start dragging a shopping bag, the price will disappear; if you drop it in the cart, the price will reappear. (If you get stuck, buying_finished.html contains the completed exercise.)

Controlling Other Layer Properties

You've changed visibility, you've changed the contents, and you've dragged layers around. However, those are only a few of the layer properties you can control. Depending on which browser(s) you're scripting for, you can change background color, position, width and height, style, and clipping you name it. The Dreamweaver general, all-purpose behavior for controlling everything not covered by other behaviors is Change Property.

Using the Change Property Behavior

This behavior isn't just for changing layer properties. It's more of a catch-all behavior for changing any property of any scriptable page element. Depending on the browser you're targeting, and the DOM it supports (see the discussion on DOMs at the beginning of this chapter), you can change properties for form elements, various kinds of layers, and even images. Figure 17.28 shows the Change Property dialog box with its various parts identified.(See Chapter 11, "Working with Forms," for a discussion of using this behavior with form elements.)

Figure 17.28. The Change Property dialog box.

graphics/17fig28.gif

To use Change Property to alter layer properties, follow these steps:

  1. Set up your document with whatever layer (or form or image) elements you want to use and change.

  2. Select whichever object will trigger the behavior and choose Change Property from the Behaviors panel Actions list.

  3. From the first pop-up menu, choose the tag of the object you want to change (<div>, <layer>, and so on). Unless you have changed the default, a layer in Dreamweaver will be created with the <div> tag.

  4. The second pop-up menu will now be populated with all named instances of the chosen tag that appear in your document. From this menu, choose the specific instance you want to control. (Unlike Show-Hide Layers, you can control only one object with each occurrence of this behavior.)

  5. Choose a target browser from the pop-up list on the third line of the dialog box. What you choose here will determine what choices will appear in the Property pop-up list to its left.

  6. Choose a property to change. If the Property list is empty, the object you have chosen is not scriptable in the DOM of the browser you have targeted. If you want to change a property that isn't on the list, but that you know is scriptable, enter it by hand in the text field below.

  7. Enter a new value for the property. It's up to you to choose a value acceptable for that property. The Change Property dialog box shown in Figure 17.29 is set to change the font-family of all text within the <div> layer named caption. If the value field for this dialog box didn't contain a valid font name, the property change would have no effect.

Change Property and Browser Compatibility

Because it's a generic behavior, with a very basic purpose, Change Property does not necessarily create cross-browser scripts. After you choose a target browser in the dialog box, the script will be entered using the syntax required for that browser. If all you're doing with the behavior is scripting form fields, your script will probably work across browsers because only basic DOM access is required for this kind of page element. If you're scripting layers, your behavior will definitely be browser-specific.

Controlling Netscape Layers

As discussed in Chapter 14, Netscape 4.x functions best if its proprietary <layer> tag is used to create layers, even though layers created with other tags will work there. If you target Netscape 4 in the Change Property behavior and specify that you want to change <div> layers, no scriptable properties will show up in the dialog box. If you choose the <layer> tag to change, however, you'll still be allowed to choose named instances of <div> layers, and the property list will supply a list of Netscape-formatted properties to change. Figure 17.29 shows this strange occurrence in action. This configuration will work fine in Netscape 4 or Netscape 6.

Doubling Up for Multiple Browsers

For some properties, it is possible to target IE and Netscape Navigator just by attaching two instances of Change Property to the same event handler. Figure 17.30 shows two separate configurations of the behavior, each set to change the vertical position of the specified layer on the page. Both behaviors are being applied to one text link, to be activated onClick. This strategy won't work with all properties. If you attempt to change the layer's background color in this way, for instance, IE interprets the Netscape syntax as a command to change the page's background color.

Figure 17.30. Two instances of the Change Property behavior, each set up to change the T (top) property of a layer called caption.

graphics/17fig30.gif

Summary

Dynamic HTML the ability to use JavaScript to control page elements such as layers is an exciting technology with much promise, although browser incompatibility issues turn it into a minefield for designers. In this chapter you have seen the primary Dreamweaver tools for helping you navigate this minefield safely. You also have seen how you can sometimes push the envelope to make the Show-Hide Layers, Set Text of Layer, Drag Layer, and Change Property behaviors work for you. The next chapter examines one more layer-handling tool in Dreamweaver: the Timelines window.

CONTENTS


Inside Dreamweaver MX
Inside Dreamweaver MX (Inside (New Riders))
ISBN: 073571181X
EAN: 2147483647
Year: 2005
Pages: 49

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net