Mac Caps Lock Sign on password input? - passwords

i'm not sure if its just me. i noticed that on the mac or maybe its just in chrome in general but when you press down the caps lock key on a password input box a little grey notification image pops up. the problem is this covers an important feature on my site.
Is there a way to tell it where to pop up? i have seen it pop up in different place such as inside the input field on other sites.
Would appreciate if anyone has any ideas or knows how to sort it. thanks

Related

VBA - How to insert characters from the press of a command button

I'm building a home surveillance system for use in my home and possibly to publish on my blog. However; I've ran into a problem. We only use a mouse for input, and most people use only mouse. So, I needed to build an on-screen keyboard. I got a VBA frame and put a text box, and layed out a load of buttons to make a keyboard. I need help with the code that makes it so that when you press a key it will put that character in the text input box so that the user can see what they are entering. If you know, or could suggest a fix, please reply! Thank you!

VB.NET Putting the menu into controlbar like Firefox

The new Firefox versions do not have the regular menus anymore.
Instead the menu can be reached by clicking the orange button which is somehow integrated into the form's controlbar. This saves some space on the client area.
I would like to do the same with VB.NET and WinForms.
Could anybody please tell me
a) what this is called? I did not find any information on this on Google, perhaps because I just didn't find the right term.
b) Perhaps a starting point on how to do this?
Thank you very much.

Speech to text automatically starts when textfield begins to edit

I don't know the specific name for this button, but it is the one with the microphone that when you press it, it allows you to speak, and it will convert your speech into text.
I haven't been able to find anything on this, but when I click to edit a textfield I want that button to be pressed automatically so I can just begin to speak and then click done so that it will convert the audio to text.
I don't know if this is possible and can't seem to find anything on it... Probably because my search is weak since I have no idea how to ask it.
If anyone knows how to do this, or knows where there is anything on it, I would appreciate it greatly.
You cannot do that.
That is a part of Siri.
Till now Apple not provided any api to interact with siri.

iOS Clipboard (Paste) Modification

I want to be able to edit how users paste strings and pictures. My application would be simple: on or off. If it is on I want to be able to edit how the iphone pastes information into textboxes, programs, ect...
My Goal: The user can be on any application, but my application kicks in right when the user trys to paste something. When the user pastes something (on any application) I want a dialog box with a few options to come up. Is this possible, and if so are their any apple guides for this?
Thanks!
Your application SHOULD and WILL not be able to modify the behavior of other applications. To have something just step in and modify a particular action so important as the pasteboard is IMHO really freaking scary and a serious security concern. You are limited to your sandbox unless you jailbreak the phone.
This is totally possible, but it would have to be distributed on Cydia

How can I know if the user is in Exposé mode?

Is there a way to find out if the user is in the Exposé mode? (i.e., all windows are being shown.) Thank you.
There's no public API for getting this information. What problem are you trying to solve?
You don't need this information. If the user is not in Exposé, F11 (or fn-F11) will enter Exposé. If the user is already in Exposé, F11 (or fn-F11) will exit Exposé. So just send F11 (or fn-F11) unconditionally.
The real challenge is determining the correct key command to send. On a laptop or small Apple Wireless Keyboard, the command may include the fn modifier, but on a desktop machine with a full-size keyboard, the command will more probably be F11 alone. Furthermore, it's user-configurable.
The correct way to toggle Exposé programmatically is a separate question.