topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday November 13, 2025, 4:47 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 176 177 178 179 180 [181] 182 183 184 185 186 ... 309next
4501
I don't have multiple monitors. But I took the simpler approach of just moving the mouse to the Start Orb and clicking. It should calculate the correct position to click no matter what edge the Taskbar is on.

As it is the middle mouse click will only fire if Desktop is the active window. You may have to left click the desktop first to make sure it's active. Or as noted in the comments, you may comment out that limitation. A middle click anywhere would trigger it.

edit: I've modified the calculations. I pasted in the new version. Instead of adjusting x and y from the work area outward I changed the calculation from screen res inward. That way it should still work even if the work area has been shrunk via an Adjust Work Area type utility.

The code makes the assumption that Taskbar AutoHide is disabled. Otherwise the Get Work Area API won't tell you which edge has the Taskbar. Some other fancier detection would be required. But this is a pretty good starting point for step-wise enhancement.


#SingleInstance ignore
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
x := 0
y := 0
_EmptyWorkingSet()

; DesktopGroup limits Middle Mouse Click to firing
; when the Desktop is the active window.

; comment out the next 3 lines to make hotkey global
GroupAdd,DesktopGroup, ahk_class Progman
GroupAdd,DesktopGroup, ahk_class WorkerW
#IfWinActive ahk_group DesktopGroup
MButton::
  if !_StartButtonXY(x, y)
    return
  MouseClick, left, %x%, %y%
return

;-------  helper functions  --------

_StartButtonXY(ByRef xpos, ByRef ypos)
{
  wl := 0
  wt := 0
  wr := 0
  wb := 0
  if !_GetWorkArea(wl, wt, wr, wb)
    return 0
  if (wl > 0) || (wt > 0)
  {
    xpos := 30
    ypos := 30
  }
  else if (wr < A_ScreenWidth)
  {
    xpos := A_ScreenWidth - 30
    ypos := 30
  }
  else
  {
    xpos := 30
    ypos := A_ScreenHeight - 30
  }
  return 1
}

_GetWorkArea(ByRef left, ByRef top, ByRef right, ByRef bottom)
{
  VarSetCapacity(work_area,16,0)
  success := DllCall( "SystemParametersInfo", "uint", 0x30, "uint", 0, "uint", &work_area, "uint", 0 )
  if success =
  {
    return 0
  }
  left := NumGet(work_area,0)
  top := NumGet(work_area,4)
  Right := NumGet(work_area,8)
  Bottom := NumGet(work_area,12)
  return 1
}

_EmptyWorkingSet()
{
  return DllCall("psapi.dll\EmptyWorkingSet", "UInt", -1)
}

4502
General Software Discussion / Re: Url Pack 1.3.1.0
« Last post by MilesAhead on April 11, 2012, 06:12 PM »
Url Pack 1.3.1.0 Added command to open Gui from Tray Menu.  Added Gui Button to open url folder.  Added icons to Tray Menu.

gui.png
4503
Living Room / Re: Firefox and LastPass problems
« Last post by MilesAhead on April 11, 2012, 04:36 PM »
Very odd - never had an issue with lastpass. Have FF 9 and the up to date lastpass. But then FF is my secondary browser so I would perhaps not notice

Just like you perhaps didn't notice that Firefox is now up to version v10.x. ;)

Now up to 11.x.  To me FF version being 9, 10, 11 or 50.x is about as much of a distinction as being charged $499.95, $499.98 or $500 for a TV set. In fact I'd be happy to pay the extra nickle just so I can say "500 bucks" instead of "four hundred ninety nine dollars and ninety five cents." They do that just to be annoying. :)
4504
Living Room / Re: Firefox and LastPass problems
« Last post by MilesAhead on April 11, 2012, 04:26 PM »
Thanks - I will give URLpack a try.

Update: Tried it and it works nicely.

Just on thing - I don't like the gather function. I keep some URLS on my desktop and I don't want them deleted from the desktop or added to a pack. Simplest way to do what you want it to create a shortcut on the desktop to URLpack (you could use desktop.ini and an icon to make it a distinctive shortcut) and just drop browser icons directly onto that shortcut. That way you don't create extra desktop icons and you don't delete irrelevant ones.

I just tried this with Chromium and a simpler way to accomplish the same thing is to use the Open URL Folder command in Tray Menu.  Then drag the url shortcut from the address bar directly into the folder. Presumably if one was collecting a bunch of shortcuts the folder would be left open for a period of time. Since it's an ordinary Explorer folder just click to close. No program setting to disable it being on the desktop is required.

(I take your point about the desktop gathering though. Maybe I should add a button to the Gui to open the folder. Might be a bit easier than right clicking the tray icon.)

edit: I made some revisions. Now has a Tray Menu command to open the Gui. A Gui Button to open the URL folder.  Also added icons to Tray Menu to spiff it up a tad. :)

Also pressing F1 while Gui is active should display the About Box.

