Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

Content Freeze

As of July 25th, 2023, there is a content freeze on this page.

This function moves many elements at once.  The elements are found in a rectangular region identified by rows and columns.

Parameters:

  • from row - the row to start searching for elements
  • to row - the row to stop searching for elements
  • from col - the column to start searching for elements
  • to col - the column to stop searching for elements
  • vertical change - number of pixels to move the elements vertically
  • horizontal change - number of pixels to move the elements horizontally
  • element type - the tag name of elements to move, such as "DIV" for output fields or "INPUT" for input fields (Optional).  If not specified, all elements are moved.

Example:

// move DIV elements in the specified region 100 pixels down and to the right
massMove(10, 20, 10, 70, 100, 100, "DIV");

// move all elements in the specified region 100 pixels down and to the right
massMove(10, 20, 10, 70, 100, 100)
  • No labels