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, 6:46 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 ... 198 199 200 201 202 [203] 204 205 206 207 208 ... 309next
5051
General Software Discussion / Re: KeyDrive 2.4.0.0
« Last post by MilesAhead on June 11, 2011, 11:03 PM »
KeyDrive 2.4.0.0 Now on every hotkey press it looks to see if TaskbarGap.exe is running.  If so it makes no gap calculation. It just calls GetWorkArea.

If TaskbarGap.exe is not running, it operates as usual.
5052
General Software Discussion / Re: Taskbar Gap 1.2.0.0
« Last post by MilesAhead on June 11, 2011, 10:38 PM »
Taskbar Gap 1.2.0.0  Set default behavior to toggle work area to gap on startup.  Set ToggleAtStart=0 in the ini file to disable.
5053
General Software Discussion / Re: Fold 2.0.0.0
« Last post by MilesAhead on June 11, 2011, 09:46 PM »
Fold 2.0.0.0 If it sees TaskbarGap.exe is running, it uses TileWindow API rather than calculating a gap on its own.
5054
General Software Discussion / Re: Taskbar Gap 1.1.0.0
« Last post by MilesAhead on June 11, 2011, 08:40 PM »
Taskbar Gap 1.1.0.0 Fixed bug reading PercentGap from ini file.
5055
General Software Discussion / Re: KeyDrive 2.3.0.0
« Last post by MilesAhead on June 11, 2011, 08:14 PM »
KeyDrive 2.3.0.0 Fixed bug reading .ini file.
5056
General Software Discussion / Taskbar Gap 1.5.1.0
« Last post by MilesAhead on June 11, 2011, 07:42 PM »
Taskbar Gap 1.0.0.0 Tray hotkey to toggle desktop work area.  PercentGap .ini file option to set the size of the Taskbar Gap.  Taskbar Gap stores the current work area on start up. On close it resets it to the saved value.

Sorry but I only have a single monitor setup. I can't support multiple monitors.

Hitting Alt-F7 hotkey or double clicking the Tray Icon toggles the work area setting.
The Tray Icon changes to indicate the current setting(gap or no gap.)

It is free for you to use at your own risk.
You can download from my hotkeys page:
http://www.favessoft.com/hotkeys.html

See About Taskbar Gap command in Tray Menu for particulars.
Also a Readme file is enclosed.

When the Taskbar Gap is in effect you should be able to maximize windows normally and have them respect the gap next to the Taskbar.

5057
General Software Discussion / Re: Chrome "about:blank" hack for Windows
« Last post by MilesAhead on June 11, 2011, 12:59 AM »
I added a few things. Protection against "already running" error dialog.  Memory trimmed periodically while running in the tray.  Plus your basic crappy About MsgBox!!



;  Chrome Blanker
;
;  For those who start a Chrome based browser
;  using about:blank to get a blank page.
;
;  This watches for "about:blank" in both the
;  window title and text(the address bar).
;
;  Removes about:blank from address bar.
;  This allows you to type in a url or
;  search string right away.
;
;  Author:  MilesAhead
;
#include <Constants.au3>
#include <Misc.au3>

Const $ERROR_ALREADY_EXISTS = 183
If _Singleton("{C8C284F1-5247-4187-8D48-FD476E473C61}", 1) = 0 Then
If @error = $ERROR_ALREADY_EXISTS Then Exit
EndIf
AutoItSetOption("TrayMenuMode", 3)
TraySetClick(8)
$aboutitem = TrayCreateItem("About Chrome Blanker")
TrayCreateItem("")
$exititem = TrayCreateItem("Quit")
TrayItemSetState($aboutitem, $TRAY_DEFAULT)
TraySetToolTip("Chrome Blanker")
TraySetState()

Const $LoopTrigger = 4096
Global $loopCount = 0
$title = "about:blank"
$text = "about:blank"

_EmptyWorkingSet()

While 1
$msg = TrayGetMsg()
Select
Case $msg = 0
If WinGetTitle($title, $text) Then
If WinActivate($title, $text) Then
Send("{F6}")
Send("{Del}")
_TrimMemory()
ContinueLoop
EndIf
EndIf
$loopCount += 1
If $loopCount > $LoopTrigger Then _TrimMemory()

Case $msg = $aboutitem
_About()

Case $msg = $exititem
_Quit()

EndSelect
WEnd

Func _TrimMemory()
_EmptyWorkingSet()
$loopCount = 0
EndFunc   ;==>_TrimMemory

Func _EmptyWorkingSet()
Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', -1)
Return $ai_Return[0]
EndFunc   ;==>_EmptyWorkingSet

Func _About()
Local $mMsg = @CRLF & "Chrome Blanker is a Hack for Chrome based Browsers on Windows." & @CRLF & @CRLF
$mMsg &= "It erases about:blank from the Adress Bar on Startup" & @CRLF & @CRLF
$mMsg &= "          Author:  MilesAhead"
MsgBox(0x1040, "Chrome Blanker", $mMsg)
EndFunc   ;==>_About

