Navigating to top or beginning position of a field

Question: Does the Up Arrow key really not work in Text Blaze? I need a solution to return the cursor to the very top left of the text field. All the other Arrow Keys work with no trouble such as {key:leftarrow}. Ideas?

Text Blaze manually reproduces the behavior of key strokes in the {key} command and we haven't done that for the up arrow key yet (correctly moving the cursor up or down within a multiline text field is a very complex problem).

However, you should be able to do what you want by selecting all the text in the field and then using the left arrow. For example:

{key:cmd-a}{key:leftarrow}

(Using the Mac commands, on Windows replace 'cmd' with 'ctrl')

Thank you Scott! I love simple solutions.