TextCursor Text Command

TEXTCURSOR Text Commands

Moves the text insertion point.

textcursor [DOCUMENT name | WINDOW name]

move/k Where to move the insertion point.

LEFT Moves 1 character left.
RIGHT Moves 1 character right.
UP Moves 1 line up.
DOWN Moves 1 line down.
WORDLEFT Moves 1 word left.
WORDRIGHT Moves 1 word right.
BOL Moves to the start of the line.
EOL Moves to the end of the line.
BOP Moves to the start of the paragraph.
EOP Moves to the end of the paragraph.
BOC Moves to the start of the column.
EOC Moves to the end of the column.
BOF Moves to the top of the frame's first column.
EOF Moves to the bottom of the frame's last column.
BOA Moves to the top of the article's first column.
EOA Moves to the bottom of the article's last column.

DOCUMENT/s The document name.

WINDOW/s The window name.

Examples:

textcursor left

textcursor wordright

textcursor boa document 'Project.Doc'

textcursor eop

 

TextCursor  Command Definition  url:PGScmd/textcursor
  created:2006-03-30 20:20:52   last updated:2006-03-30 20:20:52
  Copyright © 1985-2024 GrasshopperLLC. All Rights Reserved.

User Contributed Comments For TextCursor
Dan Kilroy wrote...2006-05-04 16:54:50

Script command submitted from PageStream internal documentation. Needs to be checked and merged with the command documentation above.

Gets the {...} .

TextCursor ([LEFT | RIGHT | UP | DOWN | WORDLEFT | WORDRIGHT | BOL | EOL | BOP | EOP | EOC | BOC | BOF | EOF | BOA | EOA] PGS41: [MOVE | EXTEND] PGS50: ... | CELLLEFT | CELLRIGHT | CELLUP | CELLDOWN | CELLSTART | CELLEND | CELLROWSTART | CELLROWEND | CELLCOLUMNSTART | CELLCOLUMNEND | CELL x y] [DOCUMENT document | WINDOW document~window])


Parameters:


Results:


Notes:


See Also:


Examples:
Python:


ARexx:

Applescript:

User Contributed Comments For TextCursor