How do you screen captures a context menu?

In Windows XP, I was able to hold the print screen key down while I was open a context menu and then press Alt to capture the screen with the context menu in the Clipboard.  Now I can't do that work (using Windows 7 64-bit) and cannot do the same with the cutting tool, as far as I can tell.  Any guidance would be appreciated.  I read the thread on the print screen key does not as it used and I agree - I did find the magic combination to make it work at all (I tried Control, Alt, function and various combinations without success.)

--E

Ah, I found it (at least on my Dell Latitude E6510).  The magic combination is the first F-lock (Fn + F5), and then FN + F11 (Prnt Scrn).

Tags: Windows

Similar Questions

  • How are you going to the main menu while watching a dvd

    While watching a dvd how do you get to the main menu?

    In Media Center, right-click and select controls then menu options to go to the DVD menu.

  • How to add commands to the context menu for the types of files (add associations)?

    I would like to download anime and re - encode standard dvd (mpeg2) format before you burn it to a DVD for better quality.  I have a program suite that supports the grunt work, but to do a contextual menu command that calls the original batch file that the user must manually add it to the menu of context by file association.  I found that I can access the menus of file associations, but the option to add a new association with an existing file type does not seem to exist.  Is there a registry entry, I need to change or add to allow me to customize my context menus in Windows 7?

    Create a text file (make sure you have the framework where you DO NOT hide known file extensions unmarked)

    Change the new text file... Copy the following: [quote]

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\WMP11. AssocFile.AVI\shell\Queue for encoding]
    @= "& Queue for encoding.

    [HKEY_CLASSES_ROOT\WMP11. AssocFile.AVI\shell\Queue for Encoding\command]
    "@="c:\\dvdstudio\\scripts\\Queue.bat \"%1\"

    [HKEY_CLASSES_ROOT\WMP11. AssocFile.MP4\shell\Queue for encoding]
    @= "& Queue for encoding.

    [HKEY_CLASSES_ROOT\WMP11. AssocFile.MP4\shell\Queue for Encoding\command]
    "@="c:\\dvdstudio\\scripts\\Queue.bat \"%1\"

    [HKEY_CLASSES_ROOT\CCCP. WMP. AssocFile.MKV.1\shell\Queue for encoding]
    @= "& Queue for encoding.

    [HKEY_CLASSES_ROOT\CCCP. WMP. AssocFile.MKV.1\shell\Queue for Encoding\command]
    "@="c:\\dvdstudio\\scripts\\Queue.bat \"%1\"

    [/ quote]

    Save the text file..., rename the text file with the .reg extension

    Double-click the new registry file to add the context menu commands to your registry... everything is done! :)

    And thank you very much, BluePlateSpecial!

  • (bb10) How to cancel an opening from context menu

    I have a strange behavior with context menus.

    I have two lists in my application with two context menus, a menu for each list.

    I have a logic to determine if the popup should be launched or not, and if I don't stop ContextMenuEvent.OPENING event, this menu is not started. Fine. But after that, the menu popup stops working for the other list.

    I think that something in the ContexMenu classes must be left in a bad state after preventDefault on the opening ceremony.

    What will be the best way to stop to open a context menu and still works for the other components?

    See the example...

    package
    {
        import flash.display.Bitmap;
        import flash.display.BitmapData;
        import flash.display.Sprite;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.events.Event;
    
        import qnx.fuse.ui.actionbar.ActionBar;
        import qnx.fuse.ui.core.Action;
        import qnx.fuse.ui.core.ActionBase;
        import qnx.fuse.ui.core.ActionSet;
        import qnx.fuse.ui.core.TabAction;
        import qnx.fuse.ui.events.ContextMenuEvent;
        import qnx.fuse.ui.events.DragEvent;
        import qnx.fuse.ui.listClasses.List;
        import qnx.ui.data.DataProvider;
    
        public class TestPush extends Sprite
        {
            private var actionBarOverflow:Sprite;
            private var content:Sprite = new Sprite();
    
            private var slideX:Number = 0;
    
            public function TestPush()
            {
    
                super();
    
                // support autoOrients
                stage.align = StageAlign.TOP_LEFT;
                stage.scaleMode = StageScaleMode.NO_SCALE;
                stage.addEventListener( Event.RESIZE, function( e:Event ):void
                {
                    actBar.y = stage.stageHeight - actBar.height;
                } );
    
                content.addChild( new Bitmap( new BitmapData( stage.stageWidth, stage.stageHeight, false, 0xffffff ) ) );
                // support autoOrients
                stage.align = StageAlign.TOP_LEFT;
                stage.scaleMode = StageScaleMode.NO_SCALE;
    
                var dp:DataProvider=new DataProvider();
                dp.addItem({"label":"item1"});
                dp.addItem({"label":"item2"});
                dp.addItem({"label":"item3"});
                dp.addItem({"label":"item4"});
                dp.addItem({"label":"item5"});
                dp.addItem({"label":"item6"});
                dp.addItem({"label":"item7"});
                dp.addItem({"label":"item8"});
                dp.addItem({"label":"item9"});
                dp.addItem({"label":"item10"});
                var list:List=new List();
                list.dataProvider=dp;
    
                actionBarOverflow = new Sprite();
    
                var actBar:ActionBar=new ActionBar();
                actBar.showTabsFirstOnBar(false);
                actBar.reserveActionSpace(true);
                actBar.backButton = null; 
    
                actBar.tabOverflowParent = actionBarOverflow;
                actBar.width=stage.stageWidth;
                actBar.showTabsFirstOnBar(false);
                actBar.addAction(new TabAction("TEST"));
                actBar.addAction(new TabAction("TEST2"));
                actBar.addAction(new Action("Test1"));
                actBar.addAction(new Action("Test2"));
                actBar.addAction(new Action("Test3"));
    
                var list2:List=new List();
                list2.dataProvider=dp;
    
                addChild(actionBarOverflow);
                addChild( content );
                content.addChild(list);
                content.addChild(list2);
                content.addChild(actBar);
    
                actBar.x=0;
                actBar.y=stage.stageHeight-actBar.height;
    
                list.width=list2.width=stage.stageWidth;
                list.x=list2.x=0;
                list.height=(stage.stageHeight-actBar.height)/2;
                list2.height=(stage.stageHeight-actBar.height)/2;
                list.y=0;
                list2.y=list.height;
    
                list.addEventListener(ContextMenuEvent.OPENING, contextOpening);
    
                var actionsForBar:Vector. = new Vector.;
                actionsForBar.push(new ActionBase("Action 1"));
                actionsForBar.push(new ActionBase("Action 2"));
                var actionset:ActionSet=new ActionSet(actionsForBar);
                var contextactions:Vector.=new Vector.();
                contextactions.push(actionset);
    
                var actionsForBar2:Vector. = new Vector.;
                actionsForBar2.push(new ActionBase("Action 3"));
                actionsForBar2.push(new ActionBase("Action 4"));
                var actionset2:ActionSet=new ActionSet(actionsForBar2);
                var contextactions2:Vector.=new Vector.();
                contextactions2.push(actionset2);
    
                list.contextActions=contextactions;
                list2.contextActions=contextactions2;
    
                actBar.addEventListener( DragEvent.DRAG_MOVE, onDragMove );
            }
    
            private function contextOpening(e:ContextMenuEvent):void{
                trace("CANCEL OPENING");
                e.preventDefault();
            }
    
            private function onDragMove( event:DragEvent ):void
            {
                slideX += event.deltaX;
                content.x = Math.round( slideX + stage.stageWidth );
            }
        }
    }
    

    Although strobejb could be a solution, it involves a lot of changes to my code at the moment, but I think I found a good solution.

    Instead of dealing with ContextMenu I forget and override onLongPress extension from the list.

    override protected function onLongPress (): void {}

    }

    And if I have to display the context menu I can make inside the method with:

    showContextMenu()

  • How to ADD 'Empty Recycle Bin' in the desktop context menu

    Hey guys,.

    I don't know how to empty trash from the context menu, but how to put under 'Refresh' or how do I add a line above "paste shortcut" If the trash is under that?

    Please put the possibility to empty the trash in the mouse controls (i.e. do a right click on the mouse button, empty the trash).

    Default features the right click of the mouse:
    1 view

    2. sort by

    3 discount

    3 empty the trash<------- add="" that="" feature="">

    4 paste

    5 paste the shortcut

    ... so on n etc.

    Thank you

    Hello r0ot,

    Thank you for visiting the Microsoft answers community.

    This can be done editing the registry using the following:

    ·          Open Notepad

    ·          Place the following lines in bold in Notepad:

    Windows Registry Editor Version 5.00

     

    [HKEY_CLASSES_ROOT\Directory\Background\shell\empty]

    "CommandStateHandler" = "{c9298eef-69dd-4cdd-b153-bdbc38486781}".

    'Description"="@shell32.dll,-31332 '.

    ' Icon '=' shell32.dll, - 254 ".

    'MUIVerb"="@shell32.dll,-10564 '.

    "Position"="Bottom".

    [HKEY_CLASSES_ROOT\Directory\Background\shell\empty\command]

    "DelegateExecute" = "{48527bb3-e8de-450b-8910-8c4099cb8624}".

    ·          Save the file as recyclebin.reg

    ·          Run the file

    WARNING: Change the REGISTRY settings can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the REGISTRY settings configuration can be solved. Changes to these settings are at your own risk.

    Chris.H
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to use AppleScript to create a menu shortcut in figures?

    Does anyone know how I can create a pop up menu numbers using AppleScript.

    say application "Numbers".

    activate

    say le first table of the sheet active of the document 1

    the value the format of cell "B3" to popup menu

    end say

    end say

    I can create a pop up menu by using this code, but this is the default list.

    If I have a composed list {'mouse', 'Keyboard', 'Trackpad'}, how would be to create a context menu with these items?

    Thanks in advance.

    Steve Longley

    Hi Steve,.

    I wonder why you feel the need to use (or what you think you would get to use) an AppleScript to create a cell in the context menu.

    With the help of numbers 3, it's a fairly simple process:

    Open a table, or use a column with enough empty cells to accommodate the menu in the menu items.

    Access to the list of items of a line in your column.

    Select all cells that contain entries.

    Open the Inspector to Format, choose the cell, choose the context menu.

    Any selected cell now contains the same menu, each set to the original value in this cell.

    If you want that each menu includes a "white" cell, then:

    Select all the cells (three).

    Modify the beginning with... pop - up 'Start with white '.

    Click on one of the cells, and then click control v next to the cell to display the menu choices. Each cell contains the same menu with the value initially entered in the selected cell, so what a no point, which will produce a cell empty, at the top of the list.

    The menu can be copied and pasted into other places or can be filled in the column or line using the handles to fill yellow appearing in the centres of the edges of the cell when the mouse cursor is brought near. The cell glued/filled setting will be the same as that of the pasted source cell.

    Kind regards

    Barry

  • Can I add 'Run' in my context menu?

    Hey everybody,

    I was only to learn how to add items to my context menu (the right-click menu) and I was wondering how to add the 'Run' application to this menu, because I'm lazy and I don't like having to go to the start menu whenever I need to use it. Thank you for your time and advice is much appreciated.

    Hello newk0001 and welcome to the forum of Microsoft

    Yes, it's a simple one just follow along and you should be fine

    do a search for "Run" in your windows Explorer»

    Copy the path to the program "Run".

    Press the Windows key + r

    Type "regedit" without quotas and press return

    Click Yes if prompted

    Search for "HKEY_CLASS_ROOT\Directory\Backgrounds."

    Make a right click on shell-> click New-> key

    Name the button "Run".

    Right-click the new key "Run", and then click New-> key

    Name the button "order".

    Click the new key to select.

    Double click "(default)" witch is in the right pane

    Paste the path to the value data: text box

    Restart your computer

    When you open a session right click on the desktop and notice that you now have the enforcement program in your context menu

    good luck and have fun with her

  • Upcoming context menu in the screenshot using Display.Screenshot

    Hi all

    I have a Menu item. When click on that I take screenshot, but I also get the context menu in the screenshot. I want only the screenshot to the screen behind the context menu.

    Pointers for this?

    Thanks in advance,

    Sandeep

    Thanks for you answers.

    I tried to have the timer also option to wait for a while before taking screenshot didn't work.

    Then I tried after option, it worked. I've added a call to repaint before taking a screenshot. Is this a good method to do?

    // Added this line before taking screenshot UiApplication.getUiApplication().repaint();
    Display.screenshot(bitmap,0,0,Display.getWidth(),Display.getHeight());
    

    I'll also explore the options mentioned by you.

    Thank you

    Sandeep

  • Strange behaviour of the context menu in the pop-up window to disable the option

    Hello

    I have the table with the context menu of the pop-up window

    < f: facet name = "contextMenu" >
    < af:popup binding = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.p1}" id = "p1" contentDelivery = "immediate" > "
    < af:menu text = "menu 2" binding = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.m2}" id = "m2" > "
    < af:commandMenuItem text = "#{web_Bundle ['label.toolbar.menu.item.record.edit']}" "
    Binding = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.cmi3}" id = 'cmi3' "
    actionListener = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.showEditBookRecordPopupActionListener} '"
    Disabled = ' #{bindings. " RecordStateName.inputValue == 'ARRANGED'} "/ >"

    disabled the option works strange. When I right click on the folder with RecordStateName.inputValue = 'ARRANGED' menuItem is enabled. By selecting this menuItem enabled, nothing happens but menuItem is disabled. Disabled menuItem never going back active even I right click RecordStateName.inputValue "ARRANGED" <>and click on disabled menuItem does nothing.

    Help me how do to turn menuItem in context menu of the pop-up window.

    I use JD Studio Edition Version 11.1.1.5.0 on Weblogic 11.1.1.5

    Thanks in advance

    Hello

    You must use contentDelivery = "lazyUncached" to the context menu for re-read its content.

    Frank

  • Is it possible to add a context menu to the blocks of text?

    I try to add an element of context menu for text blocks, I'm kind of a begginner with Creative Suite Extension Builder, I found out how to add a context menu, but not how to add it based on what the user right click. If anyone can point me in the right direction (with a bit of the code example will help a lot), I would be very grateful. Thanks in advance!

    You're talking about adding a menu item to the "layout context Menu. Right? If you need the text context Menu, then it's simple...

    Here's what you need to do in this case: you need to fix a BEFORE_DISPLAY event on the menu and check what is the currently selected item. If it is a block of text, you add the menu item. If this isn't the case, you delete it. (You will obviously need to check if it is already there first...)

    Make sure you only to add and remove menu item and not the associated scriptMenuAction.

    Substances

  • Media Player associated context menu selections does not

    When right clicking on a media file and selecting Add to the playlist playlist with Windows Media Player, there is no answer.  Double click on any multimedia file, no response.  By selecting open with and then choosing Windows Media Player results in "the parameter is incorrect."  Open Windows Media Player then playing files works fine, just context menu nonfunctional selections.  Media Player is the default program for all media files and it has its flaws.  By selecting open with, and then using Media Player Classic works very well.  Media Center setting as default player has the same results as the definition of Media Player as the default player, namely, the context of the menu options will not work.  Suggestions?

    The system is Vista Home Premium SP2

    Computer Dell XPS410

    Unfortunately, this option is not available, as I have a copy of Vista manufacturer.  I have an image backup, but it's a couple of months. Guess I'll have to bit the bullet and use it.  BTW: when you use Glary Utils context menu util, I notice that menu popup media player entries are not yet there.  I know than before, so something makes them disappear.  I wonder if they're already coming back?  Miss me them...

  • How to rotate screen presentation

    my presentation of the screen 90 degrees off, how rotate you screen output

    my presentation of the screen 90 degrees off, how rotate you screen output

    The ability to rotate the screen image is a feature of your video card, to help work with instructors who rotate the portrait orientation. Almost certainly you accidentally pressed Ctrl-Alt and an arrow.

    Rotate using these keys.

  • Inserting a node on an element empty &lt; af:tree &gt; via the context Menu


    My requirement is to create a tree node by using the option "Insert" through the context menu when the component of the tree is empty. By clicking on the option insert a node should be created in the tree. But currently the context menu don't appear unless a node exists in the tree of.


    JDeveloper Version: 11.1.1.7.0

    Fig-component of the tree on a layout of Stretch

    1.jpg


    Fig - context menu to insert added to the Tree component

    2.jpg


    Fig - context menu is not display when no available tree node

    3.jpg

    The component of the tree grabs only necessary to render space and only in this space, you can access the context menu. As you do not have a jet of node, the space to make the tree is very small or didn't exist at all.

    You can add a showPopupBehavior (pointing to the popup of context menu) to FY: tree which should give you the popup anywhere in the tree.

    Timo

  • How do you define continuous grates/measures in inches?

    Is there a way to permanently define grids/measures in inches instead of picas? It takes twice as long to create a new file because everything is in picas... having to change preference every time... which is not normal.

    Hello

    Without documentation open, go into preferences and on the left, under 'Units and increments', you can set them there. Now, when you open a new document, they will show your new settings. In addition, if you right click on a rule, you can use the context menu to change the parameters of the rule. I hope this helps.

    See you soon!

    -Mikey

  • How to automatically display the pop-up menu?

    Hello

    I've created a popup menu in Encore CS 5.1 but powerdvd 11 does not play pop-up menu automatically.

    I put on control + P for them appear.
    It is not possible for me to tell my friends or clients: to run Blu - ray "need Ctrl + P".

    Thank you

    Steph.

    I don't think you can have a context menu automatically mount when a timeline starts playing.  It may be a little lost in translation, but these options in the contextual tab (background timeline/BG border) are ONLY for the referencing of what it will look like when it is on top of the video on the final drive.

Maybe you are looking for

  • ActiveX has stopped working

    Hi I have a problem, all of a sudden my ActiveX seems to have stopped working, this may seem trivial, but I need it for my work and don know how to make it work again, can anyone help please? Thank you

  • iPhoto libraries

    Hello I have 2 iPhoto libraries and would like to transfer photos from one to the other is at - it an easy way to do it, Thank you...

  • Adding a Second router to my LAN

    I have 4 devices on my network- 1 surfboard cable modem 2. router WRT160N wireless - 192.168.1.1 3 Linksys 10 / 100 5 port switch wired 4 WRT160Nv3 - 192.168.1.2 My current setup is- 1. first router modem. (WAN PORT) 2 port LAN router for UPLINK port

  • HP envy: System disabled

    Blue screen lights up when turned on. Request password. After three attempts, it said invalid and the number that comes up is 97573423

  • CD/DVD drive not working after reinstalling Windows

    CD driver error Hi, I had recently formatted my pc (laptop) and everything was fine until I tried to use my cd/dvd driver. I tried to run a disk .iso that I burned and used in the past, but with no succsess. I thought that maybe it was damaged or som