Can I make 10.10 look and feel like 10.6 ?

Hi ... I upgraded my late iMac mini 2009 (2.53Mhz) to 10.10 .
First, contrary to some posters on these boards, I would not recommend, 10.10 runs very slow .... you are much better off in an older OS (I would love to go back to 10.6)
Some advantages of 10.10 is that your machine is up to date with the world (where 10.6 is losing support in the real world).
My biggest gripe with 10.10 : is I can't find things, can't move things ... the finder window is useless ; the machine search in the middle of screen annoys me and limits information and options.
Is there any way I can make 10.10 feel and look more like 10.6 ?
thx

You can set  SystemPreferences->Accessability->Displays to "increase contrast": check this one and then slide the contrast slider to the left completely.
There was a little app that recersed the scroll direction in the SnowLeopard period for people who did not want the scroll direction of Lion and later: you can try it https://pilotmoon.com/scrollreverser/
But it will still be very different from SnowLeopard.
Otherwise you can go back to SnowLeopard if your mac was built in the (Snow)Leopard time, like Pete suggests.

Similar Messages

  • I sure hope that the new imessenger doesn't look like the text messaging app, that would be a huge flop for apple. It has to look and feel like bbm or it will just suck.

    I sure hope that the new imessenger doesn't look like the current text messaging app, that would be a huge flop. I think I should look and feel like the bbm to make any kind of significant impact. Am I wrong?

    "iMessage in iOS 5 brings the functionality of iPhone messaging to all of your iOS devices―iPhone, iPad and iPod touch. Built right into the Messages app, iMessage allows you to easily send text messages, photos, videos or contact information to a person or a group on other iOS 5 devices over Wi-Fi or 3G. iMessages are automatically pushed to all your iOS 5 devices, making it easy to maintain one conversation across your iPhone, iPad and iPod touch. iMessage also features delivery and read receipts, typing indication and secure end-to-end encryption."
    That is from the Apple site. If all your friends have an iPhone, iPod Touch, or iPad you cang share with your friends, with is exactly like BlackBerry Messenger (BBM only works on BBs).
    And it does look just like the current message format. You can also find that at www.Apple.com

  • Problem about look and feeling

    i want to make my jframe looking and feeling like jdeveloper.what should i do ?

    Hi,
    if I remember well then JDeveloper uses the JGoodies Plastic Look and Feel. Just go to http://www.jgoodies.com/ and get the look and feel.
    Frank

  • I just updated iOS on my iPhone 5. What a shock!! Where is the premium look and feel I bought my iPhone for? If I wanted the lokale feel of iOS 7.0 I would have bought a much cheeper taiwanese smartphone. Please let me know how I can return to the origina

    I just updated iOS on my iPhone 5.
    What a shock!! Where is the premium look and feel I bought my iPhone for?
    If I wanted the lokale feel of iOS 7.0 I would have bought a much cheeper taiwanese smartphone.
    Please let me know how I can return to the original look and feel of the iPhone surface I bought my phone for.

    You had plenty of time to look at screenshots on the internet and read various blog posts about iOS 7.

  • Java Components and Look and Feel

    Can anyone suggest a free look and feel that does not resemble the standard stuff that comes with the JDK?
    Also, Swing seems to be missing some important components like dockable windows, and toolbars. Can anyone suggest some resource that offers interesting swing components?

    Can someone suggest a good API for doing this stuff?
    I would really like to consider using Java for some
    e real world application, but the swing interface
    makes applications look at least 15 years old.Really? My applications look like native windows applications (when run under Windows, at least). Try setting the native look and feel. Search the forum if you don't know how.

  • How to customize the title bar on my own Look And Feel?

    Hi all!
    I am creating my own Look and Feel which extends from NimbusLookAndFeel. What I'm doing is overwriting UIDefaults values??, referring to the Painters. For example:
    +uiDefault.put ("Button [Enabled]", new ButtonEnabledPainter());+
    But now I need is to customize the title bar of the JFrame's, but I do not see this option in Painter's values ??can be overwritten by Nimbus (http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_nimbusDefaults . html).
    You know as possible? I have to overwrite an existing UI component? The idea is I want to make the look and feel like SeaGlass, but the code seems a bit complex to know where to begin.
    I hope you can guide me on this issue.
    Thank you very much for everything! And excuse my English!.
    Greetings!

    very simple example, with direct methods
    import java.awt.*;
    import java.awt.event.*;
    import java.util.LinkedList;
    import java.util.Queue;
    import javax.swing.*;
    public class NimbusBorderPainterDemo extends JFrame {
        private static final long serialVersionUID = 1L;
        private JFrame frame = new JFrame();
        private JPanel fatherPanel = new JPanel();
        private JPanel contentPanel = new JPanel();
        private GradientPanel titlePanel = new GradientPanel(Color.BLACK);
        private JLabel buttonPanel = new JLabel();
        private Queue<Icon> iconQueue = new LinkedList<Icon>();
        public NimbusBorderPainterDemo() {
            iconQueue.add(UIManager.getIcon("OptionPane.errorIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.informationIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.warningIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.questionIcon"));
            JButton button0 = createButton();
            button0.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(ICONIFIED);
            JButton button1 = createButton();
            button1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(MAXIMIZED_BOTH | NORMAL);
                }//quick implemented, not correct you have to override both methods
            JButton button2 = createButton();
            button2.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    int confirm = JOptionPane.showOptionDialog(frame,
                            "Are You Sure to Close Application?", "Exit Confirmation",
                            JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE,
                            null, null, null);
                    if (confirm == JOptionPane.YES_OPTION) {
                        System.exit(1);
            buttonPanel.setLayout(new GridLayout(0, 3, 5, 0));
            buttonPanel.setPreferredSize(new Dimension(160, 30));
            buttonPanel.add(button0);// JLabel is best and cross_platform JComponents
            buttonPanel.add(button1);// not possible put there witouth set Dimmnesion
            buttonPanel.add(button2);// and LayoutManager, work in all cases better
            titlePanel.setLayout(new BorderLayout());//than JPanel or JCompoenent
            titlePanel.add(new JLabel(nextIcon()), BorderLayout.WEST);
            titlePanel.add(new JLabel("My Frame"), BorderLayout.CENTER);
            titlePanel.setBorder(BorderFactory.createLineBorder(Color.GRAY));
            titlePanel.add(buttonPanel, BorderLayout.EAST);
            JTextField field = new JTextField(50);
            JButton btn = new JButton("Close Me");
            btn.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    System.exit(1);
            contentPanel.add(field);
            contentPanel.add(btn);
            fatherPanel.setLayout(new BorderLayout());
            fatherPanel.add(titlePanel, BorderLayout.NORTH);
            fatherPanel.add(contentPanel, BorderLayout.CENTER);
            frame.setUndecorated(true);
            frame.add(fatherPanel);
            frame.setLocation(50, 50);
            frame.pack();
            frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
            frame.setVisible(true);
            ComponentMover cm = new ComponentMover(frame, titlePanel);
            //by camickr http://tips4java.wordpress.com/2009/06/14/moving-windows/
        private JButton createButton() {
            JButton button = new JButton();
            button.setBorderPainted(false);
            button.setBorder(null);
            button.setFocusable(false);
            button.setMargin(new Insets(0, 0, 0, 0));
            button.setContentAreaFilled(false);
            button.setIcon(nextIcon());
            button.setRolloverIcon(nextIcon());
            button.setPressedIcon(nextIcon());
            button.setDisabledIcon(nextIcon());
            nextIcon();
            return button;
        private Icon nextIcon() {
            Icon icon = iconQueue.peek();
            iconQueue.add(iconQueue.remove());
            return icon;
        private class GradientPanel extends JPanel {
            private static final long serialVersionUID = 1L;
            public GradientPanel(Color background) {
                setBackground(background);
            @Override
            public void paintComponent(Graphics g) {
                super.paintComponent(g);
                if (isOpaque()) {
                    Color background = new Color(168, 210, 241);
                    Color controlColor = new Color(230, 240, 230);
                    int width = getWidth();
                    int height = getHeight();
                    Graphics2D g2 = (Graphics2D) g;
                    Paint oldPaint = g2.getPaint();
                    g2.setPaint(new GradientPaint(0, 0, background, width, 0, controlColor));
                    g2.fillRect(0, 0, width, height);
                    g2.setPaint(oldPaint);
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
                    } catch (Exception fail) {
                    UIManager.getLookAndFeelDefaults().put("nimbusFocus", Color.RED);
                    NimbusBorderPainterDemo nimbusBorderPainterDemo = new NimbusBorderPainterDemo();
    }

  • Manually drop frames for stop-animation look and feel?

    Hi, is there any way to manually drop frames in FCP? I need to make a scene (shot in mini-dv) look and feel like "stop motion animation". I was thinking if I could randomly drop frames and then slightly slow the footage down, it would give me the kind of "jary" effect of stop motion animation. And seing as dropping frames would essentially speed the fotage up, I would slow it down slightly to compensate. But individually dropping frames will take me forever!!! Is there a filter that can do this (FCP5)?
    Thanks,
    Lela

    Here's another option...
    Speed the clip (or sequence nested)up with no frame blending - FCP will drop frames. Experiment as using specific %s will do this for you.
    Then go into Cinema Tools and conform back to 29.97... This will make it look faster -- then slow it down without using frame blending and FCP will just duplicate frames.
    I've done this in Shake at it works great - I'm reaching just a bit that it will also work in FCP the same way.
    Good luck,
    CaptM

  • Portal look and feel?

    Hi,
    Can someone please direct me to threads/wiki/blog/sap help for customising portal look and feel like company branding logo and colour themes etc..  I have to a requirement to match SAP Portal interface to look like existing company intranet web site. 
    Also please let me know how can I transport these portal setting once configured to different environment (QA and PRD).
    Thanks
    Praveen.

    Hi Praveen,
    The questions you asked have been posted many a times before. Do search and if you dont get any good results then you may always post.
    As for know do refer to the following links:
    MastHead Change & Portal Desktop
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Portal Customizations Intro - Look&Feel Part 3
    http://wiki.sdn.sap.com/wiki/display/EP/LookandFeel
    For more information of Themes, Transporting themes - http://help.sap.com/saphelp_nw70/helpdata/en/f4/bb7a3b688d3c1de10000000a11402f/frameset.htm
    Thanks,
    GLM

  • Swing disabled components look and feel problem.

    Hi All,
    I have a Swing application. My system is recently upgraded to JRE 1.6 and I'm facing problem with look and feel of swing components when they are disabled. Color of disabled components is very faint and its being difficult to read the text in such disabled components. In JRE 1.4 this problem was not there. Please let me know what I can do to get the look and feel(Color and Font) of disabled components, same as JRE 1.4.
    Thanks

    Sandip_Jarad wrote:
    ..I have a Swing application. My system is recently upgraded to JRE 1.6 and I'm facing problem with look and feel of swing components when they are disabled. Which look and feel is the application using? As an aside, did it never occur to you to mention the PLAF?
    ..Color of disabled components is very faint and its being difficult to read the text in such disabled components. Why is it so gosh-darned important to read the text on a control that is (supposedly) not relevant or not available?
    ..In JRE 1.4 this problem was not there. Please let me know what I can do to get the look and feel(Color and Font) of disabled components, same as JRE 1.4. Here are some suggestions, some of them are actually serious. I'll leave it as an exercise for you, to figure out which ones.
    - Run the app. in 1.4.
    - Use a custom PLAF that offers a 'less faint' rendering of disabled components.
    - Use Motif PLAF (I haven't checked, but I bet that has not changed since 1.4).
    - Put the important text in a tool-tip.

  • Editing look and feel

    Hi, we just started editing our itunes u site. We've seen the theme and templates settings but however much we try we can not see how we could create a look and feel like that of say MIT or OHIO. The course panels that I see on the home page have a look to them that isn't attainable through the edit theme options. Can anyone point out to me what I'm missing here?

    Hello Jim,
    you can do the following to get a default layout without the JSC styles:
    1. Copy the defaulttheme.jar (folder: \build\web\WEB-INF\lib) into a new folder (e. g. \mydefaulttheme) and rename it to mydefaulttheme.jar. Open mydefaultheme.jar with Winzip.
    2.Extract all the files into the same folder (\mydefaulttheme). You get a folder com.
    3. Open css_ie55up.css and css_master.css in \com\sun\rave\web\ui\defaulttheme\css with an editor of your choice, delete the whole content and save the empty files.
    4. Right click the com folder, choose Add to Zip file and add the modified files to mydefaultheme.jar.
    5. In JSC click Tools/Library Manager. Click New Library ... and choose the Library Type Theme Libraries. Give your theme a name and add it with the Add Jar/Folder Button. You have to set the Classpath and the Runtime.
    6. Choose Projects/Themes. Right click your theme and choose Set As Current Theme.
    7. Finally create your own style sheet file in the resources folder and add it to the page ...

  • Exception for Metouia look and feel

    hi,
    i m getting this exception when trying to change Metouia look and feel.
    like we have 3DLF.jar for ThreeD look and feel.
    if u have any solution pls suggest as soon.
    ThreeDPrefs.internalFrameTitleFont.getSize() 10
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    *     at net.sourceforge.mlf.metouia.MetouiaScrollPaneUI.paint(MetouiaScrollPaneUI.java:89)*
    *     at javax.swing.plaf.ComponentUI.update(Unknown Source)*
    *     at javax.swing.JComponent.paintComponent(Unknown Source)*
    *     at javax.swing.JComponent.paint(Unknown Source)*
    *     at javax.swing.JComponent.paintChildren(Unknown Source)*
    *     at javax.swing.JComponent.paint(Unknown Source)*
    *     at javax.swing.JComponent.paintChildren(Unknown Source)*
    *     at javax.swing.JComponent.paint(Unknown Source)*
    *     at javax.swing.JComponent.paintChildren(Unknown Source)*
    *     at javax.swing.JComponent.paint(Unknown Source)*
    *     at javax.swing.JLayeredPane.paint(Unknown Source)*
    *     at javax.swing.JComponent.paintChildren(Unknown Source)*
    *     at javax.swing.JComponent.paint(Unknown Source)*
    *     at javax.swing.JComponent.paintToOffscreen(Unknown Source)*
    *     at javax.swing.BufferStrategyPaintManager.paint(Unknown Source)*
    *     at javax.swing.RepaintManager.paint(Unknown Source)*
    *     at javax.swing.JComponent._paintImmediately(Unknown Source)*
    *     at javax.swing.JComponent.paintImmediately(Unknown Source)*
    *     at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)*
    *     at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)*
    *     at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)*
    *     at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)*
    *     at java.awt.event.InvocationEvent.dispatch(Unknown Source)*
    *     at java.awt.EventQueue.dispatchEvent(Unknown Source)*
    *     at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)*
    *     at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)*
    *     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)*
    *     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)*
    *     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)*
    *     at java.awt.EventDispatchThread.run(Unknown Source)*

    [Look and Feel|http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/index.html]

  • Make one bitmap have same "look and feel" as another

    Hello community.
    First time I am coming across this problem for a client.
    He wants an old photograph (b/w, scanned) to be the "blueprint" for another one, which he just made with his digicam. The latter is of course quite different in lighting etc., but that's not what I am really worried about as I have the raw file so I can play around.
    But is there a reasonably quick way to have that new digicam image have the same "look and feel" of that old, scanned image? I cannot post the image I am talking about (copyright issue), but if I had to make a new digicam image have the same "look and feel" of, say, such a picutre - what would I have to do?
    Hints to simple techniques will do, because the pay for this job is close to lousy... :-(
    Thanks all.
    - creedless -
    equipped with a MacBook Pro and Photoshop CS4 Extended

    Download a "grunge" or "old photo" pic from stock xchange and put it on top of the photo in overlay or soft light mode. You can adjust the grunge layer with levels to make it a more neutral layer for blending. Use the dodge and burn tools to draw smudges on the photo, particularly lightening or darkening the edges of the photo. You can also use the blur brush to soften the image, except for around the face.
    See tutorials:
    http://www.adobe.com/designcenter/photoshop/articles/phs8kbfilmgrain.html
    http://photoshoptutorials.ws/photoshop-tutorials/photo-effects/natural-film-grain.html
    http://www.photoshoptalent.com/photoshop-tutorials/old-looking-photos.php
    http://www.photoshopessentials.com/photo-effects/old-photo/

  • How can we remove the space after changing look and feel to generic

    Hi
    I want to remove the space which left blank after changing look and feel to generic in formsweb.cfg file.
    Can anybody help me to remove this blank space.

    Hi,
    can you be more specific on teh space you mean?
    Frank

  • How Can You Change the Look and Feel of Charts in OBIEE 11g

    How Can You Change the Look and Feel of Charts in OBIEE 11g?
    Edited by: user11973122 on Jul 18, 2012 12:13 AM

    Check these files
    OFM_HOME\Oracle_BI1\bifoundation\web\msgdb\s_blafp\viewui\chart\dvt-graph-skin.xml
    OFM_HOME\Oracle_BI1\bifoundation\web\msgdb\views\dvtchart\obips.dvtchart.xml
    OFM_HOME\Oracle_BI1\bifoundation\web\display\chartfontmapping.xml
    Pls mark correct or helpful if helps

  • How can I include a JSP, Maximized, and retain look and feel(WSRP)

    I have created a page group and defined a root page with a certain look and feel. There are two portlets on the page. Once the user clicks on a submit button, the portlet performs some action and includes a jsp included in the EAR file. The portlet needs to maximize the UI to display the jsp correctly.
    Once control returns back to the screen, the look and feel is lost and uses Oracle's default style. I have two questions:
    1. From the portlet, how can I retain the look and feel of the page group when referencing "external" jsp (i.e JSPs in the deployed portal EAR file).
    2. How can I "redirect" the user to the home page in a standard way? If there is not a standard way, how do I use the Oracle specific utilities to do it?
    All of my JSPs are developed externally out of the scope of the Oracle Portal.
    Environment - Oracle Portal 10.1.4 on Release 2 using WSRP to contact Oracle Release 3, hosted EAR file (WSRP Producer).
    Thanks in advance.

    Hi José,
    I don't think that is possible. But you can import the css files that ep uses for its look and feel and try to give your web pages similar look and feel. The tables and other controls used in EP are totally different and are done through complex JavaScript coding instead of simple HTML tags. If you want exact lok and feel then i thin you must go for a Webdynpro based application rather then a J2EE application with JSPs.
    Regards,
    Guru.
    PS: Give points for helpful replies.

Maybe you are looking for

  • Creating a new DAQmx task after building to EXE

    Should I be able to create a new DAQmx Task while running a VI containing the DAQmx Task control that was built as an EXE? I can't but would like to know if there is a work around or if I am doing something wrong. See the attached screen shots. When

  • Sales Analysis report

    Dear All, Would like to enquiry what should i set in the Authorization in order to show the column Quantity and Sales in the Sales Analysis Report? Now i can only show 0 in the Quantity column and Sales column. Thank you very much and looking forward

  • Links to email don't work

    I've created an email link on each of my site's pages. They're all identical (hypertext inside of a rectangle). They all highlight and act like functioning links in iWeb, but when published, only the link on the splash page functions. The others are

  • Create columns at runtime

    Is it possible to create columns in RTF template dynamically depending on what fields there are in dataset? for example incoming data can be name, address, country and in other cases name, address, country, postalcode, age, height ... if I could some

  • Is mozilla compatible with kindle fire device?

    Mozilla is my favorite. Can I install it on my Kindle fire?