Quickmenu

Description

The quickmenu is a context menu that appears at the end of a text selection. This menu is positioned below the text and will allow you to perform actions on the text.

This menu can be disabled with the following configuration :

configurations/arender-custom-client.properties
# Activates ARender quick contextual menu when text is selected
quick.contextual.menu.enabled=false

image

Actions

Annotations creation

Annotations requiring text selection have their creation button in the quickmenu. The quickmenu supports the following annotations:

  • highlight
  • underline
  • strikeout
  • redact (If user is allowed to add them)
  • hyperlink

Each button is enabled by default. You can individually disable buttons with the following configurations:

configurations/arender-custom-client.properties
# Enables a textual highlight annotation creation option for the quick contextual menu
quick.contextual.menu.hasHighlightText=false

# Enables a strike through annotation creation option for the quick contextual menu
quick.contextual.menu.hasStrikeoutText=false

# Enables an underline annotation creation option for the quick contextual menu
quick.contextual.menu.hasUnderlineText=false

# Enables a hyperlink creation option for the quick contextual menu
quick.contextual.menu.hasHyperlink=false

# Enables a hyperlink area creation option for the quick contextual menu
quick.contextual.menu.hasHyperlinkZone=true

# Enables a redact annotation creation option for the quick contextual menu
quick.contextual.menu.hasRedactText=false

Copy of text

A button to copy selected text is enabled by default. This button can be deactivated with the following configuration:

configurations/arender-custom-client.properties
# Enables a copy selected text option for the quick contextual menu
quick.contextual.menu.hasCopyText=false