A Display Name
A Display Name

Reputation: 367

Turtle Onkey - Enter Key

Simple question, what is the term for the Enter key for Turtle.Onkey()

I've tried turtle.onkey(check, 'Enter') but I get the error:

TclError: bad event type or keysym "Enter"

So, I think that I have entered the wrong word for 'Enter'

Just in-case you don't know what the Enter key, here it is :P

The Enter Key

Upvotes: 2

Views: 6265

Answers (2)

hexicle
hexicle

Reputation: 2187

Use 'Return' For example, turtle.onkey(check, 'Return').

Upvotes: 4

Dath_Vader
Dath_Vader

Reputation: 79

turtle.onkey(check, 'return')

This should do it.

Upvotes: -2

Related Questions