Reverse X axis of touchscreen on Windows 8?

20

You might want to try calibrating the input device (instructions based on information here since I do not have a device with a touchscreen):

  1. Search for "calibrate" and click the "Settings" filter on the right.

  2. Click the option to calibrate the screen for touch input.

Share:
20

Related videos on Youtube

manoj shirgire
Author by

manoj shirgire

Updated on September 18, 2022

Comments

  • manoj shirgire
    manoj shirgire over 1 year
    collection : { 
        "_id" : ObjectId("5ab7757d3295a10bac3ad927"), 
        "resource_id" : "msh", 
        "resource_name" : "m", 
        "projects" : [
            {
                "project_id" : "ABC", 
                "project_name" : "test1", 
                "allocation" : [
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-01-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.2, 
                        "month" : ISODate("2018-02-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.9, 
                        "month" : ISODate("2018-03-01T00:00:00.000+0000")
                    }
                ]
            }, 
            {
                "project_id" : "XYZ", 
                "project_name" : "test2", 
                "allocation" : [
                    {
                        "month_fte" : 0.1, 
                        "month" : ISODate("2018-01-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.5, 
                        "month" : ISODate("2018-02-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-03-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-04-01T00:00:00.000+0000")
                    }
                ]
            }
        ] } { 
        "_id" : ObjectId("5ab7757d3295a10bac3ad928"), 
        "resource_id" : "rp", 
        "resource_name" : "r", 
        "projects" : [
            {
                "project_id" : "8P0CHF", 
                "project_name" : "test1", 
                "allocation" : [
                    {
                        "month_fte" : 1.0, 
                        "month" : ISODate("2018-01-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.5, 
                        "month" : ISODate("2018-02-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.3, 
                        "month" : ISODate("2018-03-01T00:00:00.000+0000")
                    }
                ]
            }, 
            {
                "project_id" : "8P0ABC", 
                "project_name" : "test3", 
                "allocation" : [
                    {
                        "month_fte" : 0.1, 
                        "month" : ISODate("2018-04-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.5, 
                        "month" : ISODate("2018-05-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-06-01T00:00:00.000+0000")
                    }
                ]
            }
        ] }
    

    query :

    db.resource.find({
    
        $and: [
            { 'projects.allocation.month' : { $gt: ISODate("2018-01-01T00:00:00.000+0000") } }, 
            { 'projects.allocation.month': { $lt: ISODate("2018-03-01T00:00:00.000+0000") } }
        ]
        })
    

    Output:

    { 
        "_id" : ObjectId("5ab7757d3295a10bac3ad927"), 
        "resource_id" : "mshirgir", 
        "resource_name" : "manoj shirgire", 
        "projects" : [
            {
                "project_id" : "8P0CHF", 
                "project_name" : "test1", 
                "allocation" : [
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-01-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.2, 
                        "month" : ISODate("2018-02-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.9, 
                        "month" : ISODate("2018-03-01T00:00:00.000+0000")
                    }
                ]
            }, 
            {
                "project_id" : "8P0XYZ", 
                "project_name" : "test2", 
                "allocation" : [
                    {
                        "month_fte" : 0.1, 
                        "month" : ISODate("2018-01-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.5, 
                        "month" : ISODate("2018-02-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-03-01T00:00:00.000+0000")
                    }, 
                    {
                        "month_fte" : 0.4, 
                        "month" : ISODate("2018-04-01T00:00:00.000+0000")
                    }
                ]
            }
        ] }
    

    but getting all allocation, How to get allocation of date condition

    • Clement Amarnath
      Clement Amarnath about 6 years
      What is your expected output?
  • Chandler Cree
    Chandler Cree over 11 years
    I am having trouble. I opened the calibration tool but on touching the area with the crosshair it shows my finger is on the right side of the screen. What does that mean?
  • Nathan Osman
    Nathan Osman over 11 years
    Hmm... I was hoping the calibration tool would see that and figure out that the x-axis is reversed.
  • Chandler Cree
    Chandler Cree over 11 years
    Would you say it would be best to use the Windows XP drivers and live with the mouse input based touch? Or do you think a fix exists for this?
  • Nathan Osman
    Nathan Osman over 11 years
    @nvdkgm: Personally I would suggest living with mouse-based input, but someone else here might know of a solution.
  • Chandler Cree
    Chandler Cree over 11 years
    Unfortunately, this did not work for the touch portion. However it is a handy tool that I have saved. I think that executable was only for a mouse.