Wild Manes welcome! Art and screencaps from Wild Manes and other horse-adjacent shows are now allowed!
Chat with us on Discord! We have a discord server! It can be found here.

Nokia Keypad Simulator <2024-2026>

function onKeyPress(key) let now = Date.now(); if (lastKey === key && (now - lastKeyTime) < 1200) currentPos = (currentPos + 1) % keyMap[key].length; text = text.slice(0, -1) + keyMap[key][currentPos]; else currentPos = 0; text += keyMap[key][0];

lastKey = key; lastKeyTime = now; updateScreen(text); Nokia Keypad Simulator