Func _Quit()
Exit
EndFunc   ;==>_Quit
5058
Newsbin 6 RC2 is available for download.

I've been using it all day.  Seems pretty solid.  Looks like a few tweaks needed such as W7 Taskbar Progress being related to actual download progress.  Seems to just light up and do stuff.  But you can disable it in NewsBinPro.nbi [settings]
5059
General Software Discussion / Chrome "about:blank" hack for Windows
« Last post by MilesAhead on June 10, 2011, 08:24 PM »
If you use "about:blank" in settings to get a chrome based browser to start with a blank page you may notice it comes up with "about:blank" in the Address Bar and the caret at the beginning of the line.  It forces you to delete about:blank before you can type in a url or search string.

This little AutoIt3 hack sits in the tray and watches for a window title starting with "about:blank" and window text that's also "about:blank"(the text in the Address Bar.)

If it gets a match it sends keys to remove about:blank allowing you to type stuff in right away.  The hack is an AutoIt3 script meaning it runs on Windows XP or later. You can get the AutoIt tools to run and/or compile the script here:
http://www.autoitscr...te/autoit/downloads/

This is just a hack until the Chromium guys get around to fixing it.


;  Chrome Blanker for Windows XP or later
;
;  For those who start a Chrome based browser
;  using about:blank to get a blank page.
;
;  This watches for "about:blank" in both the
;  window title and text(the address bar).
;
;  Removes about:blank from address bar.
;  This allows you to type in a url or
;  search string right away.
;
;  Author:  MilesAhead
;
$title = "about:blank"
$text = "about:blank"

_EmptyWorkingSet()

While 1
If WinGetTitle($title, $text) Then
If WinActivate($title, $text) Then
Send("{F6}")
Send("{Del}")
_EmptyWorkingSet()
ContinueLoop
EndIf
EndIf
Sleep(250)
WEnd

Func _EmptyWorkingSet()
Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', -1)
Return $ai_Return[0]
EndFunc   ;==>_EmptyWorkingSet

5060
General Software Discussion / Re: Shift Kicker 1.1.1.2
« Last post by MilesAhead on June 08, 2011, 06:58 PM »
Shift Kicker 1.1.1.2 Fixed bug in taskbar gap calculation. Merged all ahk source into one file. Source and custom icon included in download.

5061
General Software Discussion / Re: -1 for BrowserChooser
« Last post by MilesAhead on June 08, 2011, 06:05 PM »
If you use this kind of functionality very frequently something like Pick Browser may be the way to go.  I was looking for a way to come up with my own "default browser intercept" mechanism.  I didn't like the Registry mess involved so I took a different approach.

It's not strictly for browsers but a launcher that passes selected text to an application during launch.  You can add browsers just by dragging the shortcut to the Popup Window.

Say for example you an in Chromium but you see that page would work better in Firefox.  Highlight the address and hit the hotkey.  Double click Firefox in the listbox.  Firefox opens to the page.

Or if you are using a text editor that does not have link launch feature the way EditPad does.  Select the url text in the editor. Hit the hotkey, select the browser from the list.

You can add any shortcut, not just browsers.

Here's a screen shot:



It's also an alternative to SendTo since you can select a file in Explorer and hit the hotkey to pass that filename to any program in the list.

Edit: another cool thing you can do with it(that I often forget to use myself and just remembered) is select 2 folders in Explorer, hit the hotkey, launch FreeCommander or another file manager that accepts folders on the command line, it will open with a folder in each pane.

Edit2: afa using with FreeCommander it's ok if neither folder has a space in the path. It's really designed to pass one command line arg.  Has a go with "" to double quote the arg in case of spaces.  To pick off folders from Explorer to use with FreeCommander or Q-Dir HalfShell is better. It passes up to 4 folders to an alternate file manager, wrapping those with spaces with double quotes. Once set up all you need to do is hit Shift-Enter hotkey.

Selector is better for picking stuff out of text or a browser's address bar as noted earlier.


5062
General Software Discussion / Re: Shift Kicker 1.1.1.0
« Last post by MilesAhead on June 08, 2011, 03:59 PM »
I don't know how those artist guys do it with small images that look like something.  Usually I take the easy way out and put white letters on a teal background.  Even with the shifter if you look you'll see it's really IOU. It's way too frustrating trying to draw stuff with a mouse with the rubber ball inside.

The icon designers must use a joystick or something with more control.

Also I try to keep the KB low since it does sit in the tray and use memory.

If one of those free Vista icons seems appropriate I'll use it.  Like a big green Plus Sign for Skwire's "Harvest Time" (I use it as a stack Icon to help me pick it out of the jumble.)
5063
General Software Discussion / Re: Shift Kicker 1.1.1.0
« Last post by MilesAhead on June 07, 2011, 07:34 PM »
Shift Kicker 1.1.1.0 Changed custom icon. An artist I'm not.  But at least it's royalty free. :)

