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, 2:52 am
  • 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 ... 209 210 211 212 213 [214] 215 216 217 218 219 ... 309next
5326
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 26, 2011, 05:40 PM »
Here's something interesting.  Following a post I found on ahk forum, hitting Windows-d key to minimize all windows sets desktop to WorkerW. I tried it and it shows in the spy. Seems to create a new folder then too.  So unless somebody has evidence it's broke, I assume it's "working as designed" now. :)

Strange goings on. 
5327
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 26, 2011, 05:14 PM »
I can't believe they will break tons of utilities for some unknown gain.  Seems like they are taking delight in breaking old code these days.  Even desktop icon placers that work all the way from Win95 on won't work right in 64 bit.

To be honest I have no desire to chase them around. Including the source is how I'm going to handle it.  I make a shortcut on the Desktop close to Never unless I'm using a url shortcut maker like deskCut so I don't need it.

Thanks very much for trying it out. :)

Edit: Going to try one last thing. I'll just add WorkerW class and Progman both. One should work. If not then there's too many variables. :)

I'll post 1.5 in a bit.

edit2: 1.5 uploaded.
5328
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 25, 2011, 07:46 PM »
Ok, Thanks, I'll fix-up my local install of 7Folder. :Thmbsup:

Could you do me a favor and try v. 1.4?  I changed it to look for Program Manager window title for the desktop instead of Progman class name.  It works on my system but I don't have a Windows with "WorkerW" class name for desktop to try it.  :)
5329
General Software Discussion / Re: ReOpen 4.7.0.0
« Last post by MilesAhead on March 25, 2011, 12:03 AM »
ReOpen 4.7.0.0 Set Topmost attribute of PopUp Window to avoid it being covered.  Since it doesn't show up in the Alt-Tab list, this measure should avoid it being "lost" on the desktop.
5330
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 24, 2011, 05:40 PM »
Guess I'll just leave it the way it is and include source and icon in the download.  People can add WorkerW or whatever they want to the group.

That's a fine solution, it'll work for me :up:

Thanks for the info and the ahk forum link.  :)

I've uploaded 1.3.  Now the zip contains the custom icon and source code.  All source used is in one file(no includes) and it calls _EmptyWorkingSet() on startup to use a bit less memory while sitting in the tray.

5331
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 24, 2011, 05:10 PM »
Yet more Windows strangeness. I have Aero and composition enabled but it's the same old Progman as has been forever. In the thread you reference this seems to go on and off.  Also one user noted non desktop windows with WorkerW as class.  So it's not reliable according to that.

I don't understand why they change things that have worked across Windows versions.  Strange.

Guess I'll just leave it the way it is and include source and icon in the download.  People can add WorkerW or whatever they want to the group.
5332
Living Room / Re: My Movie Fantasy
« Last post by MilesAhead on March 23, 2011, 03:18 PM »
cute, cuddly critters that everyone in the audience loves, but the critters are out to do bad things.

(video clip)


Dang!! I was doing all kinds of searches but I couldn't remember Gremlins.  I got the 'g' and kept ending up in the Goonies movie instead! I hate it when that happens. :)
5333
Living Room / Re: My Movie Fantasy
« Last post by MilesAhead on March 22, 2011, 09:12 PM »
I would love to see a horror film that takes place during a sunny warm day with cute, cuddly critters that everyone in the audience loves, but the critters are out to do bad things.
...

Sounds like an outdoor political rally. 
5334
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 22, 2011, 07:50 PM »
Are you running some alternative desktop?  Use the spy tool and see if the desktop has class name "Progman"

If it does, it should work.
5335
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 22, 2011, 04:56 PM »
It works for me.  Are you clicking in the desktop first to make sure it's the active window?

From playing around it seems if the hotkey shows correctly in the About box, it works wherever Control-Shift-n works.

Here's the source if you want to hard wire it.  Note that the MilesAhead.ahk include is just needed to detect the Windows Version.  You can just cut out the _WinVersion() section of code. I don't have the old version with the hard wired hotkey but it should be easy enough to change it to

IfWinActive,ahk_group DesktopGroup
F8::

yadda yadda



/*
 * * * Compile_AHK SETTINGS BEGIN * * *

[AHK2EXE]
Exe_File=%In_Dir%\7Folder.exe
No_UPX=1
[VERSION]
Set_Version_Info=1
Company_Name=FavesSoft LLC
File_Version=1.2.0.0
Inc_File_Version=0
Legal_Copyright=2011 www.FavesSoft.com
Original_Filename=7Folder
Product_Name=7Folder
Product_Version=1.2.0.0
[ICONS]
Icon_1=%In_Dir%\7.ico

* * * Compile_AHK SETTINGS END * * *
*/

