Archive for August, 2007

L Layer.pageX (Property) Warnings: . This method (Web site developers)

Friday, August 24th, 2007

L Layer.pageX (Property) Warnings: . This method is deprecated in favor of the Layer.moveBy() method in Netscape 4. . No longer supported in Netscape 6.0. See also: Layer.moveBy() Layer.pageX (Property) The X-coordinate of the layer relative to the top level document. Availability: JavaScript 1.2 Netscape 4.0 Deprecated Property/method value type: Number primitive JavaScript syntax: N myLayer.pageX Offset X Window Layer 1 Layer 2 Offset Y Warnings: . No longer supported in Netscape 6.0. See also: Layer.moveToAbsolute() 1307

JavaScript Programmer’s Reference Layer.name (Property) This corresponds to (Crystaltech web hosting)

Thursday, August 23rd, 2007

JavaScript Programmer’s Reference Layer.name (Property) This corresponds to the NAME attribute of the tag. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: N myLayer.name HTML syntax: Argument list: aName A name for the layer object Objects are identified either by the NAME=”…” HTML tag attribute or by the ID=”…” HTML tag attribute. Netscape shows a marginal preference for the name property while MSIE seems slightly better disposed towards the ID property. W3C comes down fairly and squarely on the IDproperty as being the favorite. However in many cases, both browsers support either technique and in some cases will locate items named with either tag as if they existed in a single namespace. Warnings: . No longer supported in Netscape 6.0. Property attributes: ReadOnly. Layer.offset() (Method) A deprecated means of moving layers. JavaScript 1.2 Netscape 4.0 Deprecated myLayer.offset(anX, aY) Availability: JavaScript syntax: N anX A relative distance in the X axis Argument list: aY A relative distance in the Y axis You should now use the moveBy()method to change the layer ordering. This method should be replaced when possible. 1306

L Layer.moveToAbsolute() (Method) Layer.moveToAbsolute() (Graphic web design) (Method) Adjust the

Wednesday, August 22nd, 2007

L Layer.moveToAbsolute() (Method) Layer.moveToAbsolute() (Method) Adjust the X,Y position of a layer. Availability: JavaScript 1.2 Netscape 4.0 Deprecated JavaScript syntax: N myLayer.moveToAbsolute(anX, aY) anX An X coordinate relative to the page Argument list: aY A Y coordinate relative to the page This method provides a way to locate a Netscape layer to a new absolute position relative to the document window. Offset X Window Layer 1 Layer 2 Offset Y Warnings: . No longer supported in Netscape 6.0. See also: Layer.pageX, Layer.pageY 1305

Most popular web site - JavaScript Programmer’s Reference Layer.moveTo() (Method) Adjust the X,Y

Tuesday, August 21st, 2007

JavaScript Programmer’s Reference Layer.moveTo() (Method) Adjust the X,Y position of a layer. Availability: JavaScript 1.2 Netscape 4.0 Deprecated JavaScript syntax: N myLayer.moveTo(anX, aY) anX An X coordinate relative to the parent element Argument list: aY A Y coordinate relative to the parent element This method provides a way to locate a Netscape layer to a new absolute position relative to its containing parent object. Offset X Window Layer 1 Layer 2 Offset Y Warnings: . No longer supported in Netscape 6.0. See also: Layer.parentLayer 1304

Web hosting isp - L Layer.moveBelow() (Method) This method provides a

Monday, August 20th, 2007

L Layer.moveBelow() (Method) This method provides a way to move a layer above another layer without needing to do complex Z index computations. Warnings: . No longer supported in Netscape 6.0. Layer.moveBelow() (Method) Adjusts the Z ordering of a layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: JavaScript syntax: N Argument list: The layer object to be moved below myLayer.moveBelow(aLayer) aLayer This method provides a way to move a layer behind another layer without needing to do complex Z index computations. Warnings: . No longer supported in Netscape 6.0. Layer.moveBy() (Method) Adjusts the X,Y position of a layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: JavaScript syntax: N anX A relative distance in the X axis Argument list: aY A relative distance in the Y axis This method provides a way to locate a Netscape layer to a new position relative to its old one, by specified pixel amounts along both axes. Positive values move to the right or up, and negative values to the left or down. Warnings: .No longer supported in Netscape 6.0. myLayer.moveBy(anX, aY) See also: Layer.offset() 1303

Vps web hosting - JavaScript Programmer’s Reference In Netscape this defines the

Monday, August 20th, 2007

