Can I change the scroll direction of the trackpad without changing the scroll direction of the mouse scroll wheel?

I don't know if anyone else came across this problem, but I noticed that changing the scroll direction on the trackpad also changes the scroll direction on the mouse. I enjoy the natural movement on the trackpad, but the normal 'windows-style' movement on the mouse. Any solution?

I too have same issue. By default trackpad has natural scroll direction. However for mouse natural scroll direction causes problem, if you used to use wheel on the mouse on Windows and Linux platform. If I change the mouse's wheel direction to non-natural direction. It fixes the issue. However it changes the trackpad's direction also to be non-natural, which is not good.
Both the settings can be independent of each other. (i.e. mouse's scroll direction and trackpad's scroll direction).

Similar Messages

  • FaceTime: I have a iPad, iPhone, iMac all on the same apple Id/account. Without changing id/email address can I use FaceTime between any 2 of my devices? It works from iPad to iPhone but not the other way??? I would like talk/see my kids if am away

    FaceTime: I have a iPad, iPhone, iMac all on the same apple Id/account. Without changing id/email address can I use FaceTime between any 2 of my devices? It works from iPad to iPhone but not the other way??? I would like talk/see my kids if am away.
    Hope you can help.
    I have added a new email address but kept my Id, but I get busy when trying from iPhone to iPad as they are clashing. Like find my iPhone app hence trying to keep them all on one account

    IOS: using facetime http://support.apple.com/kb/ht4319
    using an ipad will use the email address since you can't make a phone call.  see the link.
    Your basically calling/emailing yourself that's why your getting a busy signal.

  • HT201210 how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    You can't. Restoring from a backup is all or none.
    You can use a utility such as this one to extract the messages from the backup on your computer but you can't re-transfer the messages to the Messages app on your iPhone.
    http://msb.macsupport-pr.com/

  • How to change the angle of a gradient layer without changing anything else?

    How to change the angle of a gradient layer without changing anything else?
    When I try it myself my whole gradient turns black.

    To add to the above, you can not just set the angle. If you want to use other existing settings you need to get them from the layer. The code in that other thread shows one way to get them.
    But if you do not need the existing values for any other reason you can get the descriptor for the layer, make a duplicate of it with all the settings and just overwrite the ones you want to change.
    This is one way to just change the angle while keeping the other existing settings.
    // helper function for working with descriptors
    function getProperty( psClass, psKey, index ){// integer:Class, integer:key
        var ref = new ActionReference();
        if( psKey != undefined ) ref.putProperty( charIDToTypeID( "Prpr" ), psKey );
        if(index != undefined ){
            ref.putIndex( psClass, index );
        }else{
            ref.putEnumerated( psClass , charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
        try{
            var desc = executeActionGet(ref);
        }catch(e){ return; }// return on error
        if(desc.count == 0) return;// return undefined if property doesn't exists
        var dataType = desc.getType(psKey);
        switch(dataType){// not all types supported - returns undefined if not supported
            case DescValueType.INTEGERTYPE:
                return desc.getInteger(psKey);
                break;
            case DescValueType.ALIASTYPE:
                return desc.getPath(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.UNITDOUBLE:
                return desc.getUnitDoubleValue(psKey);
                break;
            case DescValueType.STRINGTYPE:
                return desc.getString(psKey);
                break;
            case  DescValueType.OBJECTTYPE:
                return desc.getObjectValue(psKey);
                break;
            case  DescValueType.LISTTYPE:
                return desc.getList(psKey);
                break;
            case  DescValueType.ENUMERATEDTYPE:
                return desc.getEnumerationValue(psKey);
                break;
    function duplicateDescriptor( descriptor ) {
        var newDescriptor = new ActionDescriptor;
        newDescriptor.fromStream( descriptor.toStream() );
        return newDescriptor;
    function localizeDescriptor( desc ) {
        var stream, pointer, zStringLength, zstring, localized_string, newZStringLength, previousStream, followingStream, newDesc;
        stream = desc.toStream();
        while( true ) {
            pointer = stream.search(/TEXT....\x00\$\x00\$\x00\$/);
            if( pointer === -1 ) {
                break;
            zStringLength = getLongFromStream( stream, pointer + 4 );
            zstring = readUnicode( stream.substr( pointer + 8, ( zStringLength - 1 ) * 2) );
            localized_string = ( localize( zstring ) ) + '\u0000';
            newZStringLength = localized_string.length;
            previousStream = stream.slice( 0, pointer);
            followingStream = stream.slice( pointer + 8 + zStringLength * 2);
            stream = previousStream.concat( 'TEXT', longToString( newZStringLength ), bytesToUnicode( localized_string ), followingStream );
        newDesc = new ActionDescriptor();
        newDesc.fromStream( stream );
        return newDesc;
    function getShortFromStream( stream, pointer ) {
        var hi, low;
        hi = stream.charCodeAt( pointer ) << 8 ;
        low = stream.charCodeAt( pointer + 1 );
        return hi + low;
    function getLongFromStream( stream, pointer ) {
        var hi, low;
        hi = getShortFromStream( stream, pointer) << 16;
        low = getShortFromStream( stream, pointer + 2);
        return hi + low;
    function readUnicode( unicode ) {
        var string = "";
        for( i = pointer = 0; pointer < unicode.length; i = pointer += 2) {
            string +=String.fromCharCode( getShortFromStream( unicode, pointer ) );
        return string;
    function longToString( longInteger ) {
        var string;
        string = String.fromCharCode( longInteger >>> 24 );
        string += String.fromCharCode( longInteger << 8 >>> 24 );
        string += String.fromCharCode( longInteger << 16 >>> 24 );
        string += String.fromCharCode( longInteger << 24 >>> 24 );
        return string;
    function bytesToUnicode( bytes ) {
        var unicode = "", char_code, charIndex;
        for( charIndex  = 0; charIndex < bytes.length; charIndex ++ ) {
            char_code = bytes.charCodeAt( charIndex );
            unicode += String.fromCharCode(char_code >> 8 ) +  String.fromCharCode( char_code & 0xff );
        return unicode;
    function setGradientAdjustmentAngle( angle ) {
        var adjustmentDesc = getProperty( charIDToTypeID("Lyr "), charIDToTypeID( 'Adjs' ) ).getObjectValue(0);
        var newAdjustmentDesc = duplicateDescriptor( adjustmentDesc );
        newAdjustmentDesc.putUnitDouble( charIDToTypeID('Angl'), charIDToTypeID('#Ang'), angle );
        var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( stringIDToTypeID('contentLayer'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
        desc.putObject( charIDToTypeID('T   '), stringIDToTypeID('gradientLayer'), newAdjustmentDesc);
        executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    var newAngle = 45;
    setGradientAdjustmentAngle( newAngle );

  • HT201209 How can I create an apple ID for my daughter, without adding a credit card to the account?

    How can I create an apple ID for my daughter, without adding a credit card to the account? I have tried to purchase a gift card online, but it just credits it to my account; I cannot use it to credit her new account therefore I cannot create that account.

    There are intructions on this page for how to create a new account without giving credit card details : http://support.apple.com/kb/HT2534
    e.g. log out of your account, find a free a free app in the store, click on its free 'price' :
    click on 'create Apple id' on the popup :
    Agree to the terms and fill in the details, and you should get 'none' on the payments screen.

  • Can I type Japanese language emails on my iPad without changing it to a total Japanese language set up?

    Can I type Japanese language emails on my iPad without changing it to a total Japanese language set up?

    Andrew Offen wrote:
    Can I type Japanese language emails on my iPad without changing it to a total Japanese language set up?
    This all I could find . . .
    https://discussions.apple.com/thread/3648438?start=0&tstart=0

  • Can I change the html name for a page without changing the Menu?

    As I have links on resumes, and portfolios throughout the web, I'd like the  "about me page" to be called info.html. But "info" is a really stupid, general name for a Menu item. So, can I change the name of the pages HTML file to "info.html" without changing it on the menu?

    Hello Tony,
    When you right-click on the page you see within a menu the page properties. Click on that and under 'options' you can change the html pagename.
    Tjaard

  • How can I add a new vaiable to the file loaded by Property Loader without changing my script

    I have an input file to my script that I load via Property Loader. The number of parameters in the input file may change from test to test.. Is it possible in some way to add a new parameter without changing the sequence file?
    Is there for example a way to make the Property loader read parameters until end of file, and put the parameter into a temporary variable in my script?
    Hope there is a way to resolve this.
    Cheers
    Claus Christophersen

    Claus,
    The solution you have is a valid one.
    Basically you have a variable (global or local) and you import the expected parameter to this variable before you pass it to the hardware.
    You use that variable as the input parameter you pass to your hardware of course.
    You have to modify your source file depending on the test type you want to execute every time you want to change the test type though.
    Another solution would be to use Data Markers in your file to separate the variable values corresponding to each test type.
    Check the example I am attaching.
    At the beginning I prompt the user for the Test Type (Type I or Type II).
    Based on the type, I import the corresponding variables from the source file using Data Markers.
    If you have questions let me know.
    Attachments:
    SourceFile.zip ‏8 KB

  • How do you change the language hyphenation engine in Photoshop without changing the User Interface (UI)?

    I'm working on some documents in Spanish. I'm having issues because the hyphenation function is in English. I want the program to follow the proper Spanish hyphenation rules without changing my English UI.

    Window/Character and choose Spanish.

  • Can I revert my calendar to begin on Monday without changing regions?

    Calendar problems! I hate the fact that iOS 6 now makes my calendar begin on Sunday. I don't want to change my region. Is there any way I can revert my calendar back to begin on Monday?

    Hi Frank,
    I completely agree with you and, from a brief look at the discussion boards, it seems as though changing to a Monday-Sunday calendar view in Week and Month views is not possible in iOS without changing region setting in International to Barbados or something similar without changing languages.  It used to be possible to switch to the UK or Australia for this, but that has changed with iOS6.  However, the problem with changing regions to non-US or -UK is that it turns off turn-by-turn directions in Maps. Apple needs to add a setting directly to Calendar in iOS. Note that changing the setting in iCloud doesn't translate to a change on one's iPhone or iPad.  Infuriating!
    I'm going to submit a feedback ticket.  I hope you will do the same.  http://www.apple.com/feedback/iphone.html and/or http://www.apple.com/feedback/ipad.html.
    Cheers.

  • Can I backup and restore on a new computer without changing my main iTunes computer?

    I just got AT&T to unlock my iPhone so that I can use it on multiple networks while I am traveling.  In order to complete the unlock, I must backup and restore the iPhone on my iTunes.  Unfortunately, my iMac that I use to sync my iPhone is being shipped across the planet and I won't have it for about a month.  Is it possible to install iTunes on a new computer and conduct a backup and restore, without losing anything on the iPhone and still be able to sync with my iMac when I receive it?

    Thanks for the clear and concise response  ;-)
    Anything in particular I need to be aware of?  i.e. after I install iTunes on the new PC and connect my iPhone, do I need to do anything specific to ensure that the phone is not overwritten?  Is it that simple that I can just connect the phone and it will back it up, then I do a restore and done?  (Sorry but based on all the discussion threads I've read around this, I am skeptical that it is that simple.)

  • I have a six months old iPhone 5s, it discharges the battery in 1/2 day without extensive use, 5 trips to the Genius Bar to no avail... Frustrated.. Ready to get rid of the phone, very disappointed in apple support!!

    I have a six months old iPhone 5s that I use and have to use for work purposes, I have for a approximate battery life of seven or eight hours.
    I went to the Genius Bar on five occasions and did not receive substantial help. I was told that I would have some applications crashing in the background but was unable to be told which ones they were. The phone is still on the warranty, but it's Apple tells me that it is not the hardware but my usage. I compared it to some of my colleagues and none of them has a battery problem like I do. I feel like I am left with a product that is not stand up to its specifications, and as a customer being totally left alone with a smart phone that does not even last through a workday. Any suggestions how to get through to Apple with this?? I was always very impressed with Apple's customer service and care up until now, obviously. Now Im ready to jump ship...

    Thought it had worked but soon found out it had not.
    after further days of trying finally, solved it for me Yesterday.
    turned off notifications when locked, and bingo, wow.
    i have not turned off iCloud but location services are also off.
    best thing to do I found was keep checking your usage, settings, general, usage, and flip down to bottom, if the standby and usage are similar there is a problem, if there is a big difference then all is ok. Just keep turning things off and on until the difference is very apparent.
    something on my phone was keeping the phone alive even when turned off, and I think this was the phone repeatedly trying to update continually.
    to me this is definitely down to the iOS, my wife has exactly same phone and iOS but hers doesn't have any problem and the battery lasts for days.
    the guy at the Genius Bar told me to restore the phone via iTunes, not iCloud. This is because iCloud remembers the exact info from your phone and simply reinstates it when you restore, and this includes the iOS too.
    when I get home from holidays that's what I'll do, or wait for iOS 8 in few weeks. But I'm so pleased I finally made it work, I was beginning to think ditch the phone and buy Samsung.
    anyway anyone out there please try my final solution and let me know if it works for you?

  • How can I control the display of rows in datagrid without changing the dataprovider?

    Hello,
    I'm using advancedatagrid to render my table but I'm facing a problem to skip few rows which are unwanted or to hide. I should retain my original dataprovider without any modifications to achive this behaviour as I'm using it at many places.
    Can you guys please send me a tip or the example code? I really appreciate for it.
    Thanks,
    Siva.

    Hello Gaurav,
    Thank You..!!! I tried appling filterFunction on the ADG and got whatever I expected but filter changes the original dataprovider behaviour. SO which I dont want to do it.
    I have created a local variable and binded whatever data wanted to display on that page. Infact it works as expexted and I still have original data provider as well.
    I have one more problem, I'm using creationComplete to initialize my local data provider value. It works only once while creation of state. If I navigate my screens fore and back and come back to this screen, it doesn't display the modified values as creationComplete loads only while state creation.
    Is there any mothid which does the samething while vising the page every time than creation?
    Thanks,
    Siva

  • How can I get rid of the icons in my bookmarks toolbar without changing the icons to text in my navigation toolbar? I want text only in the bookmarks and icons only in navigation.

    It seems that making changes in the toolbar preferences always affects all toolbars at once. Isn't there a way to just delete the icons so they aren't crowding up the bookmark toolbar? They serve no purpose. Most are just blank page icons.

    Look at:
    *Bookmarks Deiconizer: https://addons.mozilla.org/firefox/addon/bookmarks-deiconizer/

  • I have apple 3gs-16GB. recently i got a message for os updatement to ver 6. I updated and i have the problem of wrong map- map without proper road/buildings identified. sometimes the present location is also shown wrongly. not able to get directions etc.

    I have iphone 3gs with BSNL connection. Recently a message came as update OS and it was done to OS 6 with revised maps etc. But now the map is not a correct one without proper road names and refernces. Could not get directions also. the earlier one was a clear one with enough details. What could be the problem. Can somebody help. It was working fine earlier- before OS updatement.

    Google maps is no longer included in ios 6.
    This has been very well publicized in the news and elsewhere.
    Google it.

Maybe you are looking for