how to expand INTENT cards in debug view? - bixby

Is there a way to make the "INTENT" and "DETAILS" cards in Debug console expand? Frequently the info is truncated. It seems like these should be clickable.

To view the intent, put mouse over the intent, the full NL utterance or intent will show in pop-up window.
To copy-past the NL utterance or intent, use the debugger window, please see screenshot as attached. The right side panel of simulator window is just a brief summary of each step, please use the debugger window if you need additional information like the actions taken, results returned, or in this case, the NL utterance or the aligned NL interpretation.

Related

How to create dialog for user input in Chrome extension

I'm using contextMenu to run a Chrome extension on some selected text on a page.
When I click on the contextMenu, I'd like to prompt the user for some additional input.
For this purpose, it'd be ideal to popup a window. After the user filled the dialog and click confirm button, I'd like to recuperate the inputs.
Could anyone give me a hint on how to implement this? I've checked the Chrome API, couldn't find anything related.
For the popup dialog, I'd like to put it in the middle of the screen(something similar to Vimium help dialog)

I have entered input but clicking on submit is again asking for input when running an automation through blue prism for browser based application

I am working on one web application. I am entering input in the text box, but when I click on Submit, I am again prompted to enter the input. How can I focus on the textbox or do a left click on the textbox before entering the text? I am trying to do this through blue prism.
Sometimes a web page can have Javascript code that detects keyboard events, and if it didn't detect any, it might think there's no input. Assuming that you have entered the input using a write stage before, you might need to use the Global Send Keys or Global Send Key Event actions instead (they should be available in the Navigate stage, and you use them on the TOP level element of the application model). Please note that prerequisites:
-The browser window will have to be active (Activate Application on the Win32 browser window element)
-The textbox should also be active (Click Centre on the textbox element)

Difference between Floating action button (FAB) and Raised button

It would be interesting to know the usage difference between FAB and Raised Button. In which particular use-cases these buttons are to be used. ?
One example.
Can I use FAB in a static position (It doesn't scroll with content) ?
Thanks
Take a look at what official material guidelines say about FAB: (Google design guidelines)
Not every screen needs a floating action button. A floating action button represents the primary action in an application.
and
Make floating action buttons positive actions like Create, Favorite, Share, Navigate, and Explore.
Here some typical examples of FAB:
So what does it look like in real world app? Let's take a look at Gmail:
Always think about the current screen before using FAB. Is there any action that is likely to be used by most of the users? What is the point of this screen? What do you want the users to do with this screen?
FAB can also contain multiple actions (it's not in the official specs though) which are opened after touching the primary FAB. Evernote app uses that for example:
I hope this clears up the FAB usage a bit.
Raised button is regular button that can be used anywhere needed. It's just important to distinguish between raised button and flat button. Material guidelines are here to help you with that: Material design guidelines.

How to disable the thread list popup when hovering at the current statement indicator in VS2012?

This is the popup I mean:
It happens to obscure the indicator margin for a couple of lines, making it impossible to drag the current statement indicator to those lines.
The "Debugging" toolbar has a button called "Show threads in source":
Turn it off to disable this pop-up, along with the messy-looking graphic underneath the current statement indicator:
(took me far too long to find this, and Googling didn't help, hence this answer... it doesn't help that this button cannot be found by searching for "thread"in the otherwise excellent Quick Launch search box)

System wide right click context hook

**Hello..
i am creating English To Gujarati Dictionary WinForm Application.
I need to set a system wide hook to the right click context menu on for text selection.
it means when this application is running,and if user selects word from any program and right click on it gujarati meaning of that word should be displayed as menu item.
How to do this?
or any other options like Registery Programming,shell extentions etc...?
i have to do this,even if you say its not possible.
so please help me.**
Hooking the mouse activity is the easy part. See SetWindowsHookEx, and lots of questions regarding hooking in SO. This way, you can tell when the mouse is right-clicked.
Getting the selected text is the harder part. See WindowFromPoint, for starters. You'd have to recognize the control, and if appropriate get the selected text from it. This will not always be possible using simple Win32 functions, if the control is complex.
Adding the translation to the right-click menu is probably the impossible part. Adding stuff to explorer context menu is not a problem, because explorer provides that possibility. But various applications will have various right-click menus, without a way to extend them. They might not even use Win32 for the menus, for whatever reason. A better option, IMO, would be one of the following:
Forget about changing the right-click menu. Open a window next to the point of selection with whatever content you want, and let the application show its own right-click menu.
If the user right-clicks while, say, pressing shift, show your own right-click menu, and don't pass the message to the application. So the user will see only one menu, which is yours. The user must of course be aware of this combination.

Resources