JavaScript Programmer’s Reference In Netscape this defines the left coordinate of a layer. It corresponds to the pixelLeft property of an MSIE style object. Warnings: . No longer supported in Netscape 6.0. See also: style.pixelLeft, style.posLeft Layer.load() (Method) A method to load a new URL and resize a layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: JavaScript syntax: N aURL A document to load into the layer Argument list: aWidth A new width value for the layer myLayer.load(aURL, aWidth) This is an alternative way to load a new document into a layer. You can accomplish something similar by assigning a new value to the src property. This method will adjust the width of the layer at the same time. This can work very effectively if you generate dynamic content via a javascript: URL as the value passed to the load() method. In fact this works so much better, that the Layer.src property can be ignored for most purposes. This seems to work well with an absolutely positioned

container. Warnings: . This doesn’t work for ILayer elements in Netscape 4. . No longer supported in Netscape 6.0. See also: javascript: URL, Layer.src Layer.moveAbove() (Method) Adjusts the Z ordering of a layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: JavaScript syntax: N Argument list: The layer object to be moved above myLayer.moveAbove(aLayer) aLayer 1302

L Layer.layers[] (Collection) Warnings: . This property (Web site traffic)

Sunday, August 19th, 2007

L Layer.layers[] (Collection) Warnings: . This property is deprecated in favor of the Layer.visibility property. However, even though it is deprecated some versions of Netscape require that it is forcibly set to false otherwise the visibility property will not function correctly. . If an object is hidden, the gap will not be filled by any surrounding content. . No longer supported in Netscape 6.0. See also: Layer.visibility Layer.layers[] (Collection) A deprecated property providing a list of child layers within this layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: N LayerArray object myLayer.layers You should access this collection via the documentobject associated with this layer. That is the recommended technique for new projects. If you see this in an old project, then it should be removed if possible and replaced with the preferred means of access. Warnings: . This property is deprecated in favor of using Layer.document.layers in its place. . No longer supported in Netscape 6.0. See also: Document.layers[], LayerArray object Property attributes: ReadOnly. Layer.left (Property) The x-coordinate relative to the containing layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: N Number primitive myLayer.left 1301

JavaScript Programmer’s Reference Layer.handleEvent() (Cedant web hosting) (Function) Pass an event

Saturday, August 18th, 2007

JavaScript Programmer’s Reference Layer.handleEvent() (Function) Pass an event to the appropriate handler for this object. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: undefined JavaScript syntax: N myLayer.handleEvent(anEvent) Argument list: anEvent An event to be handled by this object This applies to Netscape prior to version 6.0. From that release onwards, event management follows the guidelines in the DOM level 3 event specification. On receipt of a call to this method, the receiving object will look at its available set of event handler functions and pass the event to an appropriately mapped handler function. It is essentially an event dispatcher that is granular down to the object level. The argument value is an Eventobject that contains information about the event. Warnings: . No longer supported in Netscape 6.0. See also: handleEvent(), Layer.routeEvent() Layer.hidden (Property) A deprecated property that indicates whether a layeris hidden or not. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: N Boolean primitive myLayer.hidden You should not use this property in new projects. If you encounter it in existing ones, if you have the time you should remove it and use the visibility property instead. 1300

L Layer.clip.width (Property) Layer.clip.width (Property) (Hp web site) The width

Saturday, August 18th, 2007

L Layer.clip.width (Property) Layer.clip.width (Property) The width of a layer’s clip region. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: Number primitive myLayer.clip.width N myRect.width N The clip region is defined by an extent rectangle that surrounds the space occupied by it on the screen. An extent rectangle is that smallest rectangle that completely encloses the item. This property specifies the width of that extent rectangle. Warnings: . No longer supported in Netscape 6.0. See also: Clip.width, Rect.width Layer.document (Property) The documentobject containing this layer. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: N Document object myLayer.document This is the document contained within a Netscape layer object. Because each layer has its own separate document, you can use the document.open(), document.close() and document.write() methods to operate on it. Warnings: . No longer supported in Netscape 6.0. See also: Document object, Element.document Property attributes: ReadOnly. 1299

Florida web design - JavaScript Programmer’s Reference Layer.clip.right (Property) The right edge

Friday, August 17th, 2007

JavaScript Programmer’s Reference Layer.clip.right (Property) The right edge of a layer’s clip region. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: Number primitive myLayer.clip.right N myRect.right N This defines the right edge of the clip region. You could modify this in a loop to create a horizontal wipe transition effect. Warnings: . No longer supported in Netscape 6.0. See also: Clip.right, Rect.right Layer.clip.top (Property) The top edge of a layer’s clip region. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: N myRect.top This defines the top edge of the clip region. You could modify this in a loop to create a vertical upward wipe transition effect. Warnings: .No longer supported in Netscape 6.0. Number primitive myLayer.clip.top N See also: Clip.top, Rect.top 1298