gpt4 book ai didi

vbscript - 检测触摸板的坐标

转载 作者:行者123 更新时间:2023-12-02 04:40:47 25 4
gpt4 key购买 nike

我想开发类似Synaptics触摸板手势应用程序的东西。突触设置显示x和y坐标。我可以使用任何软件吗?像这样的代码:

$x_start = 300
$y_start = 300
While 1
If $ontouch == True Then
MouseMove($x_start + $x_touch, $y_start + $y_touch)
EndIf
Wend

您可以建议任何语言,但最好使用AutoIt或VBScript。一些图像,以澄清:

Tap input

Tap output

最佳答案

突触设置显示x和y坐标。我可以使用任何软件吗?

  • Windows Touch API可能。
  • 可以使用 MouseGetPos() 获得屏幕坐标。示例(在Q-press上退出):

  • Global Const $g_iDelay     = 10
    Global Const $g_sKeyExit = 'q'
    Global Const $g_sTooltip = 'X = %i\nY = %i'

    Global $g_bStateExit = False

    Main()

    Func Main()
    Local $sTooltip = ''
    Local $aCoordinates

    HotKeySet($g_sKeyExit, 'SetStateExit')

    While Not $g_bStateExit

    $aCoordinates = MouseGetPos()
    $sTooltip = StringFormat($g_sTooltip, $aCoordinates[0], $aCoordinates[1])

    ToolTip($sTooltip)
    Sleep($g_iDelay)

    WEnd

    Exit
    EndFunc

    Func SetStateExit()

    $g_bStateExit = True

    EndFunc

    关于vbscript - 检测触摸板的坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37827928/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com