Tagged Questions

A context menu is a menu in a graphical user interface that appears upon user interaction, such as a right mouse click or middle click mouse operation.

learn more… | top users | synonyms

7
votes
8answers
2k views

Overriding the right-click context menu in web browsers - pros and cons

We are programming a web application (not 'just' a web site, but functionality-wise a real application), and have the following discussion for the next release: our UI designer wants to replace the ...
6
votes
4answers
7k views

How to disable right-click context-menu in javascript

Not that I'm trying to prevent 'View Source' or anything silly like that, but I'm making some custom context menus for certain elements. EDIT: response to answers: I've tried this: <a id="moo" ...
5
votes
17answers
590 views

What is your favourite programmer's context-menu addition for your Windows machine?

What is your favourite programmer's context-menu addition for your Windows machine?
4
votes
2answers
144 views

Delphi add menu item in Windows Explorer right click

How to add a right click context menu in Windows Explorer for all kind of file extension? From what I read on the internet, I read a way to do this for certain file extension. My question, how can ...
4
votes
3answers
2k views

Creating context menu for win32 API

I am trying to create context menu for win32 application using case WM_RBUTTONDOWN: { HMENU hPopupMenu = CreatePopupMenu(); InsertMenu(hPopupMenu, 0, MF_BYPOSITION | MF_STRING, ID_CLOSE, ...
3
votes
2answers
405 views

How to have insert/remove WPF grid row/column in context menu in design mode?

In the machine at the office my Visual Studio 2010 has the context menu to insert/remove row/colunm from a grid which is very convenient compared to manually insert - requires to update every each of ...
3
votes
3answers
697 views

C# Windows 'Open With >' Context menu behaviour

I'm writing a C# Windows app to visualise and modify '.build' files (nant scripts). I would like the user to be able to right click on a .build file in windows explorer and select the 'Open With >' ...
3
votes
3answers
799 views

Pass multiple files / folders from windows explorer to external application

Hi does anyone know how to get windows explorer to pass multiple files / folders through to an external app (c#) referenced in the registry? I am current able to act upon a single file / folder using ...
2
votes
0answers
23 views

contextmenu in webbrowser Windows Phone 7

i successfully added a contextmenu to my webbrowser with this javascript code: public void AttachContextMenu() { try { if ((App.Current as ...
2
votes
2answers
188 views

Adding a context menu to the tab of a TPageControl

I wish to add a context menu to the (just the) tab of a TPageControl as distinct from the tab area (e.g like Delphi does to offer file/page options). I know I can do this with TRzPageControl but how ...
2
votes
2answers
98 views

Right click on a menu item and show options

I have menu ServerList, I am adding the menuItems dynamically using C# code. It reads the servers list from file and populate the menu items. I have added the right click options for each server. Edit ...
2
votes
1answer
844 views

How to create a Context Menu on a MapView?

I would like to have a Context Menu on my MapView and let the user choose between a map or a satellite photo in the background. I have tried to create a Context Menu by following Creating Menus but it ...
2
votes
1answer
505 views

Add option to phone log context menu - Android 2.0

I would like to program an application for Android that when installed would add an item to the context menu that pops up when you long-press on a call record in the call log tab in the built-in ...
2
votes
1answer
3k views

Check value to disable/enable Context Menu Item (android)

In my application has a ListView. When long press on item the "Context Menu" will appear. I want to check the data ID, then set disable/enable to my Context Menu "Items". I can not find out the ...
2
votes
3answers
915 views

How do I trigger the browser context menu on an element. (As if the user right-clicked)

I have the need to trigger the opening of the browser (IE, Firefox, Safari, etc) context-menu via javascript. The problem I am trying to solve, is when an overlaid element is right-clicked, the ...
2
votes
2answers
1k views

Accepting File Argument in Python (from Send To context menu)

I'm going to start of by noting that I have next to no python experience. As you may know, by simply dropping a shortcut in the Send To folder on your Windows PC, you can allow a program to take a ...
1
vote
1answer
35 views

How do I get information about the file/folder that has been right clicked BEFORE my OSX Service is displayed?

I am contemplating the creation of an OSX System Service as outlined here: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/SysServices/introduction.html My understanding is that ...
1
vote
1answer
61 views

Is there a way to modify context menu in iOS webView using Appcelerator Titanium?

I am using Appcelerator Titanium to develop an iOS app. I have searched the web for quite a long time but still can't figure out how to add an item to the webView's context menu shown when tap and ...
1
vote
1answer
70 views

Multiple context menu entries for a chrome extension?

I've been playing around with a Chrome extension to enable me to right click on some selection of text and search that text on a site like Wikipedia or IMDb. I've managed to do this, but when I right ...
1
vote
2answers
530 views

WPF - Open ContextMenu on left mouse hold down

In Google Chrome I really like the functionality of the left mouse hold down on the Back button to get the full browse history. In my WPF app: for a button with a context menu, how can I open the ...
1
vote
1answer
70 views

Right Click in Windows Explorer

I have been trying to add context based right click in windows explorer for a file of extension L5X. I have tried HKEY_CLASSES_ROOT\l5xfile\Shell\convert\command and set the (Default) key value to ...
1
vote
0answers
299 views

Javascript: Delaying display of the context menu (Chrome)

I'm trying to dynamically create context menu items in a Chrome extension; this involves sending a request to the main extension process to modify the menu, and blocking the menu from being displayed ...
1
vote
2answers
653 views

open program once with multiple files as arguments from explorer

I have a program that works when, a file is opened with it using the right click menu in explorer. But if I select multiple files and then right click and open with my program then it opens multiple ...
1
vote
1answer
2k views

Add menu item to windows context menu only for specific filetype

i've dveloped an application that load an image using the context menu of window (right click on the file) and for the moment is working, but the reg key is on HKEY_CLASSES_ROOT\* and it works with ...
1
vote
2answers
95 views

How to avoid context menu handler application from blocking the explorer?

I have created an application for which can be invoked through context menu by deriving from IContextMenu and IShellExtInit. I register the DLL and when I right click the application gets invoked. ...
1
vote
2answers
464 views

Shell menu item separator

My question may be the repeated one here but even after googling i havn't got the solution yet. I have added a shell context menu item for files i.e. when you right click on a file within explorer ...
1
vote
2answers
348 views

Browser Context Menu customization?

Is there a way to override the "undo" and "select all" in right click context menu of the browser over textarea? Thank you.
1
vote
1answer
635 views

Right Click Context Menu in IE - Add new items

Adding items to the registry item HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\ I can successfully create new options in the Internet Explorer right click menu. Trouble is, I only ...
1
vote
1answer
554 views

How to make the Developer Express popup menus semitransparent like in Firefox?

I am using DevExpress Build 47. Is there a way to make the context(aka popup) menus semi transparent?
1
vote
1answer
101 views

Internet Explorer context menu context bits

I am trying to add two new entries to the context menu, one for images and one for anchors. I am using 0x2 for images 0x20 for anchors they are displayed correctly but when there is an image with a ...
1
vote
3answers
743 views

Missing Registry entries for the Context Menu

My Vista Home Basic SP2 machine misses the relevant Registry values, described under Page 171 of the tutorial (latest and relevent edition) The registry keys which hold the information on which ...
1
vote
4answers
2k views

Blackberry trackball click, instead of responding to event, context menu is shown why?

I'm running into the following scenario on some devices: when the use clicks on field and expects an response, instead of properly responding to that click event, the device shows the context menu at ...
1
vote
1answer
98 views

What the best Language to use when creating Windows Shell Context Menu?

I'm writing a app which integrates with windows shell and adds an additional context menu. And am considering a couple of languages to write it in: MS .NET - I'd rather not use managed code for this ...
1
vote
2answers
98 views

how can I get the path of a context menu selection?

I have a custom entry on the Internet Explorer's context menu. I would like to do something with the selected item, for example, run a program that receives that selection as ARGV[1]. For example, if ...
1
vote
3answers
4k views

Android add item to global context menu

When you long press on something in Android, a context menu comes up. I want to add something to this context menu for all TextViews in the system. For example, the system does this with Copy and ...
0
votes
1answer
37 views

Get Text From list view item

I am trying to get text of list view item. And I am making the header of Context menu is clicked text of item. This is my view <LinearLayout android:id="@+id/innerlayout" ...
0
votes
1answer
14 views

onCreateContextMenu isn't being called

It looks like the onCreateContextMenu insn't being called at all. In my onCreate for my ListActivity I have: list = getListView(); registerForContextMenu(list); (I know it's redundant, and I've ...
0
votes
0answers
9 views

Highlighting a part of text afterwards showing context-menu

Hi I wrote a application that can highlight a text. But it is not accurate.an other words, I can't find start point from selected text! This is my code: txtContent = (TextView) ...
0
votes
0answers
36 views

How to get the file item right-clicked in Finder on OSX

I'm writing a plugin via mach_inject to add an item to Finder context menu. I have successfully add it by hooking NSMenu. But now i need to get the item that is right-clicked. Someone said we could ...
0
votes
1answer
40 views

How to control order of extension item in Chrome context menu

Is there a way to control the order that my Chrome extension's context menu item appears in? It probably can't appear above any of the Chrome's built in context menu items (like "Open link in new ...
0
votes
1answer
56 views

Handling onclick event of Contextmenu Menu Item on windows form

I have Windows Form App. I have added Context Menu that appear when you right mouse click over the listbox. But some reason I could not figure out how to catch onClick event for ContextMenu- ...
0
votes
1answer
93 views

c# ContextMenu Handler

I've tried to use this code to develop my own context menu handler for my app: http://www.codeproject.com/KB/shell/ratingcolumn.aspx However nothing happened. Then I tried just compiling that code, ...
0
votes
0answers
105 views

How to pops up default context menu on Android WebView?

I'm developing an application and it uses WebView as an header view of ListView. I want this WebView to show the default context menu (just like in a web browser) on long touch, but I'm having trouble ...
0
votes
1answer
109 views

How to create ContextMenu with no border in C#?

How to create ContextMenu with no border in C# (winform)? The question is quite straight forward, I just only want to remove the border of ContextMenu. The ContextMenu here is ...
0
votes
1answer
80 views

How to add copy link location in custom context menu

I'm developing an asp.net mvc 3 web application. Here I need to add custom context menu. So I have disabled the default right click context and added a plugin for custom context menu. I'm trying to ...
0
votes
0answers
46 views

Adding item onto context menu for selected text

I'm new in C# and this is one of my very first few programs on Windows. Mostly I write Java servlets and EJBs. What I would like to know if it is possible to do the following for a WPF application on ...
0
votes
2answers
112 views

Limit the number of visible menu entries/items in context menu

I have a popup context menu that is dynamically populated with entries. It is possible that the number of entries is quite large, so the context menu would take up a lot of space on the screen. If ...
0
votes
1answer
162 views

Positioning of Context menu

I have developed a right click context menu in javascript for table .The position of context menu is at the down of cursor for every row of table.The final row of table is at end of the page,Now on ...
0
votes
2answers
850 views

Show context menu on-click (marker)

I have this code for context menu and it's working fine google.maps.event.addListener(map, 'rightclick', function(e) { // start buy hiding the context menu if its open contextMenu.hide(); ...
0
votes
1answer
584 views

How to add options to Android's native 'Edit text' context menu

Is it possible to add something to the list of items that shows up when a user long presses on any Edit Text? (Cut, copy paste, select text, select all, input method) I want to add another option to ...

1 2