
エクスポートする方法はありますか?ポイントアンドクリック仮想マウス設定は? 新しいコンピューターがあり、古いコンピューターから新しいコンピューターに設定をエクスポートしたいと考えています。どちらも Windows 7 x64 SP1 を実行しています。
答え1
Point-N-Click 仮想マウスの設定は、次のレジストリに保存されます。
HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click
レジストリ エディターを使用してレジストリ キーをエクスポートできます。
これにより、.reg
Point-N-Click 仮想マウスの設定をインポートするコンピュータ上で実行できる が作成されます ("PNCPath"="C:\\Program Files (x86)\\Point-N-Click\\"
も変更する必要がある場合があります\Point-N-Click\Positions
)。
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click]
[HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click\Positions]
"MinWidth"="1617"
"MinHeight"="4266"
"MaxWidth"="4350"
"MaxHeight"="14220"
"FormHeight2.11"="7350"
"FormWidth"="2310"
"FormTop"="-7905"
"FormLeft"="-31111"
[HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click\RAMBSettings]
"RAMB"="False"
"RAMBTransparency"="255"
[HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click\Settings]
"PNCPath"="C:\\Program Files (x86)\\Point-N-Click\\"
"Form"="False"
"Version"="2.10.1"
"AutoHide"="False"
"AutoDock"="True"
"MACRO"="True"
"Transparency"="255"
"ActiveHide"="True"
"DwellTime"="230"
"DwellTimeExit"="250"
"UseTimer"="90"
"UseTimerReset"="10"
"DwellTimeMouse"="108"
"SensitivityV2"="3"
"TrackerInterval"="19"
"BaselineFlags"="3"
"AverageVelocity"="4.837333"
"VISUAL"="False"
"AUDIO"="False"
"RAMBVisual"="False"
"RedColor"="255"
"YellowColor"="65535"
"SelectSound"="True"
"ClickSound"="True"
"MacroHide"="True"
"CMDKEY"="-1"
"CMDREPEAT"="-1"
"CMDSHIFT"="0"
"DefaultLeft"="True"
"AutoCancel"="False"
"UseJoyStick"="False"
"SINGLEROW"="False"
"MacroButton"="False"
"Left"="True"
"Left2"="True"
"LeftDrag"="True"
"Right"="True"
"RightDouble"="True"
"RightDrag"="True"
"Middle2"="True"
"Middle"="True"
"MiddleDrag"="True"
"RightLeft"="True"
"RepeatMove"="True"
"RepeatNoMove"="True"
"FastRepeat"="True"
"EXIT"="True"
"MOVE"="True"
"CANCEL"="True"
"ALT"="False"
"Timer"="True"
"Target"="True"
"SHIFT"="False"
"CTRL"="False"
"DOCK"="True"
"HIDE"="True"
"HELP"="True"
"CONFIGURE"="True"
"VersionBT"="1.0.11"
[HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click\Shortcuts]
"S0"="1110"
"S2"="4110"
"S6"="2110"
"S12"="5110"
"S15"="12110"
更新 (2018-04-04): Point-N-Click の新しいバージョン、つまり Point-N-Click NET では、キーは に配置されているHKEY_CURRENT_USER\Software\Point-N-Click
ため、以前のスクリプトを次のように変更する必要があります (Microsoft Windows 10 でテスト済み)。
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Point-N-Click]
[HKEY_CURRENT_USER\Software\Point-N-Click\RAMBSettings]
"RAMB"="False"
"RAMBTransparency"="255"
[HKEY_CURRENT_USER\Software\Point-N-Click\Settings]
"PNCPath"="C:\\Program Files (x86)\\Point-N-Click NET\\"
"Form"="False"
"Version"="2.10.1"
"AutoHide"="False"
"AutoDock"="True"
"MACRO"="True"
"Transparency"="255"
"ActiveHide"="True"
"DwellTime"="230"
"DwellTimeExit"="250"
"UseTimer"="90"
"UseTimerReset"="10"
"DwellTimeMouse"="108"
"SensitivityV2"="3"
"TrackerInterval"="19"
"BaselineFlags"="3"
"AverageVelocity"="4.837333"
"VISUAL"="False"
"AUDIO"="False"
"RAMBVisual"="False"
"RedColor"="255"
"YellowColor"="65535"
"SelectSound"="True"
"ClickSound"="True"
"MacroHide"="True"
"CMDKEY"="-1"
"CMDREPEAT"="-1"
"CMDSHIFT"="0"
"DefaultLeft"="True"
"AutoCancel"="False"
"UseJoyStick"="False"
"SINGLEROW"="False"
"MacroButton"="False"
"Left"="True"
"Left2"="True"
"LeftDrag"="True"
"Right"="True"
"RightDouble"="True"
"RightDrag"="True"
"Middle2"="True"
"Middle"="True"
"MiddleDrag"="True"
"RightLeft"="True"
"RepeatMove"="True"
"RepeatNoMove"="True"
"FastRepeat"="True"
"EXIT"="True"
"MOVE"="True"
"CANCEL"="True"
"ALT"="False"
"Timer"="True"
"Target"="True"
"SHIFT"="False"
"CTRL"="False"
"DOCK"="True"
"HIDE"="True"
"HELP"="True"
"CONFIGURE"="True"
"VersionBT"="1.0.11"
[HKEY_CURRENT_USER\Software\Point-N-Click\Shortcuts]
"S0"="1110"
"S2"="4110"
"S6"="2110"
"S12"="5110"
"S15"="12110"