Im Making A Game With Browser Events And Trying to Make A Block For Anything Of anything Without Keyboard, Does Anyone Have A Block Of Code Or Line That Detects If The System Has A Keyboard?
I know there’s an internal variable to detect if the keyboard is supported, so that the Ask blocks can pop up the keyboard only if it’s supported. Is that what you are looking for? I can give instructions on how to use it if it’s what you need.
Side note, capitalizing Every Word Like This Looks Really Weird And Is A Bit Hard To Read In My Opinion.
I’ll Be Honest, It’s A Strange Thing I Do, I Think I Got Taught To Type Wrongly. I Also Got taught To Hold A Fork Like A Knife (Like A Fist)
How do you hold a fork like a knife… and how do you hold a knife like a fist… I’m very confused and would honestly like pictures, but never send pictures to random people on the internet. Here’s a better way:
I think you’re supposed to hold knives like this
Some people put their pointer finger on top, but definitely not in a normal fist, because you don’t have very precise control using a fist, so I’m kinda worried about accidentally getting cut when using it like a fist. I suppose this is how I hold big knives, but it doesn’t matter as much with normal butter knives and such. I guess you do whatever you want, but just… be careful I guess? Idk.
Most off topic reply ever lol
this topic has become so innocently menacing all of a sudden
For real
Um… I don’t think that’s how you are supposed to use a knife.
Ok. Back On topic, What Im Trying to do Is like What Will Happen If You Put A Game Boy Color game Into A Normal Gameboy
@teaeat100 we don’t have a block for this, but as @WoofWoof mentioned it’s easy to do in JavaScript:
if (helpers._isSystemKeyboardSupported()) {
// keyboard is supported (eg. on browser, on mobile)
}
else {
// keyboard isn't supported (eg. on meowbit, pygamer, xbox, arcade kiosk, etc.)
}
now one thing to note here is that this will return true on mobile even if they don’t have a dedicated keyboard that’s always visible.
Just realized I didn’t thank you, Thanks!