Image dropping off the screen

I am new to Photoshop (CC).  I have been using some tools successfully, but now when I try to use the Healing, Tool, Patch, Type and some others, the image drops off the screen as soon as I place the tool onto the screen. Then I cannot work on the image.  It just started today. Amy ideas???

Usually any issue thats have to do with the displaying an image or any part of photoshop for that matter, is due to an out dated video driver. Try updating it and see if that fixes the issue.
If the image is just too large to display, you can hold the ctrl key and the 0 on the numeric panel to zoom out to the full size of that image.

Similar Messages

  • How can i copy a moving image (video) off the screen?

    How can I copy Video from the screen? IE, is there a similar way to the cmd arrow 4 to copy a screen shot?

  • Sliding images off the screen with javafx

    I am writing my first javafx app and I am trying to get images to slide on and off the screen. I have accomplished this to some degree using the below code.
    the problem is that the images slide off just fine but when they come back on they stop before they get to their original locations.
    Any chance someone can tel me what I'm doing wrong?
    function slideOut(index:Integer, len:Integer):Void{
        def timeline = Timeline {
                keyFrames: [
                     for(itr in [0..len]){
                         if(itr != index){
                              KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEOUT
                              KeyFrame {
                                  time: 1s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX + 300 tween Interpolator.EASEOUT
                         }else{
                             KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEOUT
                              KeyFrame {
                                  time: 1s, values: [
                                       page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEOUT
            timeline.play();
    function slideIn(index:Integer, len:Integer):Void{
        def timeline = Timeline {
                keyFrames: [
                     for(itr in [0..len]){
                         if(itr != index){
                              KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEIN
                              KeyFrame {
                                  time: 1s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX - 300 tween Interpolator.EASEIN
                         }else{
                             KeyFrame {
                                  time: 0s, values: [
                                            page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEIN
                              KeyFrame {
                                  time: 1s, values: [
                                       page.content[itr].translateX => page.content[itr].translateX tween Interpolator.EASEIN
            timeline.play();
    def page:Group = Group{
        content: [
             for(i in [0..ImageLoader.length.intValue()]){
                   ImageView {
                       var bool = true;
                       translateX: 210 * (i+1)
                       translateY: 175 //* (i+1)
                       scaleX: 1.0
                       scaleY: 1.0
                       preserveRatio: true
                       smooth: true
                       image: Image {
                           width: 75
                           height: 75
                           url: "file:/{image_folder}/{imgArray}"
                   onMouseClicked: function( e: MouseEvent ): Void {
                   if(bool){
                   bool = false;
                   slideOut(i,ImageLoader.length.intValue());
                   zoomIn(page.content[i]);
                   }else{
                   bool = true;
                   zoomOut(page.content[i]);
                   slideIn(i,ImageLoader.length.intValue());

    Actually, I am not even sure why it worked... Using the same variable on both sides of the => is probably a bad idea.
    I could get some result with the following code:
    function slideOut(index:Integer, len:Integer):Void{
      def timeline = Timeline {
          keyFrames: [
            for(itr in [0..len]){
              if(itr != index){
                KeyFrame {
                  time: 3s, values: [
                      page.content[itr].translateX => getOrig(itr) + page.boundsInLocal.width tween Interpolator.EASEIN
              } else { null; }
        timeline.play();
    function slideIn(index:Integer, len:Integer):Void{
      def timeline = Timeline {
          keyFrames: [
            for(itr in [0..len]){
              if(itr != index){
                KeyFrame {
                  time: 3s, values: [
                      page.content[itr].translateX => getOrig(itr) tween Interpolator.EASEOUT
              } else { null; }
        timeline.play();
    def image_folder = "D:/Documents/Images/Misc";
    def imgArray = [ "beetle1.gif", "beetle2.gif", "beetle3.gif", "butterfly.gif", "LeftAnt.gif" ];
    def IMG_NB = sizeof imgArray;
    function getOrig(index: Integer) { return 210 * (index + 1); }
    def page:Group = Group{
      content: [
        for(i in [0..IMG_NB]){
          ImageView {
            var bool = true;
            translateX: getOrig(i)
            translateY: 175 //* (i+1)
            scaleX: 1.0
            scaleY: 1.0
            preserveRatio: true
            smooth: true
            image: Image {
              width: 75
              height: 75
              url: "file:/{image_folder}/{imgArray}"
    onMouseClicked: function( e: MouseEvent ): Void {
    if(bool){
    bool = false;
    slideOut(i,IMG_NB);
    //~ zoomIn(page.content[i]);
    }else{
    bool = true;
    //~ zoomOut(page.content[i]);
    slideIn(i,IMG_NB);
    Commented out the zoomIn/zomOut you don't provide, and replaced some unknown variables by my own...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Images keep going off the screen

    Hi,
    I have created a simple card game and added motion tween to it, the cards move around in a sqaure but they go off the screen and come back on because when i run the swf file, the window is to small, if i make the window bigger it still does not keep it on the screen. so it will go down off scren then back up on screen.
    I wanted to knrow if i could set it to automticlly set the window so that it does not go off screen.
    Thank you

    Sorry i think i made it more complicated than it is, let me put this way:
    I got an image and everytime i run the image on the flash player the entire image does not show cause it goes off screen, how do i optimize the screen to show the entire image?

  • Presentation starts 5" from the left side of screen and pushes intellegence off the screen to the right.

    The top of my screen is normal: the tool bar starts "File, Edit...
    The body of the screen while running Firefox-and during typing of this message- is full of lite. The actual data: starting from the top of this page- "Firefox Help... Ask a new..." etc. starts 5 1/4 inches from the left of the page.
    It's as if Firefox were presenting a wider page with the presentation moved to the right. This pushes the last, normal, 5" of the presentation off the screen.
    The rite end of the bar which starts out: http://www.mozilla.com/en-US/firefox/fx/
    is off the page, so the facilities at the rite end are lost.
    Any presentation, including Amazon.com and Youtube.com are similarly pushed off the rite side of the screen by 5".
    I have no access to the rite-most 5" of any internet presentation.
    The sliders that move the presentation up and down and left/ rite are off the screen.
    I have shrunk the display down so small, i can barely see the numbers: Control panel\ display \ settings \ 1920 by 1200. This gives the ILLUSION of centering the presentation, but still no sliders. At this setting, i can see the full width of Amazon. Youtube appears centered, with 4 1/4" on both left and rite, but no edge sliders.
    I dropped the 'setting' to 1440 x 900.
    Lost about 3" off the rite side of Amazon; barely on the rite edge of Youtube.
    None of my local programming has a problem: Excel, pictures, videos, Word, even Internet Explorer goes full page and centered.
    I un-installed Firefox and downloaded it fresh. It did NOT ask me to reboot my puter, so i didn't .
    I can supply pictures (screen shots) of the phenomenon on request.

    - Open Firefox -> got to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. You can enable the Add-ons later. Check if its working.

  • [FIXED BUT NOT SOLVED] NVIDIA - Desktop shifted left off the screen...

    Hello Community!
    For a pretty long time right now, I am trying to fix the video setup of my HTPC but without success. Because I'am run out of ideas, I really need Your help.
    PROBLEM:
    The desktop is shifted left off the screen, round about 100 Pixel.
    It started some time in the past, while upgrading a one year old Ubuntu installation (NVDIA drivers). Because I couldn't fix it and also wanted to replace Ubuntu with ArchLinux, I performed a clean ArchLinux installation.
    First I used the nouveau drivers ending up with the same problem. I read an configured using xrandr and cvt, but with no success. 
    So I restored the system to a snapshot taken before X11 and nouveau drivers installations, thank's BTRFS, and installed the proprietary NVIDIA drivers ending up with the same problems. Again I tried all the tips and tricks found in the documentations and forums, used nvidia-xconfig, hand crafted the xorg.conf all with no success.
    HARDWARE
    The system is a MSI Media Live (http://www.msi.com/product/desktop/Media-Live.html)
    . Support AMDR Athlon 64 X2, Athlon 64 and Sempron in the Socket AM2 package
    . North Bridge: nVidia® C51PVG Chipset
    . South Bridge: nVidia® MCP51 Chipset
    . Graphics is Integrated NVIDIA GPU GeForce 6150 LE
    . VGA, SCART and HDMI - Connectors
    The display Problem is on VGA and HDMI now, where in the past the VGA was perfect. Therefor I connected and used the VGA port only, in all tests.
    INSTALLATION HISTORY
    2012-12-30 + Installation according ArchLinux install guide
    2012-12-31 + pacman -S openssh
    systemctl start sshd
    2012-12-31 + pacman -S btrfs-progs
    2012-12-31 pacman -S sudo
    2012-12-31 + sudo pacman -S bash-completion
    2013-01-03 + pacman -S rsync wget gptfdisk
    2013-01-10 + pacman -Suy nvidia-304xx
    2013-01-10 + pacman -Syu nvidia-304xx-utils
    2013-01-10 + pacman -S xorg-server xorg-xinit xorg-server-utils
    2013-01-10 + pacman -S mesa
    2013-01-10 + pacman -S xorg-twm xorg-xclock xterm
    2013-01-10 + pacman -S ttf-dejavu
    2013-01-10 + pacman -Suy lxdm
    2013-01-10 + systemctl enable lxdm.service
    2013-01-10 + pacman -S xorg-xdpyinfo
    2013-01-10 + pacman -S pkgtools
    2013-01-10 + pacman -S pkgfile
    2013-01-10 + pacman -S bc
    As You can see, I installed only a minimal X11 environment for test. The lxdm display manger shows up but with very small font and shifted to the left. Only if I force a resolution of 1024x768 the image is centered on screen/tv but still the very small font. Obviously not a solution for a HTPC.
    Here are the xorg.conf and the Xorg.0.log of my last test configuration.
    xorg.xonf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 304.64 (buildmeister@swio-display-x86-rhel47-12) Tue Oct 30 12:04:46 PDT 2012
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 100 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    In the Section "ServerLayout" I modified the line
         Screen      0  "Screen0" 100 0
    by adding the 100 0 at the end.
    Xorg.0.log
    [ 12.997]
    X.Org X Server 1.13.1
    Release Date: 2012-12-13
    [ 12.997] X Protocol Version 11, Revision 0
    [ 12.997] Build Operating System: Linux 3.7.0-1-ARCH x86_64
    [ 12.997] Current Operating System: Linux media-pc 3.6.11-1-ARCH #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012 x86_64
    [ 12.997] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0f1f870d-ccaa-4bc2-b149-1792f0c69fce
    [ 12.997] Build Date: 16 December 2012 04:45:14PM
    [ 12.997]
    [ 12.997] Current version of pixman: 0.28.2
    [ 12.997] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 12.997] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 12.998] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 18 13:18:12 2013
    [ 13.065] (==) Using config file: "/etc/X11/xorg.conf"
    [ 13.065] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 13.066] (==) ServerLayout "Layout0"
    [ 13.066] (**) |-->Screen "Screen0" (0)
    [ 13.066] (**) | |-->Monitor "Monitor0"
    [ 13.066] (**) | |-->Device "Device0"
    [ 13.066] (**) |-->Input Device "Keyboard0"
    [ 13.066] (**) |-->Input Device "Mouse0"
    [ 13.066] (==) Automatically adding devices
    [ 13.066] (==) Automatically enabling devices
    [ 13.066] (==) Automatically adding GPU devices
    [ 13.213] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 13.213] Entry deleted from font path.
    [ 13.213] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 13.213] Entry deleted from font path.
    [ 13.222] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 13.222] Entry deleted from font path.
    [ 13.222] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 13.222] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 13.223] Entry deleted from font path.
    [ 13.223] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 13.223] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 13.223] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 13.223] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 13.223] (WW) Disabling Keyboard0
    [ 13.223] (WW) Disabling Mouse0
    [ 13.223] (II) Loader magic: 0x7fcc40
    [ 13.223] (II) Module ABI versions:
    [ 13.223] X.Org ANSI C Emulation: 0.4
    [ 13.223] X.Org Video Driver: 13.1
    [ 13.223] X.Org XInput driver : 18.0
    [ 13.223] X.Org Server Extension : 7.0
    [ 13.226] (--) PCI:*(0:0:5:0) 10de:0241:1462:3290 rev 162, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, 0xfc000000/16777216, BIOS @ 0x????????/131072
    [ 13.226] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 13.226] Initializing built-in extension Generic Event Extension
    [ 13.226] Initializing built-in extension SHAPE
    [ 13.226] Initializing built-in extension MIT-SHM
    [ 13.226] Initializing built-in extension XInputExtension
    [ 13.227] Initializing built-in extension XTEST
    [ 13.227] Initializing built-in extension BIG-REQUESTS
    [ 13.227] Initializing built-in extension SYNC
    [ 13.227] Initializing built-in extension XKEYBOARD
    [ 13.227] Initializing built-in extension XC-MISC
    [ 13.227] Initializing built-in extension SECURITY
    [ 13.227] Initializing built-in extension XINERAMA
    [ 13.227] Initializing built-in extension XFIXES
    [ 13.227] Initializing built-in extension RENDER
    [ 13.227] Initializing built-in extension RANDR
    [ 13.227] Initializing built-in extension COMPOSITE
    [ 13.227] Initializing built-in extension DAMAGE
    [ 13.227] Initializing built-in extension MIT-SCREEN-SAVER
    [ 13.227] Initializing built-in extension DOUBLE-BUFFER
    [ 13.227] Initializing built-in extension RECORD
    [ 13.227] Initializing built-in extension DPMS
    [ 13.227] Initializing built-in extension X-Resource
    [ 13.227] Initializing built-in extension XVideo
    [ 13.227] Initializing built-in extension XVideo-MotionCompensation
    [ 13.227] Initializing built-in extension XFree86-VidModeExtension
    [ 13.227] Initializing built-in extension XFree86-DGA
    [ 13.227] Initializing built-in extension XFree86-DRI
    [ 13.227] Initializing built-in extension DRI2
    [ 13.227] (II) LoadModule: "glx"
    [ 13.414] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 15.559] (II) Module glx: vendor="NVIDIA Corporation"
    [ 15.559] compiled for 4.0.2, module version = 1.0.0
    [ 15.559] Module class: X.Org Server Extension
    [ 15.559] (II) NVIDIA GLX Module 304.64 Tue Oct 30 11:18:32 PDT 2012
    [ 15.560] Loading extension GLX
    [ 15.560] (II) LoadModule: "nvidia"
    [ 15.560] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 15.868] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 15.868] compiled for 4.0.2, module version = 1.0.0
    [ 15.868] Module class: X.Org Video Driver
    [ 15.868] (II) NVIDIA dlloader X Driver 304.64 Tue Oct 30 10:59:51 PDT 2012
    [ 15.868] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 15.868] (++) using VT number 7
    [ 15.875] (II) Loading sub module "fb"
    [ 15.875] (II) LoadModule: "fb"
    [ 15.984] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 16.008] (II) Module fb: vendor="X.Org Foundation"
    [ 16.008] compiled for 1.13.1, module version = 1.0.0
    [ 16.008] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.008] (II) Loading sub module "wfb"
    [ 16.008] (II) LoadModule: "wfb"
    [ 16.008] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 16.025] (II) Module wfb: vendor="X.Org Foundation"
    [ 16.025] compiled for 1.13.1, module version = 1.0.0
    [ 16.025] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.025] (II) Loading sub module "ramdac"
    [ 16.025] (II) LoadModule: "ramdac"
    [ 16.025] (II) Module "ramdac" already built-in
    [ 16.025] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 16.025] (==) NVIDIA(0): RGB weight 888
    [ 16.025] (==) NVIDIA(0): Default visual is TrueColor
    [ 16.025] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 16.026] (**) NVIDIA(0): Enabling 2D acceleration
    [ 19.582] (II) NVIDIA(GPU-0): Display (Acer AT3220 (CRT-0)) does not support NVIDIA 3D
    [ 19.582] (II) NVIDIA(GPU-0): Vision stereo.
    [ 19.584] (II) NVIDIA(0): NVIDIA GPU GeForce 6150 LE (C51) at PCI:0:5:0 (GPU-0)
    [ 19.584] (--) NVIDIA(0): Memory: 262144 kBytes
    [ 19.584] (--) NVIDIA(0): VideoBIOS: 05.51.28.56.19
    [ 19.584] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 19.584] (--) NVIDIA(0): Valid display device(s) on GeForce 6150 LE at PCI:0:5:0
    [ 19.584] (--) NVIDIA(0): Acer AT3220 (CRT-0) (connected)
    [ 19.584] (--) NVIDIA(0): TV-0
    [ 19.584] (--) NVIDIA(0): DFP-0
    [ 19.584] (--) NVIDIA(0): Acer AT3220 (CRT-0): 350.0 MHz maximum pixel clock
    [ 19.585] (--) NVIDIA(0): TV-0: 400.0 MHz maximum pixel clock
    [ 19.585] (--) NVIDIA(0): TV encoder: (null)
    [ 19.585] (--) NVIDIA(0): DFP-0: 310.0 MHz maximum pixel clock
    [ 19.585] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS
    [ 19.585] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 19.585] (**) NVIDIA(0): device Acer AT3220 (CRT-0) (Using EDID frequencies has
    [ 19.585] (**) NVIDIA(0): been enabled on all display devices.)
    [ 19.585] (==) NVIDIA(0):
    [ 19.585] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 19.585] (==) NVIDIA(0): will be used as the requested mode.
    [ 19.585] (==) NVIDIA(0):
    [ 19.585] (II) NVIDIA(0): Validated MetaModes:
    [ 19.585] (II) NVIDIA(0): "CRT-0:nvidia-auto-select"
    [ 19.585] (II) NVIDIA(0): Virtual screen size determined to be 1360 x 768
    [ 19.587] (WW) NVIDIA(0): Unable to support custom viewPortOut 1360 x 765 +0 +1
    [ 19.588] (WW) NVIDIA(0): Unable to support custom viewPortOut 1360 x 765 +0 +1
    [ 19.589] (--) NVIDIA(0): DPI set to (49, 48); computed from "UseEdidDpi" X config
    [ 19.589] (--) NVIDIA(0): option
    [ 19.589] (--) Depth 24 pixmap format is 32 bpp
    [ 19.599] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 19.599] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 19.599] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 19.599] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 19.599] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 19.599] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 19.599] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 19.599] (II) NVIDIA(0): Config Options in the README.
    [ 19.599] (II) NVIDIA(0): Setting mode "CRT-0:nvidia-auto-select"
    [ 19.754] Loading extension NV-GLX
    [ 19.797] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 19.797] (==) NVIDIA(0): Backing store disabled
    [ 19.797] (==) NVIDIA(0): Silken mouse enabled
    [ 19.798] (**) NVIDIA(0): DPMS enabled
    [ 19.798] Loading extension NV-CONTROL
    [ 19.799] Loading extension XINERAMA
    [ 19.799] (II) Loading sub module "dri2"
    [ 19.799] (II) LoadModule: "dri2"
    [ 19.799] (II) Module "dri2" already built-in
    [ 19.799] (II) NVIDIA(0): [DRI2] Setup complete
    [ 19.799] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 19.799] (--) RandR disabled
    [ 19.817] (II) Initializing extension GLX
    [ 20.522] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    only removed the input detection stuff
    Question
    How can I shift the display to the right?
    Many thanks for any hints.
    rale
    Last edited by rale (2013-01-19 11:46:14)

    Mr.Elendig wrote:Switch to dvi/hdmi if you can. Else you have to play with screen calibration etc.
    Thank You Mr.Elendig!
    The simplest answer often is best. After I connected a TFT display, instead of my TV, I was able to calibrate the screen output and got the desktop shifted. Knowing that, I tried the settings of my TV again. There is a hard to find option for calibration wich is set to automatic but doesn't do it. Trying to turn it of did the trick. Even the option stays on automatic and even the display format is fixed to 4:3 instead of 16:9, finaly the TV adjusted the display correctly.
    None the less, the problem not to be able to shift the desktop using the screen paramters in xorg.conf remains.
    Thanks
    rale

  • Photoshop Elements 10 Help with image jumping around the screen

    I'm using a trial version of Elements 10 that I'm interested in buying it but 50% of the time when I click on an image so that I can click and drag it around the screen, it jumps off the screen.  I have been using Elements 6 and never had this problem and it is super frustrating.  I'm using a laptop and thought maybe it was my touchpad so i got a mouse and it is still doing the same thing.  Is there a way to fix this problem?  I will stick with Elements 6 if this can't be fixed as it takes me twice as long to edit images since the layers are jumping around and I keep have to kit the "undo" button.

      The editor saved prefs often get corrupted. If resetting all tools doesn’t work you may need to rebuild the editor preferences to resolve any conflicts.
    Hold down the Ctrl+Shift+Alt keys and simultaneously click on the Edit button on the welcome screen. Release the three keys and look behind the welcome screen by closing it. Or hold down the keys whilst double clicking on PhotoshopElementsEditor.exe
    You should see a pop up box with the words: Delete Adobe Photoshop Elements Settings File?
    Click on Yes
    Close down Elements and re-open it in the normal way - then wait whilst it rebuilds the preferences.
     

  • MacBook Pro Display (window) shifts off the screen when I move my mouse

    With a slight move with my magic mouse, my entire open window will shift completely off the screen with only a part of the window still visible. I have to click on the exposed edge of the window for it to shift back into place. It's only the window of the program that I have open that moves. The dock and the desktop image stays in place. I'm using an HP external monitor now but it was doing this before I hooked up the monitor. I've tried maximizing and minimizing my window but that does not seem to have an effect. Could it be the magic mouse? Thanks in advance for any help.

    Wow. The power of Google is truly amazing. Just a little while ago, my husband was going nuts with our computer. I googled the words 'when I move my mouse to the left, the screen moves to the right'. And, Eureka! What do you think was the first thing that popped up on Google?
    Well, the answer to my question, of course!:P Which led me right to here. It may not have been me that asked the question, but this did answer MY question!
    Apparently this applies to Leopard too. Thanks alot!
    Message was edited by: Linda Schodowsky

  • [JS][CS4/CS5] Images dropping off in scripted pdf export

    I've encounted a bug that I wonder if someone could try to replicate or suggest a workaround of some sort for.
    Some background: we often need to batch-export a number of versioned InDesign files to pdf. These files will often share a lot of content, particularly placed images. We've used Peter Kahrel's export script for this purpose, as well as a number of scripts of my own. The specifics of the script don't seem to be important. I've seen the problem in both CS4 and CS5 on the Mac.
    The problem: Placed Illustrator files (and pdfs) drop off of exported pdfs, without any kind of error being raised, after a user tries to interact with InDesign while it's tied up during a script which opens and exports one file after another. Once an image drops off, it will be missing from every subsequently exported pdf until the script completes. The pdfs are valid—they open and display just fine—they just don't contain all the images they're supposed to. Placed raster images are not affected.
    If anyone cares to try to replicate this for me, the script I used to trigger it was:
    var f = File("/path/to/InDesign/file.indd"),
        d = Folder("/path/to/export/directory"),
        e = 0,
        i = 1000,
        doc, pdf;
    while(e++,i--){
        doc = app.open(f);
        pdf = File(d.fullName + "/" + f.displayName.replace(/\.indd$/,"") + e + ".pdf");
        doc.exportFile(ExportFormat.PDF_TYPE,pdf,false,app.pdfExportPresets.firstItem());
        doc.close(SaveOptions.NO);
    The InDesign file can simply be a single page with any (as far as I know) placed Illustrator file or pdf. I used an .ai file with one black rectangle in the middle of the page.
    After getting the export script going in the ESTK, I Command-Tab over to InDesign. As soon as I try to click on any UI element (which will get me a spinning beach ball), the placed vector image drops off of the exported pdf and stays dropped off until I stop the script.
    While the solution seems simple—don't mess with InDesign while it's batch exporting pdfs—it's easy to forget that it's tied up, and the consequences of an image silently dropping off of an exported pdf could be quite dire.
    Thanks in advance.
    Jeff

    edit: Did file a bug report (5th of december 2012)..
    It is just unbelievable that this bug still exists! absqua, have you filed a bug-report?!
    Easy to reproduce, just launch script and click any toolpanel header while indesign running script..
    test_document.indd includes those black rectangles in linked .ai file.
    Right after InDesign ui-element is clicked, that linked .ai is dropped from rest of exported pdf's.
    #target indesign
    var f = File("~/Desktop/test/doc/test_document.indd"),
        d = Folder("~/Desktop/test"),
        e = 0,
        i = 20,
        pdf;
    while(e++,i--){
              myDoc = app.open(f);
        pdf = File(d + "/" + " test_" + e + ".pdf");
        myDoc.exportFile(ExportFormat.PDF_TYPE,pdf,false,app.pdfExportPresets.firstItem());
              myDoc.close(SaveOptions.NO);

  • Special effect-making a photo split and drift off the screen

    I would like to cut a photo with a jagged edge and make the two resulting parts glide off the screen in different directions. Can anyone suggest a plug-in or program with which I could do this?
    Thanks.
    Mary

    Hi Mary,
    as an Expert For The Arcane.... forget digital, do "ToolTime"
    basic: film "tricks" the eye... it is just 25/30 stills in a sequence...
    (you hadn't told us, wether "the couple" is a moving image or a still? anyhow, I start with a moving image:)
    make still of "last" frame (the point in time, where the toring apart happens...)
    make a print of that (laser would be nice, a color jet printer is nicer
    tear that print out in two pieces
    now, the tricky part:
    place you camcorder over a table, set light....
    place both pieces underneath camera
    record, how you push both parts in different corners..
    (do some versions...)
    don't record on tape, import DIRECTLY into iM!
    the tricky part is, to place the camera in a way, that the pieces allmost stay in the same place as the last frame of moving image! (switch in iM between "import" and playback)
    back to iM:
    edit 1 - 2frames off of the very beginning the sequence
    fasten sequence (rabbit)
    add to last frame of moving sequence...
    I would add some "sepia" and "cinema" (=making pic looking old) effect
    this hard cut/jump cut (you cut off the beginning of the movement) from moving image to real picture will "surprise" the eye, the whole "moving pieces" sequence will be no longer then 10 - 15 frames... (you shouldn't do that slow-mo).....
    I've done that before...- ok, not really Hollywood, but as a single shot the effects surprises most watchers...
    you'll spend half a day for 15 frames... of glory ;-))))

  • TS3899 I have an iPhone 5 and it shows on the Mail Icon that I have over 3,000 emails to read but the number continues to increase even when I have read the email.  I thought  once you have read an email it drops off the count of "new emails"

    I have an iPhone 5 and it shows on the Mail Icon that I have over 3,000 emails to read but the number continues to increase even when I have read the email.  I thought  once you have read an email it drops off the count of "new emails"

    The received emails should show in two locations:
    1. In the All Inboxes tab of Mail.
    2. The Inbox for each mail account,
    If your emails are not showing in these locations try quitting the mail app and then reset your iPhone.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it wiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal.
    To reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Machines 'dropping off' the render queue

    Hi guys,
         We have Windows 2008 server as our centralized storage.  All the render machines have the shared folders mapped correctly with all the permissions set.  We are using After Effects CS5.  What we are finding is that after a few comps have been rendered in a multi-comp project, some will drop off the render queue.  What happens is that the render window list disappears and the watch window pops up and keeps cycling as if it's 'lost' the project is supposed to render.  Usually, if we reboot or restart the render engine and go back to the watch folder, it "might" pick up the project and carry on rendering.  All the machines are on Windows 7 64-bit.
    Any suggestions?
    Jason

    This is a known state, but not directly AE's fault - one of your machines is not able to access footage items within a specific limit and this effectively also shuts down other machines because they, too, go into this waiting forever state. Ultimately it boils down to too many machines trying to access the same files or directories and clogging up your network. The only way to avoid it is to ramp up your network bandwidth or e.g. instead of working with compound movie clips, work with image sequences.
    Mylenium

  • Discoverer Report whenever we create a new customer , the information is dropping off the Property manager module

    Dear Friends,
    whenever we create a new customer , the information is dropping off the Property manager module.
    Can you please help as its a very critical business issue now.
    Thanks a lot in advance.
    Kind Regards
    Siva Charan

    Dear Friends,
    whenever we create a new customer , the information is dropping off the Property manager module.
    Can you please help as its a very critical business issue now.
    Thanks a lot in advance.
    Kind Regards
    Siva Charan

  • I am new to iphones and went to Itunes and it said my new iphone needed a software update. Now the apps that I put on wont work and when pressed just flash on then off the screen. I paid £20 for one of them so any help would be appreciated.

    I have a new iphone and went into Itunes and it said my new iphone needed a software update. I let it do this and now the apps that I put on won't work and when pressed just flash on then off the screen. I paid £20 for one of them so any help would be appreciated.

    Memory Map:  http://www.memory-map.co.uk/iphone/
    0870:  http://www.simonmaddox.com/
    Viber:  http://support.viber.com/home
    VoucherCloud: http://questions.vouchercloud.com/

  • Downloaded iOS 7.0.2 and one of my apps (ultimate history quiz) changed size. It is so large I am not able to play the game because most of the print is off the screen on my iPad. Help!!!!

    Had an app (Ultimate History Quiz) that I played frequently. It came up on the screen in the smaller iPhone version. Then I downloaded iOS 7.0.2, and now the app is so big that the printing goes off the screen, making it impossible to play. I checked the app sore to buy another one, and it is no longer available on there.  WHAT CAN I DO TO RESTORE THE GAME TO ITS ORIGINAL SIZE???????

    Wait for apple to tweak things....or talk to the app developer. they haven't updated since the update and unless APple happens to fix whatever the issue is, then the burden is on history to make their app work with the iOS

Maybe you are looking for

  • "Unable to open project file" message in final cut express 3.5.1

    I have (well had now) a project with 3 video clips and multiple .psd files as stills. When the project contains just the 3 video clips and a couple of transitions I can save the project and quit Final Cut Express and relaunch FCE and when I try to re

  • SpryNestedXMLDataSet.js filter error = typo in script?

    I have seen some topic popping around on the forum here and there, about filter that aren't working on nested datasets. So I went to check out this source code. And found something wrong On line 381 u will find Spry.Data.NestedXMLDataSet.prototype.fi

  • Subworkflow instance cannot be created

    Hi, Iam calling a public subworkflow using Call Public Workflow. Iam getting follwoing error. It will eb great if someone help me to comeout from this problem regards Ananth <Nov 15, 2002 7:24:42 PM IST> <Error> <B2B> <000000> <<B2B-BPM-Plugin> ERROR

  • How to check for updates on SCM packages?

    Hey guys, I wondered for some time now how to check for updates on SCM packages, i.e. -git or -svn ones. Updates for binary packages are automatically updated by pacman, no problem there. Checking for updates on non-SCM packages from the AUR is easil

  • Want to uninstall all versions

    In the past I have installed multiple versions of Visual Studio Express (2008, 2010, 2012, 2013). Included in this is multiple versions of SQL Server. I just want a fresh start. I know not to uninstall any versions of .NET Framework or the C++ Redist