Horizontal Scrolling in Microsoft Paint (Ctrl+arrows). no panning. scroll horizontally.

Аватар автора
JavaScript Архитектура
2023 Oct 08 update: Ctrl + the arrow keys doesn&work anymore apparently. Now zooming in and out using Ctrl + the scroll wheel does relocate the view depending on where the mouse cursor is. I would say that this is a version of panning. Does seem to work but works better in other programs. --- I still was using Microsoft Paint occasionally for saving screenshots at my previous job. Note that Paint 3D exists which has better tools for getting around the screen. More sophisticated graphics software exists too. The main intent of this video is to include keywords that some of the help files were missing so internet searches get better results. Holding Ctrl+arrows scrolls and moves the mouse cursor (this might have been added 2019 May 15). AutoHotkey code for workaround before Ctrl+arrows (clicks the scroll bar move buttons): ; Recommended for performance and compatibility with future AutoHotkey releases. ; ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ; ; +F11:: ; + is Shift. ^ is Ctrl. moving the finger to Shift is better because Ctrl is for zoom. CoordMode, Mouse, Screen MouseGetPos, xpos, ypos Click, 12, 979 ;22, 989 seems to change by 10. [this is where the scroll button is on my screen][10 pixels? written poorly. can&remember what that was.] Click, %xpos%, %ypos%, 0 ;,0 is for no click. can...

0/0


0/0

0/0

0/0