Messages - AndyM [ switch to compact view ]

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 123next
26
Living Room / Re: What are your favorite movies?
« on: March 03, 2013, 09:56 AM »
The Man from Earth

http://www.imdb.com/title/tt0756683/

Just a guy telling a story (the setting and supporting characters are irrelevant).

But the guy is 14,000 years old and it's a great story.  Most entertaining.

27
Living Room / Re: Select ENTER with mouse click
« on: February 12, 2013, 09:27 PM »
The problem with clicking someplace outside the window you are working on is that you will change focus, so any <Enter> or <Return> at that point wouldn't happen in the correct window, at least not with only a few lines of script.

I use mouse rocker combinations (hold down one button and click/doubleclick/triple click the other, hold down one button and click the scroll wheel, hold down one button and roll the scroll wheel) for a variety of things: cut, copy, paste, delete, return, escape, close tab.

Each assignment is a few lines of Autohotkey script.  I use LeftButton/ScrollDown for <ENTER>, maybe that sort of thing would work for you adjusted to the trackball.  A snippet of code I lifted/copied/adapted from someone/someplace else:
~LButton & WheelDown::
    Send,{LButton Up}
    GetKeyState, State, WheelDown
    If State = U
        {
            Send,{Enter}
            ToolTip, Enter
            SetTimer, RemoveToolTip, 2000
        }




28
Have you tried surrounding the complete path and filename in quotes?

"C:\Program Files\Bulk Rename Utility"

29
Living Room / Re: Global Warming & Statistics
« on: February 04, 2013, 01:04 PM »
So a 1/4 acre is a ~52' square .
~104', it's a square

30
you can also get help with this sort of question at the Autohotkey forum

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 123next
Go to full version