{{title}}

    {% for event in report %} {% if event.type == "mouse" and event.action == "click" %} {% if event.combined %}
  1. Press and hold {{event.combined}}.
  2. {% endif %}
  3. Click with the {{event.button}} button at coordinates {{event.coordinates[0], event.coordinates[1]}}. See the screenshot for the aproximate area of the click.
  4. {% elif event.type == "mouse" and event.action == "doubleclick" %} {% if event.combined %}
  5. Press and hold {{event.combined}}.
  6. {% endif %}
  7. Doubleclick with the {{event.button}} button at coordinates {{event.coordinates[0], event.coordinates[1]}}. See the screenshot for the aproximate area of the click.
  8. {% elif event.type == "mouse" and event.action == "scroll" %} {% if event.combined %}
  9. Press and hold {{event.combined}}.
  10. {% endif %}
  11. Scroll the mouse to the {{event.direction}} by {{event.horizontal}} horizontal and {{event.vertical}} vertical steps. See the screenshot for the result of the action.
  12. {% elif event.type == "mouse" and event.action == "drag" %} {% if event.combined %}
  13. Press and hold {{event.combined}}.
  14. {% endif %}
  15. Click and hold the {{event.button}} button at coordinates {{event.coordinates[0], event.coordinates[1]}}, drag the mouse to the coordinates {{event.end_coordinates[0], event.end_coordinates[1]}}, and release the mouse button. See the screenshot for the area affected by the action.
  16. {% elif event.type == "key combination" and event.subtype == "modifier" and event.action == "press" %} {% if event.combined %}
  17. Press and hold the {{event.combined}} modifier.
  18. {% endif %}
  19. Press {{event.key}}. See the modifier release screenshot for the result of the action.
  20. {% elif event.type == "key" and event.subtype == "special" and event.action == "press" %} {% if event.combined %}
  21. Press and hold the {{event.combined}} modifier.
  22. {% endif %}
  23. Press {{event.key}}. See the screenshot for the result of the action.
  24. {% elif event.type == "key" and event.key == "tab" and event.action == "press" %}
  25. Press {{event.key}}. See the screenshot for the result of the action.
  26. {% elif event.type == "typing" %}
  27. Type {{event.text}}.
  28. {% elif event.type == "key" and event.subtype == "modifier" and event.action == "release"%}
  29. Release modifier. See the screenshot for the result of the action.
  30. {% elif event.type == "key" and event.subtype == "stop" and event.action == "press" %}
  31. This is the end of the recording. See the screenshot that shows the situation at the end of the recording.
  32. {% endif %} {% endfor %}