edit: here's a link to the latest update that shows the new screen shot:
https://www.donation....msg285071#msg285071
4505
Living Room / Re: World's first 'sky-worthy' car (And It Works!)
« Last post by MilesAhead on April 10, 2012, 05:34 PM »
I was hoping they'd show video of it being driven down the street. I remember years back there was a street legal auto you could fly. But you pulled a trailer with the wings in it.  You had to take the wings from the trailer and latch them on. Also there was the problem of storing the trailer while airborne.  If you landed in a different city and wanted to drive it, then I guess you either paid to store your wings at that airport or rented a trailer? :)

The nose on the thing looked similar to a Piper Cub single engine job.


http://www.terrafugia.com/video_D2.html <--- Video driving down the street, filling up with fuel, then going to the airport for a flight :)
-Stephen66515 (April 09, 2012, 06:35 PM)

Cool. I'd hate to get in a fender bender if I had to fly the thing home though.
4506
Living Room / Re: World's first 'sky-worthy' car (And It Works!)
« Last post by MilesAhead on April 09, 2012, 06:19 PM »
I was hoping they'd show video of it being driven down the street. I remember years back there was a street legal auto you could fly. But you pulled a trailer with the wings in it.  You had to take the wings from the trailer and latch them on. Also there was the problem of storing the trailer while airborne.  If you landed in a different city and wanted to drive it, then I guess you either paid to store your wings at that airport or rented a trailer? :)

The nose on the thing looked similar to a Piper Cub single engine job.
4507
Finished Programs / Re: DONE: Double Click Needed
« Last post by MilesAhead on April 09, 2012, 06:09 PM »
To MilesAhead:
From BearPup7

Thanks very much. Your zip did the trick. I'm very appreciative.
BP7


You are welcome. Glad it worked for you. :)
4508
Finished Programs / Re: DONE: Double Click Needed
« Last post by MilesAhead on April 09, 2012, 04:01 PM »
See if this works for you. Just run it and it sits in the Tray. Any middle mouse button click should double click.



4509
General Software Discussion / Re: SourceSnap v. 1.54
« Last post by MilesAhead on April 09, 2012, 03:46 PM »
SourceSnap v. 1.54 Fixed endless loop selecting Snap Filename introduced in previous bug fix releases. Unless some new bug is found, this should be the stable release for some time.
4510
General Software Discussion / Re: SourceSnap v. 1.53
« Last post by MilesAhead on April 07, 2012, 03:16 PM »
SourceSnap v. 1.53 Found the error in the Inifile read routine. Now all changed hotkeys should maintain the new values across program starts.

4511
General Software Discussion / SourceSnap v. 1.55
« Last post by MilesAhead on April 06, 2012, 06:40 PM »
SourceSnap v. 1.52 It's been quite awhile since I used this as I do most of this type of stuff with Selector now. But a user reported hotkey bugs. This prompted me to rework some of the code for more reliable hotkey reassignment.

Also on startup if any of the hotkey assignments fail, the Ini File is opened. The program quits after you are prompted to edit the ini file. Back when I first wrote this I didn't check the return values for HotKeySet() function. I added some error catching to make the app more robust.  But I'm still convinced this type of thing is done better either by a more sophisticated snippet manager, or using Selector to open editors customized to each programming language, with the selection as a temp file.

http://www.favessoft.com/hotkeys.html

But SourceSnap is still available for download as a few people like to use it. :)
4512
Finished Programs / Re: SOLVED: Open command prompt at current directory
« Last post by MilesAhead on April 06, 2012, 06:36 PM »
btw I did see after playing around with the Windows Seven built in context menu function that you  can select multiple folders in the same explorer window, then Shift Right Click for "open command window here."  That function will open a prompt with each folder as current directory. I've started using that on W7 just to cut down on the number of hotkey apps I'm running.  Likewise using the mouse to click on New Folder in Explorer instead of running a hotkey.
4513
General Software Discussion / Re: FolderCache 6.3.3.0
« Last post by MilesAhead on April 05, 2012, 04:12 PM »
FolderCache 6.3.3.0 Added animation to PopUp Window. This may be disabled via .ini file setting.
Note that there is no animation during launch.  But if you hit Esc to close the window it will fade. About dialog opens with slide if Glass Enabled etc..

In this latest release I cut down the PopUp Window open animation to 50 ms.  That way you don't have the sense of lag when the window opens. It should open by the time the Middle Mouse Button clicks up. (If it doesn't then it's likely there are items in the Folder Cache that are no longer connected such as a network drive or unplugged USB drive. I tried to reduce the lags in these cases by resorting to various APIs to detect if the folder exists. It's either check before adding to the list or risk getting OS error dialogs when an attempt is made to open a non-existent folder.)


4514
Okis

I am going

Best Regards
 ;D

OK. Let me know if anything acts weird. If AHK_L Unicode is this easy then I may port more hotkey things I did in AutoIt3 over to it.

4515
General Software Discussion / Re: OneKey 1.8.0.0
« Last post by MilesAhead on April 05, 2012, 12:27 PM »
This one looks like what you want:

http://www.softpedia...Project-HotKey.shtml

