Right hand and left hand click without mouse

Hi, i'm novice in using mac. I'm not to sure how to use right hand or left hand click without using mouse. For instance, how do i click download when i gonna download mp3 files? Pls help

Did you mean how to do a normal click and a right-click?
For normal click, you can either use the big button below the trackpad or you can tab the trackpad (Note that tabbing is disabled by default, you can enable it from System Preferences>Mouse&Keyboard).
To right click, tab trackpad with 2 fingers.
Hope this helps

Similar Messages

  • Problems with compressing  files with right hand click. it does not work.

    Problems with compressing files with right hand click.
    I am using the compress function in the Mac OS (File > Compress XX) from time to time. Today it does not work anymore. OS 10.5.6
    I get a message: The content list cannot be created for compressing.
    I tried it with files and folders and keep getting this message. Anybody any idea as to how to fix this

    Thanks I love my macbook!!!!
    I also got further problems such as copy-paste not working etc.
    so I fixed it just this morning by running Applejack 1.5 and am back up running noticing your post.
    thanks for helping though!

  • Right hand click issues with windows 8.1 after updates

    I can no longer right hand click delete or open with right hand click, system stops working or seems to reboot

    Try to boot into Safe Mode and uninstall the suspected updates. Reboot and recheck the issue.
    You may also go for a System Restore-select any Restore Point when there was no such issue.
    I also shall suggest you to download the
    ShellExView  It is an excellent tool to view and manage all installed shell extensions. The rule is to disable non-Microsoft context menu handlers one-by-one and verify if the problem is solved.
    If the above doesn't help then  run the System File Checker tool (SFC.exe) to scan your system files and to repair missing or corrupted system files.
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • Using Right-justified and left zero-filled condition in message mapping of

    Hi,
    My Interface is outbound Interface.
    Suppose source field named 'MobNumber' is mapped with Target field named 'MobileNumber'.Condition is AS IS(Right-justified and left zero-filled).
    How should i do this mapping?
    Thanks,
    Sanghamitra

    Hi Sanghamitra,
         Similar question ahs been answered earlier in this thread
    Re: Message Mapping using Left justified, right blank/space filled
    just replace the filler variable by zero in my post
    One small request, if you think your questions are being answered correctly and properly, please kindly, if possible, close down the threads. This way forum members/users  who later look up for solutions to similar problem, they know for sure that the problem was finally solved, with the solutions provided in the thread.   
    regards
    Anupam
    Edited by: anupamsap on Aug 3, 2011 11:27 AM

  • Drag and Drop feature in start menu between right side and left side

    Hello , I think it is a good idea to allow the user to drag items and apps from the left side of start menu and drop them in the right side, and vice versa. Such feature make life easier than clicking right button and choose unpin or pin to start.

    If you want your idea/opinion heard, please use the Feedback app.
    Posting at the forums won't get their attention, I don't think.

  • Missing right paren and left brace

    Hello !
    I can't rid of  :
    1084: Erreur de syntaxe : rightparen est attendu devant semicolon.
    1084: Syntax error : expecting rightparen before if
    1084: Syntax error : expecting rightbrace before leftbrace
    The code :
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var tween:Tween = new Tween(texte, "y", Strong.easeOut, 0, 0, 30);
    var tween:Tween = new Tween(texte2, "y", Strong.easeOut 0, 0, 60);
    tween.stop()
    var urlLoader:URLLoader = new URLLoader()
    urlLoader.addEventListener(Event.COMPLETE, completeXMLHandler)
    function completeXMLHandler(evt:Event)
    var xml:XML = new XML(evt.target.data)
    texte.texte.htmlText = xml.descendants("texte")[0].text()
    texte2.texte2.htmlText = xml.descendants(("texte2")[0].text()
    if(texte.height>masque.height){
    if(texte2.height>masque2.height){
    stage.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler)
    urlLoader.load(new URLRequest("xml.xml"))
    texte.texte.autoSize = TextFieldAutoSize.LEFT
    texte2.texte2.autoSize = TextFieldAutoSize.LEFT
    texte.y = masque.y
    texte2.y = masque2.y
    texte.mask = masque
    texte2.mask = masque2
    function mouseMoveHandler(evt:MouseEvent)
    /*on recupere la position de la souris par rapport au masque*/
    var p:Number = (mouseY-masque.y)/masque.height
    var p:Number = (mouseY-masque2.y)/masque2.height
    if(p<0)p=0
    if(p>1)p=1
    tween.continueTo(masque.y-p*(texte.height - masque.height),30)
    tween.continueTo(masque2.y-p*(texte2.height - masque2.height),30
    Part of the code must be bad... but I'm not able to fix it !
    I have two texts... A mouse scroll animation is added based on the mouse position... So, I can scroll through all text...
    Message was edited by: danae830

    in order for you code to work it should look like this:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var tween:Tween = new Tween(texte, "y", Strong.easeOut, 0, 0, 30);
    var tween1:Tween = new Tween(texte2, "y", Strong.easeOut, 0, 0, 60);
    tween.stop()
    var urlLoader:URLLoader = new URLLoader()
    urlLoader.addEventListener(Event.COMPLETE, completeXMLHandler)
    function completeXMLHandler(evt:Event)
        var xml:XML = new XML(evt.target.data)
        texte.texte.htmlText = xml.descendants("texte")[0].text()
        texte2.texte2.htmlText = xml.descendants("texte2")[0].text()
        if(texte.height>masque.height)
            if(texte2.height>masque2.height)
                stage.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler)
    urlLoader.load(new URLRequest("xml.xml"))
    texte.texte.autoSize = TextFieldAutoSize.LEFT
    texte2.texte2.autoSize = TextFieldAutoSize.LEFT
    texte.y = masque.y
    texte2.y = masque2.y
    texte.mask = masque
    texte2.mask = masque2
    function mouseMoveHandler(evt:MouseEvent)
        /*on recupere la position de la souris par rapport au masque*/
        var p:Number = (mouseY-masque.y)/masque.height
        var p:Number = (mouseY-masque2.y)/masque2.height
        if(p<0)p=0
        if(p>1)p=1
        tween.continueTo(masque.y-p*(texte.height - masque.height),30)
        tween1.continueTo(masque2.y-p*(texte2.height - masque2.height),30)
    first - why did you give to both of your tween objects the same name?
    in the line -
    texte2.texte2.htmlText = xml.descendants("texte2")[0].text()
    there was a redundant '('.
    and in the line -
    tween1.continueTo(masque2.y-p*(texte2.height - masque2.height),30)
    there was a missing ')' (i've also renamed the tween object to 'tween1')
    that should do it i think

  • Capturing double click of right and left mouse buttons

    Hi everybody,
    I am writing a application which makes use of mouse. My difficulty is like how to capture the right and left double click of mouse?
    Please guide its urgent.Any reply will really appreciate
    Thank you
    dgk

    hi
    hope the piece of code helps u out
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.tree.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.io.*;
    public class MouseClicks extends JFrame implements MouseListener
    static public void main(String[] args)
              MouseClicks targetFrame = new MouseClicks("Drop");
    targetFrame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0);}
    targetFrame.setSize (800, 500);
    targetFrame.setVisible(true);
    public MouseClicks(String str) {
              super(str);
              addMouseListener(this);
    public void mouseClicked(MouseEvent e)
              if(SwingUtilities.isLeftMouseButton(e))
                   if(e.getClickCount() == 2)
                   System.out.println("LeftDoubleClicked");
                   else
                   System.out.println("LeftSingleClicked");
              else if(SwingUtilities.isRightMouseButton(e))
                   if(e.getClickCount() == 2)
                   System.out.println("RightDoubleclicked");
                   else
                   System.out.println("RightSingleClick");
    public void mousePressed(MouseEvent e)
    public void mouseReleased(MouseEvent e)
    public void mouseEntered(MouseEvent e)
    public void mouseExited(MouseEvent e)
    cheers

  • How to move the Firefox 'close window' x icon to the right-hand corner?

    I've just been given the option to upgrade my Ubuntu Linux (from Karmic Koala to Lucid Lynx). Although the updated colour scheme and Fire fox look great, one annoyance is that the 'close window' X-icon has moved from the right-hand corner to the left-hand corner.
    As a right-handed person, my mouse pointer drifts over to the right-hand side of windows, so moving this icon from the right corner to the left corner doesn't make sense to me, as a right-handed person (~90% of the world are right-handed?).
    I know that there's almost definitely a keyboard shortcut for 'close window' but I would like to see the 'Close window' 'x' back in the right-hand corner, or an option/preference to put it back where it always used to be! (as far as I know...).
    == This happened ==
    Every time Firefox opened
    == When I upgraded Firefox to 3.6.3 as part of Ubuntu upgrade from KK to LL release. Think I might have been running an older 3.6.x version of Firefox prior to this.

    This problem is not particular to Firefox but rather a design scheme that is applied to all programs running Lucid Lynx.
    Solution 1.
    Go to System > Preferences > Appearance. Choose a Theme that has the right orientation rather than the left.
    Solution 2.
    Open up a Terminal and run this snippet to move everything to the right again:
    gconftool-2 --set /apps/metacity/general/button_layout --type string menu:minimize,maximize,close

  • Right() and Left() method

    Hello,
    Is there an Right(x) and left(x) alternative for the VB Right and Left.
    The meaning is to return the x Right or x Left characters from a String.
    kind regards

    805380 wrote:
    This one i know.
    There seems to be no other alternative.No, there is. Write it yourself. Here's a "left" for you:
    public static final String left(String s, int n) {
       return s.subString(0, n);
    }I'll leave the arguments as to why it wasn't put in String up to others, but "why bother" sounds like a good start to me
    And I'll leave "right" up to you.
    Winston

  • I have elements on both my iMac and mac book. On my mac book i can't hold down left click on the pad and on the right hand side move tools i.e. clone, erase tools etc

    i have elements on both my iMac and mac book. On my mac book i can't hold down left click on the pad and on the right hand side move tools i.e. clone, erase tools etc

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • How can I cut and past on imac without a left and right click on mouse?

    Trouble cut and pasting on an imac since mouse has no right and left clicks...how can I highlight something and cut and paste somewhere else?

    Holding the Mouse button down and dragging across text should highlight it, and Command-C Command-V should allow you to copy/paste.

  • Thinkpad L440 - Left-Handed Bluetooth Mouse but Right-Handed Touchpad

    I have my bluetooth mouse connected but I want to use it as a left-handed mouse.  I can't seem to figure out how to do this without changing the configuration of the touchpad.  I want to keep the touchpad right-handed.  Is there any way to do this?  Thanks!

    Hi Brittneym,
    Welcome to Lenovo Community!
    As per the query we understood that you are looking for Touchpad setting on your ThinkPad L440.
    Please go to Control panel – Mouse setting and in Buttons menu tick the check box “Switch primary and secondary buttons” this will change the complete setting for left hander users, and after applying those setting go to UltraNav menu and click on “Touch Pad Setting” you will new window touchpad properties in that expand Buttons option on “Left Button Action” set it to Primary Click and on “Right Button Action” set it to Secondary Click apply the settings and click on OK.
    You can give a try on the above setting; it worked with USB external mouse but I am not sure with Bluetooth mouse. Check the screen shot from the below link
    Dual Touchpad setting
    Hope this helps!
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Double click on the left arrow on the tab bar creates a New Tab at the right hand end.

    With Firefox 29.0.1 double clicking on either the left or right hand arrows in the tab bar creates a new tab at the right hand end of the tab bar. This is annoying behaviour that violates standards around UI design single click and double click. A double click should extend the behaviour of the single click rather than doing something completely different (opening a new tab). An example would be , in Word a single click selects a word, a double click selects the sentence and a triple click selects the paragraph. Note that this is a separate issue from double clicking on the tab bar itself to create a new tab.
    When there are more tabs on the tab bar than will fit in the viewport the tabs scroll sideways so show the tab in use. I can click the left and right arrows at the ends of the tab bar to scroll the bar in that direction to bring a tab that I want to select into view. I believe that double clicking the left arrow would scroll the bar fully right, exposing the left-most tab. Double clicking the right arrow would scroll the bar fully left exposing the right-most tab.
    This is a logical and expected extension of the behaviour of the single click. Single click - scroll once (seems to be about three tab's worth), double click - scroll all the way.
    At the moment, if I want to scroll to the left-most tab I have to click the arrow slowly and carefully until I reach it. I used to single click rapidly on the left arrow until the tabs stopped scrolling without having to count how many clicks. It's possible that my rapid single clicks were actually double clicks. Nevertheless, the tab bar would stop scrolling when it reached the end.
    Now the behaviour is really annoying and unexpected. A double click on the left arrow scrolls the tabs fully right and then fully left and creates a New Tab at the right hand end. Ditto the right hand arrow in the opposite direction.
    While I can (maybe) see that value of a double click on the tab bar itself creating a new tab, double clicking one of the scroll arrows should not produce a new tab.
    Double clicks on the tab arrows should scroll the tab bar fully to that end. If the tab bar is already fully scrolled to that end then additional clicks (single, double and triple...) should be ignored.
    I like the idea of opening a new tab to the right of the one that currently has focus. This should be a right click context menu option.

    That shouldn't happen if you click the scroll buttons on the tab bar.
    A double-click should act as page up/down and move a full screen and a triple-click should move to the far left (first tab) or the far right (last) tab.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When I open an email, my computer won't go to the link listed, or when I am doing research the same thing, then I see a ALLOW in the upper right hand corner of the screen and I have to click on that. What happened and how do I fix this?

    Somehow my settings have changed. When I open an email and there is a link, my computer won't allow it, also when I am doing a search, my computer won't allow certain links to open.
    What I see is "ALLOW" in the upper right hand corner of the screen, and I have to click on that in order to continue my email or do a search. How did this suddenly happen and how do I change it back to being able to roam the Internet without having to click on ALLOW all the time?
    Also, I set up Google as my home page, but it won't list Email or any other options. I have to type in Google in the Google box, then Email appears. How do I get the right Google set up as my home page so I can access Email without jumping through hoops.
    Thanking you so much for your time and consideration.
    Sincerely,
    [email protected]

    Sign out of the iTunes Store. Sign in again.
    tt2

  • TS3274 Email display problem: My email only display the list of emails and a preview (first two lines of the body of the mail). If one click on the message it only shows the heading on the right hand side of the screen, but not the content.

    My email only display the list of mails in my in box with a preview of the first two lines of the body of the message. When one clicks on the message to open it, only the header is displayed in the right hand side of the screen - the actual message is missing. This happens on older mail previously downloaded that use to work properly as well. Any idea how to fix this?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for

  • Open purchase order in MD04

    Hi Experts I have ordered 20 qtys GR & IR  for 05 Qtys If we run the Tcode MDO4 for material that particular material , the PO is not showing in the MD04 ( i.e for the remaining PO - 15 qtys) Its urgent Thanks Tanvi

  • Indesign CS6 transparency problem

    Hi all, Problem: A placed TIFF with a transparent background overlaps an indesign partially transparent graphic shape and where the two transparencies overlap text appears heavier, opacity is darker and sometimes there is an outline at the edge of th

  • Getting list of roles?

    Is there any way for code running behind a servlet (eg, with access to HttpServletRequest) to get a list of defined roles for the app, other than figuring out where web.xml resides, reading the file in and parsing the xml? It would be nice if it were

  • About file audio/video file type and name of jpeg ...

    Can anybody please tell Following few things   1- If I record a telephone call (conversation) in Nokia N70, what is the file format i.e. wav, mp3, rm  or what and what is the initial name of the file e.g. nokia70-001.wav, nokia70-002.wav etc or what?

  • Macbook pro freezes with iPod connected with lid closed

    I've noticed that whenever I have my iPod connected to my MBP, and I close the lid, often times the MBP won't go to sleep, the latch light stays a constant bright. When I try opening the lid, fans and the hard drive are spinning, and nothing is respo