Questions tagged [right-click]

A right-click is pressing the right or secondary button on a mouse.

A term used to describe the action of pressing down on the right mouse button. The right-click is used to provide additional functionality to a computer's mouse, usually in the form of a drop-down menu containing additional options.

Please read more at: http://www.computerhope.com/jargon/r/righclic.htm

694 questions
2
votes
2 answers

How to set a icon for this right click menu?

I can add a new item for the folders right click menu using registry: HKEY_CLASSES_ROOT\folder\shell\Your item name But i don't know how to set a icon for created item like this : May somebody help me?
Kermia
  • 4,171
  • 13
  • 64
  • 105
2
votes
0 answers

Why is my onContextMenu working but my right onClick doesn't with React Router Dom and Styled Components?

Trying to fire an onClick with onContextMenu I can detect right click in my child component and a left click works but for some reason the onClick doesn't work when a right click is done. Styled Component: export const NavLogo = styled(Link)` …
2
votes
2 answers

Flutter :: My Refactor Button does not appear while Right Click on VSCode

My Refactor Button does not appear while Right Click on VSCode Flutter: 1.22.5 VSCode: 1.53.0 Is there anyone can help to tell how to make refactor to be appear while Right Click on VSCode? Thx in advance
2
votes
0 answers

VSCode Extension: Add custom command to right click menu in file explorer

I have a command that I want to appear on the menu whenever you right click on any type of file in the file explorer on visual studio code. This configuration from my package.json file works when I right click on typescript files, but what option…
2
votes
1 answer

Adding a new item on google document's context menu using chrome extension

Now I am trying to make a google chrome extension that controls google documents. I'd like to add a new item on google document's context menu using chrome extension. When you click the right mouse button on google document, you can see the context…
2
votes
4 answers

CSS : Firefox right click selects all on my site...why?

I have built a context menu but have found annoyingly that when I right click on my site in firefox all text and images just seem to randomly get selected. It is not a JS issue as I have removed all JS from the site. Thinking it must be a css issue.…
wilsonpage
  • 17,341
  • 23
  • 103
  • 147
2
votes
1 answer

XUL: click on custom statusbar , how to isolate right and left

i've developed a firefox addon with a simple button on the status bar. Now i want to get the right and the left click. Mi code look like this below
alesdario
  • 1,873
  • 6
  • 25
  • 38
2
votes
2 answers

Flex4 Right Click Spark List using ContextMenu()

I would like to add custom right clicks to a number of spark list controls. I have tried the following as an item renderer. (as per the flex 4 cook book). Full Render code here http://pastebin.com/Kx8tJ1cY When I right click on the Spark List I…
Craig Mc
  • 505
  • 1
  • 13
  • 30
2
votes
2 answers

How to Fix Right Click Touchpad Not Working on Ubuntu 18.0

This means that clicking in the bottom right area of your touchpad won’t work in Ubuntu 18.04 by default if you have any solution please share, thanks
Rizwan
  • 3,741
  • 2
  • 25
  • 22
2
votes
1 answer

Access link in browser through right click, Applescript and/or Javascript?

I want to right click a regular link in (primary) Chrome, Safari (secondary) or Firefox/Tor Browser (tertiary) and then send it somewhere else using Applescript. How do I do this? I could imagine that I first use Javascript to get the actual link…
d-b
  • 695
  • 3
  • 14
  • 43
2
votes
1 answer

ExtJS: How to get selected grid record's data on right-click event?

I've a grid and with a context menu function. I've added a new item on context menu and trying to retrieve selected record's data to manipulate. How can i achieve to this? and overriding method during a new item addition; getGridMenu: function ()…
Nuri Engin
  • 813
  • 10
  • 38
2
votes
0 answers

Python: 'Right click' a file in File Explorer to bring up context menu and 'left click' an option from that menu

My goal is to be able to 'right click' a file in file explorer, bring up the context menu and 'left click' to select an option from that menu. My, so far unsuccessful idea, has been to use os.system to get into command prompt from os import…
2
votes
6 answers

Preventing web images from being taken

I've been looking around to see if there exists a good way to prevent viewers from using their right click options to download images that I upload to my website. I know that people can look at the image url in the page source, and was wondering if…
user606767
  • 21
  • 1
2
votes
0 answers

Chrome Extension detect mouseover on context menu item

Is it possible to detect the mouseover event on the custom context menu item added with 'chrome.contextMenus.create({...})'? I want to kind of "preview" the action of the menu item when the user hovers their mouse over that menu item. So to do that…
2
votes
1 answer

Xceed extended WPF datagrid select row with right click

I am trying to add a context menu to an Xceed extended WPF datagrid. I am able to show the context menu and the commands fire from the menu, but right clicking on a row does not set it as the selected row and so the wrong record is used by the…