By the look of the icon I'd say it's an AHK program.  Seems very straight-forward by the write-up. :)
4516
General Software Discussion / Re: OneKey 1.8.0.0
« Last post by MilesAhead on April 04, 2012, 11:04 PM »
Heh I'll cop to being half Pointy Haired Boss without the Boss.
I see code and I go numb!

That's why I commission stuff! : )


It's already been done ad infinitum. So the popular freeware download sites.
4517
General Software Discussion / Re: OneKey 1.8.0.0
« Last post by MilesAhead on April 04, 2012, 08:10 PM »
If you want to have some fun I'd suggest you download AutoHotKey_L and make one yourself.

http://l.autohotkey.net/

Something like you want is easy if you hard code the programs in as below. The "DesktopGroup" stuff limits the hotkeys to when the Desktop is the active window. That avoids interfering with other programs.  The "+" sign before the function key means you are holding down the Shift key. See AutoHotkey_L help for particulars. Make sure you end every list of statements for each hotkey with "return" or else it will drop through and execute everything listed below it.

You might want to use something other than function keys since they're likely to conflict with other apps.  Experimentation is best. This is just to get you started.  Also see:

http://www.autohotke....com/forum/index.php


GroupAdd,DesktopGroup, ahk_class Progman
GroupAdd,DesktopGroup, ahk_class WorkerW

#IfWinActive ahk_group DesktopGroup
+F1::
  run,notepad.exe
 return

+F2::
  run, "C:\Program Files\JGsoft\EditPadLite\EditPadLite7.exe"
return

4518
General Software Discussion / Re: OneKey 1.8.0.0
« Last post by MilesAhead on April 04, 2012, 07:57 PM »
There are already multiple hotkey launchers. Take a look on Sofpedia or download.com.

I use this for stuff I do incessantly. In my case, it's run sync.exe to flush my disk buffers to hard drives.  Since I have USB docking stations it makes sense in my case.
4519
General Software Discussion / Re: OneKey 1.8.0.0
« Last post by MilesAhead on April 04, 2012, 05:54 PM »
OneKey 1.8.0.0 Reduced memory usage in tray.
4520
I've implemented it as a single hotkey.  Default is Shift-NumPadSub to open home folder of active window. Use Edit IniFile command or edit the ini file manually to change the hotkey.

It's been uploaded to the hotkey page. You should delete your ini file or just make an empty folder to avoid any ini settings conflicts/errors.

http://www.favessoft.com/hotkeys.html

I've added icons to the tray menu. It may be a good idea to unzip to an empty folder. Although the icon files are not supposed to overwrite existing files. But if you coincidentally had a file such as Dollar.ico in the same folder, the correct icon would not be shown. So empty folder unzip is best.
4521
This seems go well.
With Thunderbird goes to Y:\PORTABLES\Navegadores . Internet . Correo\ThunderbirdPortable\App\thunderbird
With Goldmine goes to the program folder that is in Y: hard drive.
With Firefox goes to M:\Archivos de programa\Mozilla Firefox
With Home folder windows goes to Y:\PORTABLES\Personaliza pc\HomeFolder
With a explorer windows goes to M:\WINDOWS
With Psicrometer chart goes to O:\Mis documentos en O\SOFTWARE PORTABLES\TECNICOS\CartaPsicometrica
 :-*

Ok. I'll implement using AHK_L. When I upload I'll make a note here.

4522
Just for chuckles try this one I did in AHK_L. It's supposed to have better Unicode support.

The hotkey is Control-F2

It's just a bare bones for test.



Bon Profit Miles
Ramen Nice dish indeed

I'll take a look tomorrow. Here is 02.00 am hours.

 :P

Very well. :)

4523
Just for chuckles try this one I did in AHK_L. It's supposed to have better Unicode support.

The hotkey is Control-F2

It's just a bare bones for test.

4524
Understood MilesAhead
I have spanish version of windows xp pro + sp3
I have administrator privileges, so I understand is my system fault.

Best Regards
 :-*


Sorry. I wish I had more resources for testing. At present it's trying to eat something besides ramen at my house. :(
4525
Try right clicking on Home Folder and selecting Run As Administrator. If that doesn't do it, then I have no clue what the issue is. Are you using a Non-English language version of Windows? If so I have no way to support it. You may have to find another tool on Softpedia or another download page.

edit:

btw, the only reason it says "for Vista and Later" for New Folder 2 is because XP already has a New Folder function via pressing F7 if I remember correctly.  Try the home folder function just to see if it works. If it does not, even when run as administrator, then I must assume it's because you're not running an English language flavor of Windows.

I have these requirements posted on all my download pages:

================


Requirements

Windows XP or later (unless otherwise noted.)

Explorer utilities require "Display full path in title bar" enabled in Folder Options.

Taskbar Gap/Work Area utilities require taskbar AutoHide disabled.

Note: Utilities tested on English Language versions of Windows.


I have no way to support Unicode or non-English Windows. Just can't be done.
Pages: prev1 ... 176 177 178 179 180 [181] 182 183 184 185 186 ... 309next