Instruction set reference
HIPE_OP_EDIT_ACTION
Performs a cut/copy/paste or other edit action on text the user has selected.
This operation can only be carried out by a top-level frame, and works on the entire frame hierarchy (including all child frames within the top-level frame).
Proper documentation for this instruction is yet to be written. For further information about this instruction, look in the source code for its definition in hipe_instruction.h.
- location: 0
- arg[0]: The "action code" for the function required. See below
Action codes
* arg[0] == "x" -- attempts to perform a cut operation on selected text * arg[0] == "c" -- performs a copy operation on selected text * arg[0] == "v" -- performs a paste operation (matching destination formatting) * arg[0] == "V" -- performs a paste operation preserving source formatting. * arg[0] == "b" -- toggles bold if applicable * arg[0] == "i" -- italic * arg[0] == "u" -- underline * arg[0] == "k" -- strikethrough
Notes
This operation will succeed or fail silently. There is no response from the server.