I heve this issue in Inkscape:
file>document properties
Won't open. Not even after cache clear or PC reboot.
I have to resize the page to the current selection.
I solved by finding the Shortcut to shrink the page on the selection:
CTRL + SHIFT + R
Related
I am running an R file with the PyCharm R plugin. Is there a way to clear the console? I have tried ctrl + L and cmd + L, but neither of them works.
I can't find a default key-binding for clearing the R-console in PyCharm, but you can press Ctrl-Shift-A (or navigate to Help-> Find action) to find the action, and set your own binding, in this case you would want to search for/bind clear all (not clear).
Put the mouse cursor on the area of the R-console where the text is that you want to clear.
Press the right mouse button. Choose the option "Clear All".
See screenshot.
I'm used to using Ctrl- Alt - I to create new code chunks in R Markdown. Well I don't know what I did, but now that combo of keys inverts the colors on my screen instead of creating a new code chunk. Suggestions on how to change it?
That keyboard shortcut is enabled when you enable Windows Magnifier.
https://support.microsoft.com/en-us/help/11542/windows-use-magnifier-to-make-things-easier-to-see
To confirm that it is enabled:
open Settings (Win-x, n for Settings)
select Ease of Access
left side, select Magnifier
notice if you have "Turn on Magnifier" enabled
(You can disable it here, but keep reading for more context.)
On that screen, you can see that default hotkeys include:
Win + (windows key and "plus" key) for enabling
Win Esc to turn off magnifier
So perhaps it should be possible to disable globally with Win Esc and then regain control of Ctrl-Alt-I in RStudio (and/or elsewhere).
I tried ctrl- which was suggested somewhere online, but that makes the font smaller. (ctrl+ though does not undo that, so I had to restart LightTable to get back to normal).
Pressing ctrl enter I can manage to write and use "jump to definition", but obviously I will not be going through that every time....
If this should have helped, it is rather confusing what the period and comma here mean:
So do the built-in default keyboard shortcuts allow that, and how do they allow increasing font size?
Hit cmd/ctrl + enter
in the pane that this brought in: type "jump to" to see the command "jump to...", plus its keyboard shortcut. you can select the command from there but that would suck if it were the only way to invoke commands, so observer the keyboard binding you get there: (in the blue circles below)
notice that keys are separated by dashes in the display of the keyboard shortcut, so do not actually enter a dash because it is not part of the command and you will be doing crazy stuff if you assume otherwise
same thing for finding out how to zoom: enter "zoom" in that pane
unset you hair on fire
Courtesy of #rundis from the gitter channel...
Looking for a solution to a hidden window - either a windows event that occurs when the TaskBar Icon is clicked.
or alternatively, a way to remove the TaskBar Icon. The Tray Icon is easily hidden - that is not the problem.
There is a sample script on the AutoHotkey's Website called Minimize Window to Tray
The script itself uses the hotkey Win+H to hide the active window. Win+U then shows the last hidden window. If this is not the functionality you are going for, I'm sure you can take a look at the script and pick out what you need. Hope this helps you out.
I've a possible answer to detecting a Click on the TaskBar Icon - but I'm concerned it will differ for each version of Windows. Using OnMessage(Wm_Activate := 0x06, "testmessage") - then MouseGetPos to get the Window name, I can eliminate all but 'MSTaskListWClass1' the name of the Icon I want. But I suspect that the name is only valid for Win7.
How i can create pop-up window (with some text)when focus on TextInput (like in windows xp when i focus mouse cursor on file it shows short info).
ps: example of pop-up in windows xp alt text http://img38.imageshack.us/img38/3884/2222ty.gif
The form of window you are referring to is generally refered to as a "Tooltip"
I think that this is what you're looking for.