General :: How To Take Screenshot Of Menu

Sep 18, 2011

How do I take a screenshot when e.g. the wrench menu in Chrome is open? Or perhaps the File menu in Firefox?

View 2 Replies


ADVERTISEMENT

General :: Take A Screenshot From Another X Server?

Jun 4, 2010

I started a second X server and I am trying to take a screenshot of the original display from the second X server. This is what I have tried

import -window root -display :0 screenshot.png

If I run this from display :0 then all is fine, but if I run it from display :1, then I get an image that is almost all black (a few icons in the upper right shows up - namely the volume, laptop battery status, and wireless connection status - but that's it).

View 5 Replies View Related

General :: Take A Screenshot Of Tty2?

Apr 26, 2011

If I'm in tty1, is it possible to take a screenshot of tty2? If I'm in tty1, can I take a screenshot of tty7 (which has xorg running in it)?

View 3 Replies View Related

General :: Unexplained Red Dots In Screenshot?

May 8, 2011

I've been having the weirdest problem with some aspect of my operating system: This is a screenshot of Google Chrome 11.0.696.57 running in Linux 2.6.37.6 with Xorg server 1.9.5 with the FGLRX display drivers 8.841 on a Radeon HD 4870. The display drivers, kernel and X server were not upgraded before this started happening. I have also not modified my xorg.conf.

As you can see, the red pixels show up just about anywhere a bitmap is changed. It has been happening in every program and not just the browser. Sometimes they flicker, always appearing at random.As far as I can tell, the Linux TTY (outside of X) is not affected. The fact that this is capturable in a screenshot rather than just appearing as pixels on the screen is what puzzles me. If you have any information as to what might be causing this, and hopefully how to solve it, (or even a theory) please post below.

Other information:

Slackware 13.37
Running Fluxbox 1.3.1
My /etc/X11/xorg.conf

Edit:Switching TTYs (via ctrl-alt-F[1-9]) and back seems to dissipate the effect, at least temporarily.

View 2 Replies View Related

General :: Take A Screenshot With Current Cursor In GNOME?

Apr 25, 2011

When I take a screenshot in Ubuntu 10.04 (Gnome) using application "Take Screenshot" I get a screenshow this a default mouse cursor, but when i take a screenshot, cursor of mouse was another, for instance, cursor of mouse, which happen when window is resizing. How i can do screenshot with current cursor mouse, but not default

View 1 Replies View Related

General :: When Check For Updates Get This Message See Screenshot?

Nov 22, 2010

Just did an update, gwibber and mintupdate were installed.Now when I check for updates I get this message. See screenshot.

View 3 Replies View Related

General :: NES Emulator - Full Screen And PS3 SIXAXIS - Screenshot

Nov 4, 2010

I need to figure out how to tackle the full screen issue using GFCE Ultra. Anyone know this? I have checked off the full screen option, but when it goes to full screen, it just adds black space.

Screenshot 1
Screenshot 2

Finally, how can I use the PS3 wireless controller as my mouse? And after that, set it up for use with the emulators. I found a few links, but not sure which one I should be following:

[url]

[url]

[url]

[url]

They all have some similarities, but also some things that are different.

View 1 Replies View Related

General :: Find URL Of Screenshot To Insert Into New Thread Or Post?

Mar 15, 2010

I know what the URL of a webpage is and how to find it, but can't figure out how to do it with the screenshot accessory in Ubuntu 9.10. It is easy to use the tool to capture the image of a desktop, but won't let me do anything with the URL to insert it into anywhere!

View 5 Replies View Related

General :: Ubuntu - Screenshot Tool That Saves Shots Directly Without Asking For A Filename

Jan 21, 2011

I know how to take a screenshot on my Ubuntu, but I want to take many screenshots within a limited time (taking screenshots of a single execution of a program which I can not pause). Is there a program that takes the "PrtScr" keyboard key in charge and just stores every screenshot without asking? The standard Ubuntu tool pops up a dialog to ask where I want to save the file, I would like a tool that doesn't ask and just saves on the Desktop or wherever as 00001.png 00002.png etc.

View 1 Replies View Related

General :: Use Command Line And Wmctrl To Make A Window Larger Than The Screen To Get A Huge Screenshot?

Jan 24, 2011

I use a program which makes a large image which I have to scroll to view. The program has no way to save the image, and I have no access to the source to modify it. The only way I have to get the image from the program is by screenshot. My goal is to save the full size image without having to piece together individual screenshots. I'm using this script to try taking a screenshot:

#!/bin/bash
window=$(wmctrl -l | grep "Program$" | awk '{print $1}')
wmctrl -v -i -r $window -e '0,0,0,6030,5828'
wmctrl -i -a $window
import -window $window ~/Desktop/screenshot.png

This uses wmctrl to get the window id ($window) for a window named "Program". It then tries to resize the window to the desired dimensions. It uses imagemagick (import) to save a screenshot.png on the user's Desktop. All of this works except the resize step. I can resize the window using wmctrl -r -e, but sizes greater than the screen size don't work. I'm using Ubuntu 10.04 and the Gnome Desktop. I run two monitors, but I've tried this with one of them disabled. Is there a way to resize the window larger than my screen to get a huge screenshot?

Part II: I tried using xrandr to set up screen panning, so as to have a bigger desktop than my monitor. xrandr --output LVDS --panning 2600x2500 This command makes the laptop screen pan over a 2600x2500 size desktop, even though it can only show 1440x900 at one time. To turn off the panning, I can use a similar command to set total size and with zeroes for the panning section. This gives me back my original laptop display behavior. xrandr --fb 1440x900 --output LVDS --panning 0x0 This is all done with xrandr, and does not require any Xorg.conf changes (my Ubuntu system doesn't even have an Xorg.conf).

My video card seems to only allow about 6.5 million pixels, even though the maximum dimensions are 8192x8192. That maximum seems to be the maximum for either dimension, but there is a limit to how many pixels can be drawn, which is the width multiplied by the height. Once I did the screen resize, I tried my script again and got a screenshot. The screenshot however is totally scrambled. I'm not sure if it's unable to take a screenshot of an off-screen window or if it is unable to handle the large dimensions of the window. With the panning display, the window should think it is visible, and the window manager should think it is on-screen. So there is a pixel buffer somewhere with those pixels in it, so there should be a way to get a screenshot.

View 1 Replies View Related

General :: ImageMagick's "import" Command Line Program Failing To Take A Screenshot From CRON Script

Feb 16, 2011

I wrote a simple command line script which is suppose to take my screenshot every 5 minutes.(using ImageMagick's "import" program)

Here is the script (shottr.sh):

This is working fine if I execute by hand i.e:

The script itself is being executed (I hear a voice saying: "Screenshot") but the actual screenshot is not taken.

Be assured that it is NOT permission issue (I placed a simple "touch" invocation and file was created)

May be if it's run from cron...it doesn't have a "window" so it can't take a screenshot from nowhere? If that is the case, then how can I workaround it?

View 1 Replies View Related

General :: In Nautilus Show Context Menu On Focused File When Press Menu Key?

Apr 11, 2011

In Windows Explorer, if a file is focused, press Menu Key on keyboard, context menu will show on top of the file. But in Nautilus, the same action shows context menu where the mouse cursor is. That's a bit annoying. Is there anyway to make it work like Windows?

View 1 Replies View Related

General :: Application Menu / Administration And Preferences Menu Not Visible

Oct 27, 2010

i am having a problem on Ubuntu 10.10. In system menu, there is no Administration or Preferences menu.Also, application menu does not show anything. I am using Ubuntu since 2 weeks and still not used to to the terminal commands for running applications and admin tools.

one more thing.When i booted my PC today it reported an error and process terminated before reaching the login window. So i restarted and chose recovery mode. it also reported some errors and tried to fix the problem. it deleted some files i think. and my system is working again but with above mentioned problem.

View 8 Replies View Related

General :: Bad Menu Links That Are In The Places Menu In The Gnome Panel

Apr 26, 2011

My problem is the links that are in the places menu in the gnome panal, all link to the appearances preferances. I'm running Fedora 14 with Gnome.

View 1 Replies View Related

General :: Desktop Right-click Also Have The Same Menu-items As Start-menu?

Nov 14, 2010

i have java app. i want make my Linux dedicated to that application.such that,when Linux load it start the app, start menu have Shutdown,reboot and my application luncher, only one window , desktop right-click also have the same menu-items as start-menu.

View 3 Replies View Related

Ubuntu :: Where Does The Screenshot Go

Sep 15, 2010

Using 10.04 64 bit. Just took a screen shot of my desktop, but now I can't find it. It's not on my Desktop nor my home folder nor the Pictures folder. Where the heck did it go? I used Applications>>Accessories>>Take Screen Shot.

View 5 Replies View Related

Ubuntu :: Take A Screenshot On 11.04?

Jun 3, 2011

How do i take a screenshot on Ubuntu 11.04?

View 9 Replies View Related

Ubuntu :: Take A Screenshot Under XFCE

Mar 28, 2011

I have Xubuntu with a minimal XFCE 4.6 installed. How to take a screenshot under XFCE?

View 9 Replies View Related

Debian :: How To Store A Screenshot As A File

Apr 15, 2015

One can take a screenshot - i.e. to store it in the memory by pressing PrtScr. But I failed to find how to write it into a graphic file? In particular in Xfce which does not have a graphic file editor

View 11 Replies View Related

Debian :: Take A Screenshot Of A Selected Area?

Feb 20, 2011

I use Debian Squeeze and I would like to ask if someone knows a program to take a screenshot of a selected area of my screen. I already know imageshack and scrot, but they don't do what I need because I need to know previously coordinates and the dimension of the selected area. I need a program that I could select a rectangle with my mouse to take a screenshot of that part.I don't know if I'm clear what I'm trying to say is that I need something like this google-chrome plugin[URL]

View 4 Replies View Related

Ubuntu :: Possible To Take Screenshot Of Grub Screen?

Mar 5, 2010

Is there any way to take a screenshot of GRUB screen without having WUBI or Virtual Box?

View 1 Replies View Related

Ubuntu :: Take Screenshot Without An Open Window?

May 15, 2010

How do i take a screenshot without an open window? The 'Print Scrn' does not return the usual pop up window that asks me where i want to put the picture.

View 3 Replies View Related

Ubuntu :: Take A Screenshot Before Automatic Shutdown?

Jun 4, 2010

Is there a way to take a screenshot just before the "shutdown" terminal command? for example "sudo shutdown -h 90" for 90 minutes timer shutdown, and just before turning off to take a screenshot.

View 1 Replies View Related

Ubuntu :: Screenshot & Keyboard Shortcut?

Feb 1, 2011

I frequently need to take screenshots of a game (flash-based, running inside a browser), in particular it's statistics screen which is shown when I hold the TAB key. The problem is, when I take a screenshot, either by pressing PrintScreen key or by pressing a custom-defined shortcut, the game responds to this keypress and hides its statistics screen, so the screenshot doesn't contain the information I need.I figured out how to overcome this using a custom application launcher icon; but this requires using the mouse which is rather inconvenient.define a shortcut that wouldn't be processed by the active application? Or maybe there's some screenshot utility that does this out of the box?

View 2 Replies View Related

Ubuntu :: Take A Screenshot Of A Java Applet?

Mar 12, 2011

Ok here's what I'd like to do:

Take a screenshot, or some other way of saving the visual output of a java applet [URL], and saving that as an image, without having to manually do it (open browser go there, and take a screenshot).

I guess this would be most easily done using a script of some sort, but I have no idea how to go about doing this..

I would like to do this, so I can use this image to update my conky every 30 secs or so (got that part figured out ).

View 1 Replies View Related

Ubuntu :: Cannot Do Screenshot Using 'PrtSc' Key On Net-book

May 27, 2011

I was gathering some screenshots to use in a tutorial on how to do something in Unity. For the most part that went well... however I did find an unfortunate quirk.When I Right-Click any of the items in the Unity Launcher panel, and they bring up the submenu (for example I did the modification to add Pics, Docs etc to my Home Folder in the Launcher) I then cannot do a screenshot using my "PrtSc" key on my netbook. This only happens when the submenus are visible. Unfortunate because I wanted to get a screen shot of the submenus.

View 2 Replies View Related

Ubuntu :: Delay After Taking Screenshot?

Aug 15, 2011

I've been experiencing a weird delay between me pressing the printscreen key and the screenshot dialog appearing. The delay is about one second, and is happening even though gnome-screenshot's delay key is set to zero in gconf-editor. This delay is making it difficult to capture things which disappear quickly, and I'd like to know if there's any way to make the screenshot dialog appear instantly.

View 2 Replies View Related

Software :: How To Take Screenshot In Dynebolic 2.5 Dhoruba

Jun 30, 2011

The "print screen" button doesn't work. Is there any other way?

View 2 Replies View Related

Debian :: Automatic Screenshot Jobs In Crontab

Jun 20, 2015

In my office there is a department where the access of internet & intranet is very limited. I've been given a task that I should add a script which would automatically take screenshots of the PCs. The script works fine, but I can't make it work with the cron jobs. There are many methods given on the internet to grab screen, but none of them works with cron.

View 2 Replies View Related

Debian :: Upload A Screenshot.png File In A Thread?

Aug 13, 2011

I was trying to upload a screenshot.png file in a thread 'what your non-debian desktop looks like' on the 'off topic' section. However my filewas of length 509KB but only files of length lower than 256KB could be uploaded. What is the way to scale down the length of the file?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved