Specifications
502
Returns
Nothing.
Keyboard functions
Keyboard functions mimic document navigation tasks that are accomplished by pressing the 
arrow, Backspace, Delete, Page Up, and Page Down keys. In addition to such general arrow and 
key methods as 
arrowLeft() and backspaceKey(), Dreamweaver also provides methods for 
moving to the next or previous word or paragraph as well as moving to the start of the line or 
document, or the end of the line or document. 
dom.arrowDown()
Availability
Dreamweaver 3
Description
Moves the insertion point down the specified number of times.
Arguments
{nTimes}, {bShiftIsDown}
• nTimes is the number of times that the insertion point is to move down. If this argument is 
omitted, the default is 1.
• bShiftIsDown is a Boolean value that indicates whether to extend the selection. If this 
argument is omitted, the default is 
false.
Returns
Nothing.
dom.arrowLeft()
Availability
Dreamweaver 3
Description
Moves the insertion point left the specified number of times.
Arguments
{nTimes}, {bShiftIsDown}
• nTimes is the number of times that the insertion point is to move left. If this argument is 
omitted, the default is 1.
• bShiftIsDown is a Boolean value that indicates whether to extend the selection. If this 
argument is omitted, the default is 
false.
Returns
Nothing.










