0

Is there any way to export Point-N-Click virtual mouse (mirror) preferences? I have a new computer and wants to export my settings from my old computer to the new one. Both run Windows 7 x64 SP1.

Franck Dernoncourt
  • 24,246
  • 64
  • 231
  • 400

1 Answers1

0

Point-N-Click virtual mouse preferences are saved in the registry in:

HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Point-N-Click

You can export the registry keys with the Registry Editor:

enter image description here

This creates a .reg that you can run on the computer where you want to import the Point-N-Click virtual mouse preferences (you may want to change "PNCPath"="C:\\Program Files (x86)\\Point-N-Click\\" as well as \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"

Update (2018-04-04): with the new version of Point-N-Click, namely Point-N-Click NET, the keys are located in HKEY_CURRENT_USER\Software\Point-N-Click, which means the previous script has to be changed as follows (tested on 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"

Update (2025-01-12): that also works with Windows 10 21H2 and Windows 11 24H2.

Franck Dernoncourt
  • 24,246
  • 64
  • 231
  • 400