Is there a keyboard shortcut in Fiddler to resume all breakpoints? It seems like a pretty common operation that one would want to have a shortcut for.
I didn't see anything on the fiddler website
There's no single key-combo for the "Resume all" button on the toolbar. But you can get close: hit ALT+Q to set focus to QuickExec. Type g or go and hit Enter.
Related
Context:
When a code completion pop-up (Ctrl+Space) appears I often need to have a look at docs for each individual method / constant / etc). The IDE is set to show the Quick Documentation pop-up for a highlighted suggestion automatically after a small delay. Sometimes the documentation is too big and I need to jump to the Quick Documentation pop-up in order to be able to scroll down through it.
Using the mouse I can click on the documentation pop-up and scroll using the mouse wheel. When I'm done reading the documents I can click on the code completion pop-up to explore other suggestions.
My problem is that once the Quick Documentation pop-up is in focus, I haven't found a way to move the focus back to the code completion pop-up without using the mouse.
While I can move focus from the code completion to the quick documentation pop-up by pressing Ctrl+Q, and then use the arrow keys to "scroll" through the documentation, I haven't found a shortcut to return the focus to the code completion pop-up.
What I've tried to far:
Esc closes both pop-ups
Pressing Ctrl+Q a second time opens the docs on a tool window
Any insights on how I can close the Quick Documentation pop-up or move the focus back to the code completion pop-up in such a way that preserves the suggestion that I have previously highlighted?
This seems to be a bug in IntelliJ IDEA . Feel free to add your use-case at https://youtrack.jetbrains.com/issue/IDEA-168388
Here is a workaround that could be used for the time being:
Open Documentation as a Tool Window:
Add keyboard shortcut to focus documentation window from anywhere:
When the completion popup appears, focus documentation tool window by the shortcut from [2] and scroll it
Press Esc to unfocus documentation tool window and focus completion popup
Google tells me "The shortcut "Restart runtime" is disabled when a code cell output iframe is active. Use the escape key to leave the iframe and enter the shortcut again." when I try to restart after clicking a cell output.
I was just curious why I can't restart when on a cell output.
When the output frame is focused, keyboard shortcuts end up directed there first.
Of course, you can always select the restart runtime menu regardless of keyboard focus.
I am auto generating scripts using qtp10.0
My application has a popup with message The current web page is trying to open a site in your trusted site sites list. Do you want to allow this? and I want to click yes on this popup. But my script is not doing this.
Can't we click on security warning Yes button using script in qtp 10.0?
First of all yes you should be able to click the "yes" button with QTP 10.
Kind of hard to answer specifically without more details but I will give you some pointers on where I would look to fix the problem.
1) Make sure you have the correct identification properties stored in the object repository for the browser, the dialog and the yes button by using the object spy.
2) Not the best solution but as the browser, and therefore the Yes button, is probably not the application under test it is probably satisfactory to use the hotkey for the yes button. (if one is available). To do this the code would look something like this.
'If the dialog exists
If Browser(<BrowserName>).Dialog(<DialogName>).Exist(3) Then
'Use hotkey to press the yes button
Browser(<BrowserName>).Dialog(<DialogName>).Type "Y"
'If the dialog still exists
If Browser(<BrowserName>).Dialog(<DialogName>).Exist(1) Then
'report failure
Else
'report step done or passed
EndIf
EndIf
Feel free to comment and I will attempt to help you further if you are still having problems.
I am building a StatusBar App in Cocoa, therefore I have no menu. Having no menu implies not having a "File > Close" menu item, which normally listens to the shortcut "Command + W".
From my StatusBar App the user may open a window to change the preferences and that's where I'm running into problems: The user can only close the window by pressing the red dot with the mouse. However, like alle applications I want to support the "Command + W" shortcut as well.
At the moment I see two possibilities to solve this issue:
Place an invisible button on the window which listens to the shortcut.
Add an application-wide listener for the shortcut and contact the window manually.
Both solutions feel like a misuse of the system. The first solution can lead to unexpected behaviour (the window closes if the user hits the invisible button by chance) and the second solution will still result in a beep, since the window does not know that it handles such a shortcut.
Is there an elegant way to solve this problem? Since the view should know what to do, a solution with just Interface Builder would be perfect. If there is no elegant way, is there a way to enhance the solutions mentioned?
Thanks in advance!
If you put a File > Close menu item in your MainMenu nib, the shortcut will work, even though the menu isn't visible.
If you choose to implement an app-wide listener for the shortcut instead, you can get rid of the beep by returning nil from the block, so that the original event doesn't get passed on.
I need to take snapshot if command prompt window running in full screen mode.
I had tried it using PrintScreen,Ctrl+PrintScreen, Ctrl+Alt+PrintScreen button(s) but nothing seems to work
Also are there any reasons that the print screen button does not work in full screen commandprompt mode? After all, it does for all windows under normal conditions.
Abdul Khaliq
In full screen mode all you have is text. There is no graphical `rendering' as such. If you can capture the text, it is enough ... though you can always reconstruct a png image later from the text (if you really have to get an image out of it).
Why don't you just use an external screen shot software?
There's many, e.g. greenshot, which is free (is in speech and beer :-)).
did you try alt + print screen?
Click any window except the command window and then hit PrtScrn.
First off all open cmd in full screen mode then click on print screen button after that open paint brush and press ctrl+v (past) you can save it in any where, where ever you want (file type should be .png).
I wasn't able to find any of these replies that work, and I can't install unapproved software do to IT policies. Here is what I did:
Right click inside command window. Hit select all. Right click outside of window (on top bar close to the maximize minimize controls. Select edit; select copy. Open a notepad window and paste. The advantage here is you have text that can be copied and pasted back into a command window later. I hope this helps.
press ctrl+a //select all
press ctrl+c // copy all text
write notepad mytext.txt + press entet // open notepad
press ctrl+v //paste in text in notepad
press ctrl+s // Save file
press ctrl+w // Close notepad.