How to deactivate text suggestions in WinRT? - windows-runtime

Is it possible to deactivate text suggestions for selected TextBoxes in a Windows Store app when no keyboard is attached to the Windows tablet?

You could try various InputScope options to see if that helps...

TextBox.IsTextPredictionEnabled does the trick. It's true by default.

Related

Libgdx keyboard "enter"

Is there a way to change the keyboard so it have a "enter" or "go" button in android like in chrome browser in android, when you are writting a url it shows a "go" button.
If so how to show it? and how to handle it?
I have researched but I ran out of words because my english is limited, and couldn't find anything.
Thanks.
LibGDX doesn't support this feature. If you want to implement it, you would have to fork LibGDX and modify AndroidOnscreenKeyboard, specifically the IME options that are placed on its TextView. Or you could submit a PR to add this as a configurable option.
Look here for android keyboard handling. it has everything you need including keyboard types.
And also look here for android specific code usage in libgdx.

Remove smiley button from on screen keyboard in Windows 10

I've checked all of the input scopes from InputScopeNameValue enumeration while trying to get rid of smiley button, but it always stays there. In some cases the concept of a "smile" and corresponding Unicode characters are not really welcome as an input for specific text field.
Is there any other way to remove it from the keyboard?
a good news for you. A new InputScope called ChatWithoutEmoji has been released in Windows 10 Anniversary Edition Build 14332 SDK. Check out this blog post on Windows Blogs. Hope this will solve your problem.
There is no way to remove the smiley with the available inputscopes for Windows 10. They all have the smiley included.
Source: https://msdn.microsoft.com/en-us/library/windows/apps/mt280229.aspx

windows phone 8 - can app disable buttons?

I'm not a WP8 dev, but I wanted to write a little timer app for my toddler. Thing is, she shouldn't be able to turn it off by clicking 'home','back' or 'search', but by password only. Its for personal use only, so store policies/hackiness dont matter. I know it can be done on android, but how about WP8?
You could programatically block any back-button presses (though it's not compliant with windows phone store requirement), but there's no way to block start and search buttons.
Try encapsulating those buttons with some DuctTape

Allow Camera in webpage with dalekjs

I have got a webpage where people are able to chat together and see each other through a webcam. Now for some reason i cannot set this option in chrome to always allow the camera.
Is there a way to let dalekjs do that work for me? Or any suggestion on how to pre-set this in chrome? Thanks in advance!
I do not know if there is a flag for enabling the camera access, or on the other hand, disabling the dialog that asks for permission; but if there is one, you can apply it using your Dalekfile like described in this pull request: https://github.com/dalekjs/dalek-browser-chrome/pull/8

save and reload text of Textbox

I am programming for Windows Phone 8.1.
I have lots of (100) Textbox. They have 3-4 lines. What is the best way to save text of them and reload text again?
Thanks.
Did you try using the Settings option from the Isolated Storage to store the values?
Here's a good sample you could follow.
Hope it helps!