; 7Folder - F7 in Explorer or Desktop creates new folder
; on Windows Seven by sending Control-Shift-n sequence
;
; MilesAhead
;
#SingleInstance force
#Include MilesAhead.ahk
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
Menu Tray,NoStandard
Menu Tray,Add,Donate,DoDonate
Menu Tray,Add,Visit Hotkey Page,DoVisit
Menu Tray,Add,About 7Folder,DoAbout
Menu Tray,Add
Menu Tray,Add,Quit,DoQuit
Menu Tray,Default,About 7Folder
Menu Tray,Tip,7Folder

GroupAdd,DesktopGroup, ahk_class CabinetWClass
GroupAdd,DesktopGroup, ahk_class ExploreWClass
GroupAdd,DesktopGroup, ahk_class Progman

If _WinVersion() < 6.1
{
  MsgBox, 4112, 7Folder, 7Folder requires Windows Seven to Run
  ExitApp
}

if 0 = 1
{
carg = %1%
}
else
{
carg := "F7"
}

Hotkey, IfWinActive, ahk_Group DesktopGroup
Hotkey,%carg%,DoHotKey,UseErrorLevel
If ErrorLevel
{
  MsgBox, 4112, 7Folder, %carg% is not a valid Hotkey
  ExitApp
}
return

DoHotKey:
  Send ^+{n}
Return

DoAbout:
  FileGetVersion,filever,7Folder.exe
  MyMsg =
  (
7Folder v %filever% Copyright (c) 2011 www.FavesSoft.com`n
Press %carg% to create New Folder in Explorer or on Desktop`n
  )
  MsgBox, 4160, About 7Folder, %MyMsg%
Return

DoDonate:
  Run,"http://www.favessoft.com/donate.html"
Return

DoVisit:
  Run,"http://www.favessoft.com/hotkeys.html"
Return

DoQuit:
  ExitApp


5336
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 22, 2011, 04:42 PM »
Thanks for the info. I'll take a look.
5337
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 21, 2011, 08:52 PM »
Updated to v. 1.2 to limit variable hotkey to Explorer or Desktop as the active window(Hotkey command.)

Version 1.1 could "eat" hotkeys if the program in the active window happened to use that key(such as an editor using F7 or F8 etc..)
5338
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 21, 2011, 08:22 PM »
I uploaded v. 1.1.  I just did a superficial trial so let me know if you find a bug.  If you wish another key such as F8 or whatnot, specify on command line or edit the target line in the shortcut. If no command line arg given it defaults to F7.

If the specified key does not meet AHK format or if there's more than one command line arg, it will show and error dialog and quit.

The About dialog dereferences the variable holding the hotkey. If you forget what the current hotkey is just double click the tray icon.
5339
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 21, 2011, 07:50 PM »
Euhm, maybe a bit blunt, but as an Explorer2 user, I'd favor <F8> (New folder) over <F7> (New file). Would there be a possibility to either include the source so I can change that myself, or add a command-line parameter to specify the (function)key to use? :-[

Sure. The command line param seems like a good idea.  That way no .ini file needed.
I'll post a follow-up after I upload the new one.

5340
Finished Programs / Re: SOLVED: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 21, 2011, 06:53 PM »
I don't like 3 key combos and I often use FreeCommander, which has F7 for create new folder. For that reason and inspired by this request I wrote a small tray hotkey for Windows Seven only.  Press F7 in Explorer or on Desktop to create new folder.

There are also some commands in the tray menu to donate, visit my hotkey page, quit etc..

You can download the compiled exe with custom icon from this page:

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

Just search on 7Folder for the link.

If run on an OS earlier than 7 it shows a message box and quits.
The exe is stand-alone. Just copy to a folder in your Path. It creates no
Registry entries or .ini file settings. It only requires Windows Seven and that
F7 key be free for use as the hotkey. It will only try to use F7 if an Explorer window or the desktop is the active window.

I looked around for consistent keys to create a new folder for Vista but there didn't seem to be anything I could count on.  Since Control-Shift-n is pretty much guaranteed to work on Windows Seven I limited it to that OS.
5341
The really weird thing is after I go to a page, sometimes Chromium blanks the address bar.  I forget if it fills in if I click the mouse in there. If I try to deliberately get it to do it then it likely won't happen, just to spite me. :)
5342
General Software Discussion / Re: What is your preferred font?
« Last post by MilesAhead on March 17, 2011, 07:59 PM »
...

Sadly, it isn't Unicode. Not even close. Is it old? (no €)  :(


