Squeak smalltalk: why can't I activate the do it menu - smalltalk

I downloaded squeak 4.2 http://squeak.org/ and watch this very basic tutorial
http://www.youtube.com/watch?v=0w1Yub4eUAU
When I type 2 + 2 in workspace window and select right-click the line I can't get any popup menu with "do it" option.
Did I miss something ?

Depending on your platform and configuration that menu may be activated either by a right-click or a middle-click. For Squeak on Windows I believe the default is to middle-click.
If the default feels unintuitive you can invert the right and middle mouse buttons.
To invert the mouse buttons for the current image:
Click on the world background
Select open... from the World menu
Select Preference Browser
Search for mouse in the preferences
Toggle swapMouseButtons
To invert the mouse buttons on the Windows VM:
Open the system menu (small Squeak icon in the top-left window corner)
Under VM Preferrences > Mouse mapping toggle 3 button mouse
You can also activate that menu by ALT-clicking or use the quicker ALT-d shortcut for "do it".

Related

Any JetBrains IDE: How can I map Ctrl + Mouse Wheel to Page Up / Down actions?

Or more generic, how do I map mouse shortcuts (as opposed to keyboard shortcuts)?
(used to this behavior from Eclipse)
I do not see any issues here, at all (at very least for the Ctrl + Mouse Wheel shortcuts).
Screenshots are from PhpStorm 2020.3.2 on Windows 10 x64.
Settings/Preferences | Keymap
Find the desired action (use the search box to filter available actions)
Right click and choose the right option (Add Mouse Shortcut):
Use the desired "mouse shortcut" there (press and hold Ctrl and do Mouse Wheel Up):
Apply and start using it:

B&R Automation Studio: Toolbox not showing

I want to import a program from the toolbox, but the toolbox on the right of Automation Studio is gone. I can't find it anywhere. How do I enable it?
I would say you are doing everything right and the Toolbox pane is there - I can see it (there is a small grey dot there).
You just need to drag the pane separator.
Try the right click on the project name and select "Add object.." the toolbox menu will be shown. 1
When disaster strikes you always have the capability of restoring the default window layout from Window -> Reset Window Layout
Window -> Reset Window Layout

How to add a Stop icon to NetBeans 8.2

On mac in NetBeans 8.2 I have a panel with a run button.
It's a bit strange to me after Visual Studio that there is no Stop button there. Is there a simple way to add it?
It should do the same as Shift+command+fn+delete or Stop Build/Run
It's a bit tricky to restart it every time to test my changes.
I don't think it is possible to easily do what you want.
The only place the Stop icon/button appears in NetBeans is in the Output window, and that is not available for reuse elsewhere, so NetBean's View > Toolbars > Customize functionality won't be of any use.
However....it is trivial to specify a shortcut key for the action associated with the Run > Stop Build/Run menu entry:
In NetBeans select Tools > Options
Click the Keymap icon. All the actions will be listed, along with their shortcuts.
Type Stop in the Search field to locate the Stop Build/Run action.
For the listed action named Stop Build/Run click the ellipsis and select Edit... from the popup menu.
The cursor will move to the Shortcut field. You can now select any available shortcut. For example, in the screen shot below I pressed the ALT key, and then selected ALT+T from the drop menu of available shortcuts.
Then, you can just submit ALT-T from the keyboard to terminate a running application, instead clicking the Stop button in the Output window, or selecting Run > Stop Build / Run.
I know that you were asking for a toolbar solution, but in the absence of one perhaps a keyboard shortcut is a viable alternative.

How do I disable the hover menu appearing in the lower lefthand corner of the intellij window?

How do I disable the menu appearing in the lower lefthand corner of the intellij window?
Is this called the tool menu?
I use hot corners on my macbook and am constantly activating it accidentally.
There is a Registry key for that, you can either add
-Dide.windowSystem.showTooWindowButtonsSwitcher=false
into .vmoptions (Help | Edit Custom VM Options) or you can press Help | Find Action | Registry, Enter (or Ctrl+Alt+Shift+/) and trigger it in the dialog (start typing the key name for the speed search):
This menu can be also disabled by disabling the status bar:

How to stop annoying documentation popups in IntelliJ IDEA

Using IntelliJ IDEA 15, I get these constant and annoying documentation popups whenever my mouse is anywhere in the code window for a decompiled class (from a 3rd party jar). It will popup docs for whatever variable/method/class/anything happens to be near my mouse. If my mouse is not near any lines of code, it will popup for the current classfile, so basically I can't browse code unless I move my mouse to another window.
It only happens with decompiled classes, not my normal code. How do I stop these?
Go to File>Settings>Editor>General - in the section 'Other', uncheck 'Show quick documentation on mouse move'.
In later versions of IntelliJ, the path is File>Settings>Editor>Code Editing, and it is under the "Quick Documentation" section.
In my cause, 'Show quick documentation on mouse move' was in Editor > Code Editing:
If you want the documentation bubble but not the popup window, do this:
Place your text cursor on some text which causes the popup.
Press ctrl + q (or whatever keyboard shortcut you have for quick documentation) a couple of times until the popup window disappears, the quick documentation will then revert to the "bubble" on hover.
Under the File/Settings/.., at the top search bar, type in for "Quick Documentation", will point to the location.
Press <F1> button to show/hide this pop-up.