Moves the text insertion point.
textcursor <move> [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
Displays the toolbar.
toolbar [status] [AT pointx pointy] [SAVE]
status/k The toolbar's display status.
Options: SHOW | HIDE | TOGGLE.
AT/i The toolbar position in pixels.
SAVE Saves the status to the PageStream3 Preferences file.
Notes:
TOGGLE may not be used in conjunction with SAVE.
Examples:
toolbar toggle toolbar show at 0 450 save
Copies, scales, offsets, rotates, slants and twists selected object(s).
transform <count> [OFFSET offsetx offsety] [SCALE scalex scaley] [ROTATE angle | SKEW slantangle twistangle | SLANT angle | TWIST angle] [ABOUT pointx pointy | ABOUTCENTER] [DOCUMENT name | WINDOW name | OBJECTID number]
count/i The number of copies to make.
OFFSET/d The offset from the original or previous copy.
ROTATE/d The rotation angle. Default=0.
SKEW/d The slant and twist angle. Default=0.
SLANT/d The slant angle. Default=0.
TWIST/d The twist angle. Default=0.
ABOUT/d The rotation point.
ABOUTCENTER Rotates around its center. Default.
DOCUMENT/s The document name.
WINDOW/s The window name.
OBJECTID/i The number of the object.
Default=current.
Notes:
If count=0, the the original object will be transformed. If count>0, then each successive object will be transformed by these values.
Examples:
transform 5 offset 0.25 0 scale 100 83 transform 3 skew 90 131 about 2.2 3.125 ยจ document 'project.doc'