直接は機能しません。VMwareは汎用マウスで6つの状態のみをエミュレートするためです。(マウスの左、右、中ボタン、スクロールホイールを上下、押す)
しかし、回避策として、AutoItで作成したばかりのツールを使用できます。この機能も本当に必要だったからです。
#include <Misc.au3>
$dll = DllOpen("user32.dll")
Opt("WinTitleMatchMode", 2)
Opt("TrayIconHide", 1)
$vm = WinWait("VMware Workstation")
While True
If WinActive($vm) Then
If _IsPressed("06", $dll) Then
Send("{AltDown}{Right}")
While _IsPressed("06", $dll)
Sleep(1)
WEnd
Send("{AltUp}")
ElseIf _IsPressed("05", $dll) Then
Send("{AltDown}{Left}")
While _IsPressed("05", $dll)
Sleep(1)
WEnd
Send("{AltUp}")
EndIf
ElseIf _IsPressed("05", $dll) And _IsPressed("06", $dll) Then
If MsgBox(1 + 262144, "Exit", "Do you really want to exit...?") == 1 Then ExitLoop
EndIf
Sleep(1)
WEnd
DllClose($dll)
ただのAutoItで自分でこれをコンパイルするか、私のウェブスペースからコンパイル実行ファイルをダウンロードしてください:http://jtmeyer.de/mousetool.exe
これはそれのタイトルに「VMware Workstationの」を含むウィンドウを待つとします親指のマウスボタンのいずれかの場合キーを押す(コード05 + 06)Alt + Left / Alt + RightのKeyCombinationを押します。両方のボタンを同時に押すと、表示されるダイアログボックスを確認するとツールが終了します。