Windows 7 paint annoyances

Drawing lots of lines that are connected is usually something that calls for the polyline tool instead of multiple individual lines:

Polygon tool in Windows 7's Paint

Otherwise you can install Paint.NET where you get those handles too, but you can commit the drawn line with the Return key.


When i draw lines with windows 7 paint it gives me little squares at the edges that i can move the lines with.

I know exactly what you mean and i don't know how to turn off this annoyance.

If you're looking for a fast, leight-weight alternative, that is running circles around MS Paint, have a look at PhotoFiltre (feature-packed and certainly no "little squares at the edges" :)

alt text

PhotoFiltre is freeware, a portable version is available (doesn't require installation).


I can't find a way of getting it to do such either, very annoying.

I know there are other paint apps that do it, but they're quite heavyweight. I use full featured ones sometimes, but other times I like the speed and simplicity of mspaint.

So I wrote the following workaround.

You'll have to download and install autohotkey first. Then create a blank file called mspaint.ahk (ensure you have view file extensions on) and paste the following:

~Space::
    if WinActive("ahk_class MSPaintApp")
    {
        MouseMove 20, 20, 0, R
        MouseClick
        MouseMove 0, -20, 0, R
        MouseClick
        MouseMove -20, 0, 0, R
    }
Return

Run the file. Now at the end of each line press space and it'll automatically click off and return to the exact location it was before, almost as fast as the time it takes to let go of the space bar so it doesn't slow your drawing.

(Don't worry it doesn't activate in any other program other than mspaint because that could get annoying!