StickShift.png
5064
Bookmark Sentry
A bookmark scanner that checks for duplicate and bad links.
https://chrome.google.com...bmgnimogcmcdenggkpdmihlga

Last time I looked at it dupes weren't handled.  I'm getting dupes on bookmark sync so I'm gonna' give it another try.


Just ran it.  Seems to do a pretty good job on bookmark dupes, but not folder dupes.  Still, it saves a lot of time.  Now if it just fetched favicons!! :)
5065
Bookmark Sentry
A bookmark scanner that checks for duplicate and bad links.
https://chrome.google.com...bmgnimogcmcdenggkpdmihlga

Last time I looked at it dupes weren't handled.  I'm getting dupes on bookmark sync so I'm gonna' give it another try.
5066
General Software Discussion / Re: Shift Kicker 1.1.0.0
« Last post by MilesAhead on June 07, 2011, 04:44 PM »
Oh, and making that into an icon isn't that hard

Thanks for the links.  Actually I tried a few.  Usually doesn't look so great in the task tray though.  Too small for detail.
5067
General Software Discussion / Re: KeyDrive 2.2.0.0
« Last post by MilesAhead on June 07, 2011, 03:26 PM »
KeyDrive 2.2.0.0 Gap now adjustable via PercentGap .ini file option.
5068
Are you aware that your Adblock extension is not from the same folks who made the wonderful Adblock Plus for Firefox?

For that one you need to go here: Adblock Plus for Google Chrome (Beta)
Thanks didn't know :)

By the way technically you don't need flash block anymore, if you go to Options > Under the hood > Privacy Content Settings > Plugins Block All. Then you can enable instances by clicking on them or whitelist plugins/sites.

Nice tip. :)
5069
General Software Discussion / Re: Shift Kicker 1.1.0.0
« Last post by MilesAhead on June 07, 2011, 02:14 PM »
Good name  ;D
-cranioscopical (June 07, 2011, 09:37 AM)

I tried to find an icon for a muddy boot but no luck. :)
5070
General Software Discussion / Re: Shift Kicker 1.1.0.0
« Last post by MilesAhead on June 07, 2011, 03:55 AM »
Shift Kicker 1.1.0.0 Minor changes in dialogs and menus.  Mainly "ShiftKicker" displayed as 2 words.  Just easier to read.
5071
Will these extensions work with Chromium or Srware Iron ?
Or they are only for Google Chrome ?

Thanks
SKA

All the Chrome extensions I've tried have worked in Chromium.  Iron I've had some that wouldn't work because the folders are not what the extensions expect.  I think Chromium you have better compatibility than Iron.  But I haven't tried Iron in 6 months or so.

I've been using Chromium nightly builds. Currently I'm using 14.0.786.0.  The only problem I'm running into is bookmark sync dupes.
5072
General Software Discussion / Shift Kicker 1.1.1.7
« Last post by MilesAhead on June 07, 2011, 12:58 AM »
You may download this utility from my Hotkey Page

  ShiftKicker is a Tray Hotkey

  Install:  None.  Unzip to an empty folder.

  Uninstall:  Delete folder made above.

  Usage:  Hotkey sits in the task tray.  Hold down shift key
  while clicking the mouse on a Window's Maximize Button
  to "maximize" with a TaskBar Gap.

  Creates ShiftKicker.ini file in same folder as ShiftKicker.exe.
  The size of the gap next to the TaskBar can be set using
  the PercentGap ini file option.  This is the percentage of
  screen width or height depending on the location of
  the TaskBar.

  Note that this is a "hack" as it just resizes the maximized
  window.  Clicking again normally restores the window
  to its original position and size.

  For this to work with Explorer windows the Folder View
  option "show full path in address bar" should be enabled.
  TaskBar AutoHide option should be disabled.
5073
I use FlashBlock and am generally happy with it. The one feature I wish it had (which it may and I haven't found it yet) is to load *all* Flash objects on a page *one time only*/on-demand. Often times I find myself going to a site that has 5 or 10 *separate* Flash elements on it and having to click each one to enable is annoying, yet I may not want to white list the whole site permanently either. Maybe even a "temporarily white list this site" would be nice, so I could continue browsing the site that session even. Otherwise it's great though, no sudden Flash surprises! hehe.

- Oshyan

Thanks for the info.  Mostly I just want to screen out sudden noise as I mentioned. I don't watch online video very often.  Maybe Leo Laporte on Twit TV now and then. :)

I'll give it a try.
5074
Topic: 15+ useful Chrome Extensions you night not have heard of



Guess it applies to people who are only deaf in the dark.  :)

Damn spell check!! Almost all my typos are a word in the dictionary!! :)




5075
Anyone using FlashBlock? The most annoying thing to me is sudden loud audio.  Not that the animations are great, but the loud audio sure is a pita!!

Just wondering if users are generally satisfied.
Pages: prev1 ... 198 199 200 201 202 [203] 204 205 206 207 208 ... 309next