I use AviAddXSubs for .srt to idx/sub conversion. It only likes Ansi .srt anyway.

edit: I'm finding some very nice fonts here:
http://www.urbanfonts.com/

but I don't think they categorize by unicode compliance.  I searched unicode and only got 3 hits. I suspect it only searches name/description.  Found some nice monospaced that don't look lame.  Nice site.
5343
General Software Discussion / Re: What is your preferred font?
« Last post by MilesAhead on March 17, 2011, 06:01 PM »
I found a free PC TTF implementation of Fontin font that looks even better as subtitles. They say it's designed for smaller sizes.  Very easy to read on the TV.

http://www.exljbris.com/fontin.html


Here's a screen shot.  This is font size 18 with border width of 3 for a 720P video

Fontin.png
5344
General Software Discussion / Re: Split one screen into two virtual screens
« Last post by MilesAhead on March 12, 2011, 05:55 PM »
I've never used a laptop more than a few seconds since I'm lost without a standard keyboard.  So this idea may be stupid and/or impossible:

Would it be possible to stand the laptop on the desk on one edge so that the screen is in portrait mode, and attach a keyboard so you can still type?

Don't know about the other logistics but evidently somebody came up with the same idea I did in the past using a large hinge on a desktop monitor to tilt the screen 90 degrees instead of buying expensive monitors that were taller than wide. :)
5345
If you would like to spif up the installer with a skin I've used this free tool for Inno Setup in the past:

http://isskin.codejo...com/visualstyles.asp

The overhead is a dll that loads the visual style, then unloads it when the installer quits.

Someone artistically inclined could do better, but this is one I did for one of my installers:

skin.png

edit: this could limit you to a 32 bit version of the installer. I haven't used ISSkin in awhile. I don't know if they have 64 bit dlls available.
5346
I'm running Chrome 10.x and the star is on the Right side of the Omnibox, but doesn't work as described.

I do have that "round thingy" on the left side, which looks like the Earth to me (the Americas are most visible). And yes, it creates a shortcut as described. :Thmbsup:

That works the same as mine.  The star on the right is the Bookmark button.  Took me awhile to realize that too.  Oh well, once I get used to it the thing works pretty well. I have mixed feelings about the options looking like a web page.  Seems no matter how they group them I have to hunt for stuff.
5347
You could also use the approach of using WinPatrol or another utility that has a Startup Delay function.  You could write a simple app using AutoHotKey, vbScript, AutoIt3 or freeBasic for that matter, that displays a MessageBox.  I know AutoIt3 has a time-out function on the MessageBox so it could disappear after a few seconds without having to click it.

Make this app the only one that starts delayed. Unless you are auto starting some big stuff a 30 second delay should be plenty.
5348
I was looking around for an extension for Chromium that would perform as Firefox deskCut AddOn.  I ran across this article while searching.  Turns out the functionality is built in!! That's cheating!! Way too easy!!!

I'm running Chromium 11.0.686.0 and instead of a Star on the left of the Address Bar as shown in the article, it has some round thingy.  I can't tell if it's supposed to be a smiling face or a soccer ball or what, but it works.  Highlight url in the Address Bar then drag the ball onto the desktop. You get a Chrome/Chromium icon shortcut that browses to that page when double-clicked.

http://www.tothepc.c...chrome-by-drag-drop/

edit: I've tried this in Windows7. Judging by comments for the article, it may not work on Mac or Linux.



5349
Post New Requests Here / Re: Idea: "MakeNewFolder" clone for Windows 7
« Last post by MilesAhead on March 08, 2011, 02:03 AM »
@MilesAhead - I quite understand, although it wouldn't need to be a GUI copy. I wonder if something could be thrown together with AutoHotKey? Maybe I'll experiment myself.

Brian De B
-Brian De Braganza (March 07, 2011, 11:41 PM)

I'll give a hint. On Vista and Windows7 I do GetWindowText (or in AHK it would be WinGetText) on the active window(assumed to be an Explorer folder)and the string with the current folder is between "Address: " and a line feed or end of line.  In AHK you might be able to dig it out with a regex. In AutoIt3 I use _StringBetween().  Once you have the current folder then you can manipulate things pretty easily.
5350
Finished Programs / Re: Idea: New Folder by F-key for Windows 7
« Last post by MilesAhead on March 08, 2011, 01:56 AM »
@MileAhead - well, well, well! One learns something new every day! I had no idea that hotkey was there.

Brian De B
-Brian De Braganza (March 07, 2011, 11:43 PM)

Neither did I until I did the search. I just got lucky. :)
Pages: prev1 ... 209 210 211 212 213 [214] 215 216 217 218 219 ... 309next