Issue with zoom

I need help with this issue I am having with my layout. If you were to go to my site and either zoom in or decrease the size of the browser window, two undesirable things will happen.
1. The content part of my page will cover the navigation buttons
2. The right side of the header will misalign itself with the content section.
I can't seem to fix this problem. My site is http://abstracthealth.com

Have a look at JTANNA's answer here http://forums.adobe.com/message/4150785#4150785.
If you don't understand it, please do as JTANNA has suggested and post back under that topic.
Gramps

Similar Messages

  • Scrolling Issues with Zoom

    I recently got a new HP computer and installed photoshop CS4 onto it. The irritating thing about it is when im using alt+scroll wheel to zoom in and out as soon as i get close enough to the image that side scroll bars appear the alt+mousewheel will no longer work. It simply scrolls up and down and i need to grab the zoom tool in order to do anything else afterwards. Im pretty sure this is a conflict with my OS or something but has anyone else had this issue or know a way to resolve it? HP computer with vista 64 home. Any help is appreciated because its just irritating me.

    I would look at all the extra software that HP puts on their computers. There have been a few posters on here who bought new computers that discovered some pre-loaded software was conflicting with CS4.

  • Issue with Zoom- Formula option in Excel add in

    Hi All,
    In spreadsheet add in when I enable the option, Essbase->Options->Zoom->Formulas and then do a retrieve operation for a level 0 member having a formula in the outline, it returns the members that are included in the formula. The above works fine for a BSO application.
    But when I do the same operation on a level 0 member of an ASO application that has a formula associated to it does not retrieve the members of the formula.
    Can anyone help me on the above.
    Thanks,
    Raja

    I'm guessing that the zoom in on formula does not understand MDX. IT works for the BSO cube on simple calculations because it can understand calc script language and figure out the member names. When it gets to complex formulas in BSO it can't do it any more. MDX is a different animal for Essbase and I'll bet they never thought about modifying the add-in for ASO. As far as I know there were no special modifications to the add-in for ASO

  • Zoom Issues with JScrollPane

    Hello all,
    I have ran into an issue with zoom functionality on a JScrollPane.
    Here is the situation (code to follow):
    I have a JFrame with a JDesktopPane as the contentpane. Then I have a JScrollPane with a JPanel inside. On this JPanel are three rectangles. When they are clicked on, they will open up a JInternalFrame with their name (rect1, rect2, or rect3) as the title bar. Rect3 is positioned (2000,2000).
    I have attached a mousewheel listener to the JPanel so I can zoom in and out.
    I have also attached a mouse listener so I can detect the mouse clicks for the rectangles. I also do a transformation on the point so I can be use it during clicks while the panel is zoomed.
    All of this works fantastic. The only issue I am having is that when the JScrollPane scroll bars change, I cannot select any of the rectangles.
    I will give a step by step reproduction to be used with the code:
    1.) Upon loading you will see two rectangles. Click the far right one. You'll see a window appear. Good. Move it to the far right side.
    2.) Zoom in with your mouse wheel (push it towards you) until you cannot zoom anymore (May have to get focus back on the panel). You should see three rectangles. Click on the newly shown rectangle. Another window, titled rect3 should appear. Close both windows.
    3.) This is where things get alittle tricky. Sometimes it works as intended, other times it doesn't. But do something to this affect: Scroll to the right so that only the third rectangle is showing. Try to click on it. If a window does not appear - that is the problem. But if a window does appear, close it out and try to click on the 3rd rect again. Most times, it will not display another window for me. I have to zoom out one step and back in. Then the window will appear.
    After playing around with it for awhile, I first thought it may be a focus issue...I've put some code in the internal window listeners so the JPanel/JScrollPane can grab the focus upon window closing, but it still does not work. So, either the AffineTransform and/or point conversion could be the problem with the scroll bars? It only happens when the scroll bar has been moved. What affect would this have on the AffineTransform and/or point conversion?
    Any help would be great.
    Here is the code, it consists of two files:
    import java.awt.Color;
    import java.awt.Dimension;
    import javax.swing.BorderFactory;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    public class InternalFrameAffineTransformIssue
         public static void main ( String[] args )
              JFrame frame = new JFrame("AffineTransform Scroll Issue");
              frame.setLayout(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JDesktopPane desktop = new JDesktopPane();
              frame.setContentPane(desktop);
              MyJPanel panel = new MyJPanel(frame);
              JScrollPane myScrollPane = new JScrollPane(panel);
              panel.setScrollPane(myScrollPane);
              myScrollPane.setLocation(0, 0);
              myScrollPane.setSize(new Dimension(800, 800));
              myScrollPane.getVerticalScrollBar().setUnitIncrement(50);
              myScrollPane.getHorizontalScrollBar().setUnitIncrement(50);
              myScrollPane.setViewportBorder(BorderFactory.createLineBorder(Color.black));
              frame.getContentPane().add(myScrollPane);
              frame.setBounds(0, 100, 900, 900);
              frame.setVisible(true);
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseWheelEvent;
    import java.awt.event.MouseWheelListener;
    import java.awt.geom.AffineTransform;
    import java.awt.geom.NoninvertibleTransformException;
    import java.awt.geom.Point2D;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.event.InternalFrameAdapter;
    import javax.swing.event.InternalFrameEvent;
    import javax.swing.event.InternalFrameListener;
    public class MyJPanel extends JPanel implements MouseWheelListener
              double zoom = 1;
              Rectangle rect1 = new Rectangle(50, 50, 20, 20);
              Rectangle rect2 = new Rectangle(100, 50, 20, 20);
              Rectangle rect3 = new Rectangle(2000, 2000, 20, 20);
              AffineTransform zoomedAffineTransform;
              JFrame frame;
              JPanel myPanel = this;
              JScrollPane myScrollPane;
              public MyJPanel(JFrame inputFrame)
                   setAutoscrolls(true);
                   addMouseListener(new MouseAdapter(){
                        public void mousePressed ( MouseEvent e )
                             System.out.println("Clicked: " + e.getPoint());
                             AffineTransform affineTransform = zoomedAffineTransform;
                             Point2D transformedPoint = e.getPoint();
                             //Do the transform if it is not null
                             if(affineTransform != null)
                                  try
                                       transformedPoint = affineTransform.inverseTransform(transformedPoint, null);
                                  catch (NoninvertibleTransformException ex)
                                       ex.printStackTrace();
                             System.out.println("Tranformed Point: " + transformedPoint);
                             if(rect1.contains(transformedPoint))
                                  System.out.println("You clicked on rect1.");
                                  createInternalFrame("Rect1");
                             if(rect2.contains(transformedPoint))
                                  System.out.println("You clicked on rect2.");
                                  createInternalFrame("Rect2");
                             if(rect3.contains(transformedPoint))
                                  System.out.println("You clicked on rect3.");
                                  createInternalFrame("Rect3");
                   addMouseWheelListener(this);
                   frame = inputFrame;
                   setPreferredSize(new Dimension(4000, 4000));
                   setLocation(0, 0);
              public void paintComponent ( Graphics g )
                   super.paintComponent(g);
                   Graphics2D g2d = (Graphics2D) g;
                   g2d.scale(zoom, zoom);
                   zoomedAffineTransform = g2d.getTransform();
                   g2d.draw(rect1);
                   g2d.draw(rect2);
                   g2d.draw(rect3);
              public void mouseWheelMoved ( MouseWheelEvent e )
                   System.out.println("Mouse wheel is moving.");
                   if(e.getWheelRotation() == 1)
                        zoom -= 0.05;
                        if(zoom <= 0.20)
                             zoom = 0.20;
                   else if(e.getWheelRotation() == -1)
                        zoom += 0.05;
                        if(zoom >= 1)
                             zoom = 1;
                   repaint();
              public void createInternalFrame ( String name )
                   JInternalFrame internalFrame = new JInternalFrame(name, true, true, true, true);
                   internalFrame.setBounds(10, 10, 300, 300);
                   internalFrame.setVisible(true);
                   internalFrame.addInternalFrameListener(new InternalFrameAdapter(){
                        public void internalFrameClosed ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                        public void internalFrameClosing ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                   frame.getContentPane().add(internalFrame, 0);
              public void setScrollPane ( JScrollPane myScrollPane )
                   this.myScrollPane = myScrollPane;
         }

    What I'm noticing is your zoomedAffineTransform is changing when you click to close the internal frame. This ends up being passed down the line, thus mucking up your clicks until you do something to reset it (like zoom in and out).
    Clicking on the JInternalFrame appears to add a translate to the g2d transform. This translation is what's throwing everything off. So in the paintComponent where you set the zoomedAffineTransform, you can verify if the transform has a translation before storing the reference:
             if (g2d.getTransform().getTranslateX() == 0.0) {
                zoomedAffineTransform = g2d.getTransform();
             }Edited by: jboeing on Oct 2, 2009 8:23 AM

  • Mx.controls.Text zoom issue with wrapped text. Is this a bug?

    We have created a diagram drawing tool in Flex, but we are having a serious issue with zooming. Everything zoom fine expect the Text control if it contains wrapped text. At certain zoom levels, some of the text seems to disappear (usually text at the end). I have tried everything, embedding fonts, turning anti-aliasing on and off, setting anti-aliasing to normal or advanced, but it doesn't seem to fix the problem. Is this is a known bug?
    If you check out the pictures (see attachments), you will see that the part of the text ('34') disappears at a certain zoom level.
    There is another blog who suggest to embed the font and set the antiAliasType to ‘animation’ (http://www.mehtanirav.com/2008/08/20/zooming-text-area-in-flex-messes-up-word-wrap-bug%20), but this doesn't seem to work for me either. I don't know if I am doing this correctly though, but I embedded a font and called text.setStyle("fontAntiAliasType","animation"). However, 'animation' is not one of the  AntiAliasType contants. According to the official documentation, the AntiAliasType constants are 'advanced' or 'normal'.
    Any help will be appreciated.

    Try this:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.text.*;
    class textpaneColor extends JFrame {
       JTextPane tp = new JTextPane();
       JButton button = new JButton("color");
       public static void main(String args[]) {
          textpaneColor obj = new textpaneColor();
          obj.showMe();
       void showMe() {
          button.addActionListener(new buttonListener());
          setSize(200,200);
          getContentPane().setLayout(new BorderLayout());
          getContentPane().add(tp, BorderLayout.CENTER);
          getContentPane().add(button, BorderLayout.SOUTH);
          setVisible(true);
       class buttonListener implements ActionListener {
          public void actionPerformed(ActionEvent e) {
             SimpleAttributeSet set=new SimpleAttributeSet();
             StyleConstants.setForeground(set,Color.BLUE);
             StyledDocument doc=tp.getStyledDocument();
             doc.setParagraphAttributes(0,999999,set,true);
    };o)
    V.V.

  • Issues with converting to PDF and zoom size

    I've created a Captivate file and converted this to Adobe PDF - when we have tested the output we notice a white edge on the left and bottom side of the document and encounter issues with 'zoom' on pdf - when its 100% its fine (apart from the white edge), but when we reduce the zoom it covers the project and exposes only a small amount of it.
    Any ideas?

    I've created a Captivate file and converted this to Adobe PDF - when we have tested the output we notice a white edge on the left and bottom side of the document and encounter issues with 'zoom' on pdf - when its 100% its fine (apart from the white edge), but when we reduce the zoom it covers the project and exposes only a small amount of it.
    Any ideas?

  • Is apple going to fix the magic trackpad issue with Autocad zoom/pan soon? It only started happening when I updated to Yosemite

    is apple going to fix the magic trackpad issue with Autocad zoom/pan soon?
    It only started happening when I updated to Yosemite
    I am using macbook pro 15" Retina

    Although it not only bothers me but alot of other photo booth users aswell

  • Lion / Safari 5.1 has issues with the pinch/zoom (embedded links don't zoom correctly)

    Ever since upgrading to Lion Safari 5.1 has issues with the pinch/zoom.  Any embedded link does not zoom in proportion to the surrounding page and it makes it unusable. (the embedded link zooms much more).  Any ideas?  This makes safari almost unusable for many webpages.
    Is there a fix to this?  Or can I consider uninstalling 5.1 and rolling Safari back to 5.05?  Not sure if this is a Lion issue or a Safari issue.  Everything worked great prior to Lion. 
    (I have to say, Lion has been more annoying than beneficial to this point!)

    Here are 2 screenshots of the issue (before and after a zoom)  see how the add in the first one that shows 25% off in the first picture zoomed too large after the zoom to see the whole thing?

  • Connectivity Issues with USB 3 ports on macbook pro

    Hi,  I have a zoom r24 which is no longer working as an audio interface with my new macbook pro.  I have read a lot about issues with USB 2 devices not being compatible with USB 3 ports on the macs. This seems to be midi as well as audio devices.  Can anyone recommend or point me to a list of supported devices for both audio and midi which are guaranteed to work with a late 2013 macbook pro retina display.  I cant afford a thunderbolt device.  Thanks steve

    Just a wild thought here, but have you tried inserting a powered USB 2.0 hub between the MacBook and the interface?

  • Issues with lines across the screen, as well as freezing

    Issues with lines across the screen, as well as freezing
    Hello all
    Got an iMac since January 2008 and I do like it a lot, even though it has some issues:
    -- It displays (quite often) lines partially across the screen
    -- Lines appear as well when opening applications or when menus come up
    -- The system freezes more than I like to admit (more than my Windows/Ubuntu box)
    I don't know if the freezing has to do with the lines that are shown on my screen. But I assume that both issues relate to some video card problem. I can't be sure - but that's what I assume from living with this issue day to day.
    The line on the desktop (most of the time it is there before login) I can always get rid of by changing the display resolution to something else and then changing it back. Normally the line is gone, or, reappears on a different spot on the desktop. But repeating the procedure removes the line.
    However, this does not mean that the lines are not showing up again when launching apps or displaying menus!
    And since those lines appear to happen randomly, I think it's safe to assume that we're not talking dead pixels here, either...
    About the freezing:
    My iMac freezes sometimes when I move the mouse around, when switching desktops using "spaces" or when the zoom function of the Dock kicks in. Sometimes the screen goes completely black, sometimes completely white. The mouse, however, always works. But the system requires a reboot.
    Again, this happens too often to feel comfy about it.
    With my little knowledge of Mac troubleshooting I assume that there's something wrong with the ATI card that's built into my Mac. On the other hand, some people say that they started getting similar issues after updating their OS to Leopard. Again other people say that such issues stem from an ATI revision that is too old and the Mac should get a new ATI card. And how would that work? Isn't that an "all-in-one" machine with everything soldered onto the mainboard?
    So, any help in this matter is greatly appreciated...
    Cheers,
    Rainer

    Here are a few screen photos I've taken (not screenshots, as the lines are not visible when taking screenshots. I used my digicam to snap those...).
    Here's the link to those screen photos displaying some of the many lines I keep having:
    http://picasaweb.google.com/rainer.rohde/NewAlbum62508115AM
    Needless to say, as I typed this message here, I had a nice line going across my Safari window..
    Cheers,
    Rainer

  • [Applet]Printing issue with pdf files on Xerox 4595

    Greetings !!
    I'm trying to print to a Xerox 4595 printer from a Windows XP station (limited account) using a Java Web Applet.
    This applet generates pdf files which have to be printed.
    The Xerox 4595 uses a printing queue that is detected by the Applet.
    The problem is the following: usually when printing a simple local file from this computer there is a box that asks you your login to let you create a job and then print.
    When using the Java Applet, there is no way to have this print box displayed. We have the Java Print Dialog but once clicked on "Print" there is no box displayed to pass the login to the printer and let us print.
    Is anyone already worked with Xerox 4595 and experienced such issue ?
    How can I, using the Java language and modify the Applet, ask the printer to send me the dialog box asking for the login ? Without this login no jobs are accepted and we can't print the generated pdf files.
    I looked on the printer queue settings and it seems that the Xerox uses the IPP to communicate with the local computers in the office.
    The server from which the Applet is used is a openSuSE Linux Web server (apache2)
    How come using Linux workstations any pdf files are printed (on shared printers such HP laserjet) and under windows there is jammed characters and sheet feed instead ?

    A lot can depend upon which app your are using on your tablet device, the same applies to computer programs but apps are much worse.
    Which app are you using?
    I would try the free Adobe Mobile Reader. This product seems to support more features than other apps.
    There could even be issues with the type of tablet you are using. The Apple line may work better then Android devices since there is QA check and approval by Apple.
    Another factor is the how the PDF was created.
    How well are the maps displayed on your laptop or desktop? Try different values of zoom.

  • Mac Pro 6,1 STILL having issues with Open CL (4K scaling and SpeedGrade direct link grades)

    I've seen the staff responses to the issues of the new Mac Pro GPU saying that 10.9.4 fixes everything. For me, it has fixed my export issues, so I'm glad. I'm no longer getting lines and artifacts on my renders.
    That's great.
    However, I'm still having several issues, and they seem to be linked to Adobe and Open CL.
    Here's a video that shows what's going on:
    mac pro issues july 7 - YouTube
    Issue #1
    Like most of you probably, I'm doing 1080p exports of most things I'm working on. The first project shows a 1080p timeline with a mix of 4k, 5k, and 720p footage. Because zooming in so much on a 720p file in a 4k timeline looks so crappy, I'm doing 1080p timelines and scaling everything to the size it needs to be. I started in a 4k timeline then switched to 1080p because the 720p footage looked so terrible. However, in the 4k timeline, I didn't have any of the issues I'm showing in this first part of the video.
    When I switched to the 1080p timeline, I discovered a weird quirk: When I resize the 4k (or 5k) footage to the size it needs to be (which varies based on the frame I want), it goes back to the 100% view when I'm scrubbing through it. When I pause, the size of the video goes back to the way I set it. I show this in the video. Then I show what was my working solution for the time being: "scale to frame size", which brings all the videos to the size of the sequence frame size and works fine. Later, I turn off OpenCL in premiere and when I scrub through the video, it doesn't zoom back in or only stay at the size I set when stopped. For some reason all of these issues only happen at 50% scale or smaller. It doesn't happen at, say, 60%.
    I've tested this with raw R3D files and other 4K (or 5K) clips (even clips exported from After Effects) and the same thing happens. It doesn't seem to happen with 2.5k footage or 1080p footage.
    Issue #2
    This is the second project you'll see in the video.
    After grading in speedgrade (through direct link) I open my project back up in premiere and start playing it back. The video plays back with delays and frame drops. Now normally, this would be expected. But this is 1080p pro res footage, and this is just an effect added, and the yellow bar appears indicating that open CL should be accelerating the playback and it should do so smoothly.
    Maybe I was just wrong in assuming that a simple grade from speedgrade would be able to playback smoothly. I turn off the grade, and it plays normally.
    But then, when I turn off open cl and leave the grade on, the video plays back without ANY issues.
    So to me, it seems I'm still having issues with Open CL and adobe. I've found fixes that make it work temporarily, I don't need that kind of answer. However, I would like this to work. Is there something I'm doing wrong? Something I need to do to get this to work?
    Here are my specs:
    Mac Pro 6,1 (Late 2013)
    3 GHz 8-Core Intel Xeon E5
    64 GB 1867 MHz DDR3 ECC
    AMD FirePro D700 6144 MB (x2)
    OSX 10.9.4
    Firmware: 2.20f18
    What you're seeing is latest version of Premiere (CC 2014, v8.0.0 [169] Build)
    Everything here is ProRes 422, running from a Promise Pegasus2 R4 RAID (drives: 4x Seagate Desktop HDD 4 TB SATA 6Gb/s NCQ 64MB Cache 3.5-Inch Internal Bare Drive ST4000DM000) (that's thunderbolt 2).
    I've done everything: I've restarted my computer hundreds of times, I've reset NVRAM and PRAM and done power cycles.
    This isn't just some issue that started with 10.9.3 of OSX, the 4k issues happened when I first switched to a 1080p sequence back in February (2014) or so, which means it was an issue even with 10.9.2 and the previous firmware release.
    I've reported this issue to adobe.

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • Possible GPU Issues With Camera Raw 6.6

    Over the past day on my Windows 7 x64 workstation I've done some updates.  Specifically:
    The Adobe updater brought in Camera Raw 6.6, replacing 6.5.
    I updated the to the ATI Catalyst 11.12 display driver version from previous version 11.11.
    I allowed Windows Update to apply the dozen or so changes that were pending.
    I was just doing some OpenGL testing with Photoshop CS5 12.0.4 x64 and I noticed that under some conditions I saw Photoshop drop out of OpenGL acceleration.  Specifically, when I opened a Canon 5D Mark II image through Camera Raw I saw subsequent operations stop using OpenGL acceleration even though the checkmark remained in the [  ] Enable OpenGL Drawing box in Edit - Preferences - Performance.
    What I did to determine whether OpenGL acceleration was enabled was this:  Select the Zoom Tool, then click and hold the left mouse button on the image.  When OpenGL is enabled, I see a smooth increase in zoom.  When it goes disabled, I see only a jump in zoom level after letting up the mouse button.  Also, the [  ] Scrubby Zoom box gets grayed out.  As I mentioned, even in this condition, a check of Edit - Preferences - Performance still shows OpenGL enabled.
    Just as a control, I saved the converted file as a PSD, and every time I opened THAT file (with a fresh copy of PS CS5 running) and did the same operations I could not reproduce the failure.  The difference being I did not run Camera Raw.
    Since I wasn't specifically looking for issues with Camera Raw, I am not sure that the problem occurred every time I did run Camera Raw.  I do know that when I open images from my own camera (40D; I do not own a 5D Mark II) that the problem doesn't seem to occur.  Notably I always open my image from Camera Raw to the largest possible pixel size - 6144 x 4096, as I did with the 5D Mark II image, so it's not an obvious size difference that's leading to the issue.  Given other comments of late, I'm wondering if it could be a specific issue with conversions of files from 5D Mark II.
    Nor am I sure whether any of the above updates caused it - it might done this before; I don't regularly convert 5D Mark II images.  I DO think I would have noticed Photoshop reverting to GDI operation before, since I just noticed it pretty easily, but I'm not completely sure of that either.  I do use OpenGL-specific features (such as right-click brush sizing) pretty often.
    I'm trying now to find a set of steps with which to reliably reproduce the problem now, and will advise.
    -Noel

    Figures.  Now I can't reproduce the problem at all, even after an hour of testing.  It probably had nothing to do with Camera Raw.
    I wonder if there are latent GPU status indicators and config values stored by Photoshop based on its specific environment that might not be right for the first run (or first few runs) after a display driver update.  Hm....
    -Noel

  • OS X LION Issues with Full-Screen; iPhoto, Image Capture & Mail

    Hello,
    I'm experiencing un-Apple-like issues (bugs) with Lion in Full-Screen mode.
    For example - iPhoto doesn't seem to like Full-Screen mode. If iPhoto is open and I connect a camera, for which I prefer Image Capture to retrieve my pics... Image Capture opens 'behind' the full-screen iPhoto, but I can't get to it. Image Capture shows as open on the menu bar in iPhoto's full-screen mode. If I go to the desktop (where it should be opening) Image Capture isn't 'on top' and clicking it takes me back to iPhoto full-screen
    Similarly, if I get mail and return to the desktop (the only way to see the dock) and I click on the 'Mail' app icon - I am catapulted into Image Capture... or iPhoto. Returning to the Desktop to click the Mail icon from the dock... takes me to Image Capture... or iPhoto. The 3rd try takes me to the Mail.app which is usually always open and in full-screen mode.
    While I'm complaining about bugs, I'd like to mention that I am fully dismayed by the loss of control in full-screen mode when using apps such as Mail or iPhoto. The Mail app opens an email to edit (such as a reply) but you can't access any other mail docs to 'cut and paste' info from. I can only click SEND or CANCEL.
    What if I don't want to CANCEL? I just want to go to another email and cut a piece to paste.. I have to exit full-screen mode which allows me to open two email documents at once, then cut and paste. Essentially Mail in Full-Screen is only a reader... not a work area. I can only access the document I have open, since it greys out the Message Viewer. You can't click on the message viewer nor access any of the features of Mail.app. You can only write your email and either Cancel or Send. Where is the 'hold on a second while I go cut and paste'? I don't want to cancel.
    Can't seem to use Safari since I'm constantly three-finger swiping it away. My cursor hovers over a text field and suddenly it's zooming in and locks text input. I have to iPhone-like swipe to expand to exit this inadvertent partial (very slight) zoom. Sometimes the zoom is so partial that I can't figure out what's going on until I just exit full-screen mode, close the window and start over.
    Seems like I'm starting over and over and over... just to do simple things. Inadvertent zooming, inadvertent 3-finger returning to Desktop, inadvertent changing apps... ugh.
    I'm willing to let go of the old and embrace the new future but so far it's been pretty uncomfortable for me to constantly monitor my overly sensitive trackpad gesturing combined with constant bugs and glitches. I'll save complaining about iPhoto's over-simplification (apparently for dummies) like the new Edit menu, Export menu, etc.. since it's more iLife than Lion related. Rate Lion: 2 out of 5 stars for ease of use & features complicated by unrefined software issues.

    I've tried follwoing these instructions but I have an issue with
    # Create snort user. The intention is to let user snort have access only to the snort database.
    $ sudo createuser -U _postgres -P snort
    Password:
    Enter password for new role:
    Enter it again:
    Shall the new role be a superuser? (y/n) n
    Shall the new role be allowed to create databases? (y/n) n
    Shall the new role be allowed to create more new roles? (y/n) n
    It keeps telling me "could not connect to database postgres: could not connect to server: No such file or directory"
    I'm running OSX Mountain Lion, and have verified using serveradmin status postgres that it is up and running.

  • Cursor Issues with Snow Leopard

    I am having two cursor-related issues with my mid-2010 MBP, running 10.6.7.  Both problems are intermittent and occur with either the built-in trackpad or the external Magic Trackpad.
    Problem #1:  Cursor movement is normal, however if I attempt to click on a window to bring it to the front, or click on the red button to close a window, or click on a menu item, nothing happens.  Short-cut keys work normally.  Application Switcher works normally.  Thus far, my only solution is to Shut Down the computer and then re-Start it.
    Problem #2:  After a short absence from the computer, I could not find the cursor.  Using the Control 2-finger Zoom, I determined that the cursor was at the upper-right corner of the MBP screen (I do have a second monitor.)  Realizing where the cursor was, I tried to move it.  The cursor would only move away from the corner by less than an inch and then would snap back into the corner.  I performed a Shut Down (could not get to Restart) and Start, which resolved the problem.
    Any thoughts or suggestions would be appreciated.
    Thanks,

    Another update and an easier work-a-round.
    Both problems appear to be "solved" by unplugging the USB cable to my Apple keyboard and mouse.  At that point, I do have control from the MBP trackpad.  If I re-plug in the USB cable, things go back to normal.
    My configuration is:  an external keyboard and mouse (not normally used) connected to the MBP by USB cable (this is the cable that I have to disconnect); and a Magic Trackpad connected by Bluetooth.
    The work-a-round of disconnecting the USB cable is simple enough, but I am still interested if anyone has thoughts on what might be causing the issue in the first place.
    Thanks again for any suggestions.

Maybe you are looking for

  • HTTPS port Active in CRM server

    Hi All, Our client wanted to do SAP CRM and Outlook integration. for the same they required HTTPS port to be opened and activated...... Presently we can not proceed with issuing certificate on SAP Web Application Server, since there is no option on S

  • Ignoring last 2 lines while reading the file

    Hi All, I have a file structure as mentioned below : ab ab ab ab ======= = While reading a file , i need to ignore the last 2 lines . How to achieve this using FCC parameters. Regards Vinay P.

  • Stock material to fixed asset- STO

    Hello Guys, I have a typical requirement from our client. When equipment is ordered for our company, it arrives first at the warehouse.  The logistics people want to treat this like a material so they can see a stock overview of e.g. ovens.  But when

  • New bridge issues

    i downloaded the new bb bridge update now my playbook will not connect with my torch anymore .. any ideas on how to fix this

  • Not condition in Advanced option of Suppression

    Hi, When I am using the "not condition" in the advanced option of Suppression in Financial Reporting, its not giving the desired result. I want to suppress a column based on a not condition. When i dont use "not condition" its working fine and giving