Could anybody please help me understand how does the dictation API work in WatchKit? I'm aware that we use the text input controller (presentTextInputControllerWithSuggestions) to let the user dictate the text. Now I have a couple of questions:
Can the user see the dictated text in the same controller?
Can the user edit the text somehow?
Can I change the look and feel of the controller?
Thanks in advance.
Regards,
Kavita
Can the user see the dictated text in the same controller?
When you start presentTextInputWithSuggestions, you will have a list of suggestions and a button to start dictation. If you don't add suggestions, dictation start automatically.
You will have a page for suggestion and another page for dictation. During the dictation, user sentence appears on the dictation screen. When he press "Done", you come back to your first page
Can the user edit the text somehow?
No, the user can't edit your suggestions. However, you can save is dictation and add this text to the next suggestions for example
Can I change the look and feel of the controller?
You can change the suggestions, the availability of emoji and dictation. However, you can't change dictation view
Related
I want to create a page where the user is prompted to click on a button. When they click on the button I want a text displayed below it, displaying whatever I choose the text to include. Everywhere I've looked has just told me how to make an input user text button which is not what I'm looking for. I would like the solution using CSS only please.
I haven't tried anything so far. I built the original page to display the text on hover, but it wasn't intuitive when using a touch screen device and I want to avoid text overlays telling the user things like "touch here" when I could just do a better job making the site feel more intuitive to touch device users. Like I mentioned previously I haven't found useful information for what I'm trying to create. Thanks in advance.
I am writing an application, the use case is admin can enter some text in text area, the same will be displayed to the logged in user.
Here my problem is, if admin copies some code from some editor like eclipse/ intelliJ IDE, the code and style also should get copied to the text box.
So that user would be able to see it in proper format/style.
Is there any way to achieve this?
Thanks and Best Regards,
Kishna
Unfortunately that is not possible.
The textarea is not designed for that purpose.
Read here for further information.
I want to make a helppage on my Drupal website.
I could easily make this by posting 20 Questions and putting a link behind it to a PDF or another webpage that has the information.
But I want something fancy. I want some kind of flyout module.
Example:
NORMAL STATE
How to add a picture? <-- USER CLICKS
How to add a PDF?
CLICKED STATE
How to add a picture?
If you want to add a picture go to "add resources" on your page and choose a picture...
Click here for a PDF-example.
How to add a PDF?
CLICKED ON ANOTHER QUESTION
How to add a picture?
How to add a PDF?
Bla bla bla bla.
I hope it is clear to you guys what I want. I can't really find a module to do something like this because I don't know how to call it. It isn't really a flyout like from a menu.
Thanks in advance!
If i get what you mean (although I'm not 100% i do!) I think you can achieve what you want with the field collection module and a bit of jquery:
https://drupal.org/project/field_collection
So you'd create a field collection - '20 questions' with fields for question, answer, pdf download etc.
attach it to a content type of you choice.
use css to hide the answers and jquery to show them when a user clicks a question.
Pretty much exactly what's done on this page: http://tdpf.org.uk/resources/glossary-terms
I'm trying to build a page in which contains images and while clicking images i want it to navigate to next page.
I've had a look at Seadragon but as far as I can see it is not possible.
Can anyone propose a solution?
Thanks
It's hard to tell from your description exactly what you're trying to do, but I imagine it's possible with the latest version of OpenSeadragon:
http://openseadragon.github.io/
Take a look at these possibilities:
http://openseadragon.github.io/examples/tilesource-sequence/
http://openseadragon.github.io/examples/ui-reference-strip/
... Or you could add a custom click handler to do what you want.
I was on website on my iPhone and I encounter websites' guestbook. with those textFields. my keyboard appearance was totally change as you can see in screen below.
I am having many text fields in my app, I am wondering if I can create anything like that.
As I am new to development, still unknown what are the limits.
Can anyone guide me to right direction or to right documentation.
Is there is some regular way or its just total customization over Keybard.
I have one more doubt, does it matter what kind of keyboard is popping up as my all fields have numeric keyboard.
Well I just wanted to be helpful to someone who is following the same learning curve as me.
To achieve the affect in screenshot in question. UIToolbar control can be used to make those buttons. after the you need to just make this toolbar appear and disappear with the keyboard.
To make previous and next button work, you can use the tag property of textfield. on clicking on previous or next you can focus to previous or next text field.
Sorry about not posting code as I have not coded it yet but wanted to give pointer to anyone, who is looking.