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, 8:31 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 ... 194 195 196 197 198 [199] 200 201 202 203 204 ... 309next
4951
Found Deals and Discounts / Re: MakeMKV beta 1.6.13
« Last post by MilesAhead on August 07, 2011, 05:56 PM »
MakeMKV beta 1.6.13  Change Log and download page

4952
The trouble with that approach is every new app that comes up that makes noise is going to have a separate control.  There's no way to anticipate it other than setting the max main volume control.

Since the most common offender is a browser going onto a page with sound that's spiked way up, that's where I'd concentrate the solution. It's been my experience even if you have the main volume control down very low, just enough to hear system sounds, the web pages are spiked so high they will blare at just about any setting. The place to disconnect them from the audio is in the browser(s).



4953
Right.  But as soon as you put the volume up to hear something, then forget about it, you get zapped again.

Plus getting the volume control to come up is a nuisance.  I'd look for an enhanced mixing app with more sophisticated settings if going that route.
4954
Vista/W7 has individual volume level and mute for each audio source, but only after it exists.  So web pages that blare sound still zap you before you can mute them. When going to pages I knew did this I used to mute all speakers until that browser showed up, then mute it only.  pita way of doing it though.

4955
Not exactly what you want but I've found it very useful for browsing.  I run Chromium snapshot on Windows.  You can download from here:
http://build.chromiu...omium/snapshots/Win/

I recommend the Win32 zip rather than installer.  It's easier to back it off if you get one with bugs(which are usually minor such as losing favicions on bookmarks.)

Click the Wrench then Options, Under the hood, next to Privacy click Content Settings.  For Plugins click Block All.  Now you don't get Sudden Loud Noise(tm) when you land on a page.  If I want to play a music sample such as on AllMusic.com, I right click the track and click "run this plugin."  Not perfect but better than sudden noise. Also the setting has a white list but I haven't tried it.

For other apps you may find something on Softpedia.com  They have tons of freeware.  Also try

http://alternativeto.net/

http://www.quixey.com/


4956
General Software Discussion / Re: Transpose 2.1.2.0
« Last post by MilesAhead on August 05, 2011, 02:01 AM »
Transpose 2.1.2.0 Change yet again.  Shift Middle Mouse Click for copy text to clipboard the timing is lousy.  I changed it to Winkey Click, hold down the Windows key while Left Clicking the Mouse. It just seems to fire more reliably and feels better.  Back tic key is still enabled.
4957
If your folder chain time stamp situation doesn't need repair and you just want to sync folders with subfolders, I've found the sync tool in FreeCommander very simple to use in 2 base folder sync scenario. What I mean is you don't have to sync one source folder with 20 destination folders.  You have a folder on the left and one on the right. Sync with or without recursive subfolder sync.  Before you commit it shows a window with a display of which files will be copied in which direction and allows you to remove items from the list.

edit: although if you have thousands of files it may be cumbersome.  Works well for my needs.
4958
General Software Discussion / Re: Transpose 2.1.1.0
« Last post by MilesAhead on August 03, 2011, 06:56 PM »
Transpose 2.1.1.0 Changed Middle Mouse Click in browser to copy selected text to clipboard, to Shift Middle Mouse Click.  I forgot why I didn't use Middle Click before. It conflicts with middle mouse button drag scroll used by some browsers.

At least with Shift Middle Mouse Click you don't have to pull the left hand off Home Row of the keyboard.  Those who like back tic key can still use it.
4959
General Software Discussion / Re: Transpose 2.1.0.0
« Last post by MilesAhead on August 03, 2011, 03:51 PM »
Transpose 2.1.0.0 Added Middle Mouse Click to back tic key in supported browsers as means to copy selected text to clipboard. IOW, you can either press back tic key or use the middle mouse button click to copy selected text to clipboard.  See About Box for list of browsers supported.

Window class names are used to detect windows.  Firefox 4 is supported.  But I'm not going to chase down every version number update to see if they change the class name for the window.  At least not until they stop coming out with a new version a week. :(


Middle Mouse Click still works as Double-Click in Explorer windows.

4960
Finished Programs / Re: IDEA: Make folder with current date
« Last post by MilesAhead on August 02, 2011, 05:16 PM »
I took a look at the registry approach. I don't like to use registry unless it gives some big benefit, such as allowing a program to process all files in a folder or all selected files. Also for me right click usually slows me down.  SendTo is OK for some things though.  But everyone has their own prerferences.

I was being just a bit facetious. I have a tough time with AHK, esp. string handling. After some struggle I figured out how to append the date name onto the current folder or paste in the desktop. For desktop I cheat and just use a bunch of Send marcros. :) It all happens with one key press.



The new DatePaste.ahk

/*
 * * * Compile_AHK SETTINGS BEGIN * * *

[AHK2EXE]
Exe_File=%In_Dir%\DatePaste.exe
No_UPX=1

* * * Compile_AHK SETTINGS END * * *
*/

; AutoHotkey Script Template for MilesAhead
#SingleInstance force
#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.
#Include MilesAhead.ahk
progname := _FileBaseName(A_ScriptFullPath)
Menu Tray,NoStandard
Menu Tray,Add,Donate,DoDonate
Menu Tray,Add,Visit Hotkey Page,DoVisit
Menu Tray,Add,About,DoAbout
Menu Tray,Add
Menu Tray,Add,Quit,DoQuit
Menu Tray,Default,About
if (A_IsCompiled)
  Menu Tray,Icon,%A_ScriptFullPath%,1
Menu Tray,Tip,%progname%

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

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

Hotkey, IfWinActive, ahk_Group DesktopGroup
Hotkey,%carg%,DoHotKey,UseErrorLevel
If ErrorLevel
{
  MsgBox, 4112, %progname%, %carg% is not a valid Hotkey
  ExitApp
}
_EmptyWorkingSet()
Return

; Create folder with Date as name
DoHotKey:
WinGetTitle,title,A
FormatTime, DateString,A_Now,yyyyMMdd
;MsgBox, 4160, , Window Title is: %title%, 2
if (title = "Program Manager")
{
Send {RButton}
Sleep,10
Send w
Sleep,10
Send f
Sleep,10
Send %DateString%
Send {Enter}
}
else
{
StringRight,lastchar,title,1
if (lastchar != "\")
fname := title . "\" . DateString
else
fname := title . DateString
FileCreateDir,%fname%
if errorlevel
MsgBox, 4112, , Creation of Folder: %fname% Failed!
}
_EmptyWorkingSet()
Return

DoAbout:
  FileGetVersion,filever,%progname%.exe
  MyMsg =
  (
%progname% v %filever% Copyright (c) 2011 www.FavesSoft.com`n
While Desktop or Explorer Window is active`n Press %carg% to create a folder with Date as name`n
Specify another hotkey on command line if desired`n
  )
  MsgBox, 4160, About %progname%, %MyMsg%
Return

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

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

DoQuit:
  ExitApp
4961
Finished Programs / Re: IDEA: Make folder with current date
« Last post by MilesAhead on August 01, 2011, 01:37 PM »
I don't think you can specifically put an entry in Shell New for a folder without displacing the default New Folder.

What I have is an AHK hotkey to paste the date in the desired format.

Let it sit in the tray.  Use the New => Folder menu in Explorer as usual.  This creates a folder named New folder with the "New folder" text selected.  Press F10 and the date will be pasted in as the name.

You can change the hotkey by specifying another on the command line of DatePaste.

I'm supplying the source. If you wish to change the date format you can either change it in the source or add code to read from .ini file.

It includes a file of general purpose routines named MilesAhead.ahk.

Note that I'm using the latest release of AutoHotkey_L 32 bit unicode to compile.

I think it should compile with plain vanilla ahk, but if you have an issue try the _L version.

DatePaste.ahk

/*
 * * * Compile_AHK SETTINGS BEGIN * * *

[AHK2EXE]
Exe_File=%In_Dir%\DatePaste.exe
No_UPX=1

* * * Compile_AHK SETTINGS END * * *
*/

; AutoHotkey Script Template for MilesAhead
#SingleInstance force
#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.
#Include MilesAhead.ahk
progname := _FileBaseName(A_ScriptFullPath)
Menu Tray,NoStandard
Menu Tray,Add,Donate,DoDonate
Menu Tray,Add,Visit Hotkey Page,DoVisit
Menu Tray,Add,About,DoAbout
Menu Tray,Add
Menu Tray,Add,Quit,DoQuit
Menu Tray,Default,About
if (A_IsCompiled)
  Menu Tray,Icon,%A_ScriptFullPath%,1
Menu Tray,Tip,%progname%


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

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

Hotkey, IfWinActive, ahk_Group DesktopGroup
Hotkey,%carg%,DoHotKey,UseErrorLevel
If ErrorLevel
{
  MsgBox, 4112, %progname%, %carg% is not a valid Hotkey
  ExitApp
}
_EmptyWorkingSet()
Return

DoHotKey:
  FormatTime, DateString,A_Now,yyyyMMdd
  ClipSaved := ClipboardAll ; save entire clipboard
  Clipboard =
  Send ^c
  Clipwait,0
  if (Clipboard = "New folder")
  {
    Send %DateString%
    Send {Enter}
  }
  Clipboard := ClipSaved
  ClipSaved = ; free memory
Return

DoAbout:
  FileGetVersion,filever,%progname%.exe
  MyMsg =
  (
%progname% v %filever% Copyright (c) 2011 www.FavesSoft.com`n
After creating a new folder press %carg% to paste the date as name`n
Specify another hotkey on command line if desired`n
  )
  MsgBox, 4160, About %progname%, %MyMsg%
Return

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

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

DoQuit:
  ExitApp

MilesAhead.ahk

;
; MilesAhead include script with a few system related functions
;

; returns non 0 if program is running
_IsRunning(program)
{
Process,Exist,%program%
Return errorlevel
}

_LoWord(arg)
  {
    Return arg & 0xFFFF
  }

_HiWord(arg)
  {
    Return arg >> 16
  }

_LoByte(arg)
  {
    Return arg & 0x00FF
  }

_HiByte(arg)
  {
    Return (arg & 0xFF00) >> 8
  }

_WinVersionMajor()
  {
    Return _LoByte(_LoWord(DllCall("kernel32.dll\GetVersion", "UInt", -1)))
  }

_WinVersionMinor()
  {
    Return _HiByte(_LoWord(DllCall("kernel32.dll\GetVersion", "UInt", -1)))
  }

_WinVersion()
  {
    dwVersion := DllCall("kernel32.dll\GetVersion", "UInt", -1)
    Return _LoByte(_LoWord(dwVersion)) . "."
    . _HiByte(_LoWord(dwVersion))
  }

;call EmptyWorkingSet in AHK
_EmptyWorkingSet()
  {
    Return DllCall("psapi.dll\EmptyWorkingSet", "UInt", -1)
  }

;reduce memory footprint by calling EmptyWorkingSet
_ReduceMemory()
  {
    If _WinVersionMajor() > 4
    {
      Return _EmptyWorkingSet()
    }
    Return false
  }

;function by HotKeyIt on AHK forums
FormatMessageFromSystem(ErrorCode)
  {
    VarSetCapacity(Buffer, 2000)
    DllCall("FormatMessage"
            , "UInt", 0x1000      ; FORMAT_MESSAGE_FROM_SYSTEM
            , "UInt", 0
            , "UInt", ErrorCode
            , "UInt", 0x800 ;LANG_SYSTEM_DEFAULT (LANG_USER_DEFAULT=0x400)
            , "UInt", &Buffer
            , "UInt", 500
            , "UInt", 0)
    VarSetCapacity(buffer,-1)
    Return Buffer
  }

_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
  }

_MarginWorkArea(ByRef left, ByRef top, ByRef right, ByRef bottom, ByRef margin = 4)
  {
    If _GetWorkArea(left, top, Right, Bottom)
    {
      If Margin is Integer
      {
        If (Margin < 0) or (Margin > 12)
          Margin := 4
      }
      Else
        Margin := 4
      left += Margin
      top += Margin
      Right -= Margin
      Bottom -= Margin
      Return 1
    }
    Return 0
  }

_TaskbarGapArea(ByRef left, ByRef top, ByRef right, ByRef bottom,  percentgap = 5)
{
  _GetWorkArea(left, top, right, bottom)
  If (right - left = A_ScreenWidth) And (bottom - top = A_ScreenHeight)
  {
    Return
  }
  Else If (bottom < A_ScreenHeight)
  {
    bottom -= (bottom // 100 * percentgap)
  }
  Else If (top > 0)
  {
    top += (bottom - top) // 100 * percentgap
  }
  Else If (left > 0)
  {
    left += (right - left) // 100 * percentgap
  }
  Else
 {
    right -= (right - left) // 100 * percentgap
 }
}

_GlassEnabled()
  {
    isEnabled = false
    If _WinVersionMajor() < 6
    {
      Return false
    }
    DllCall("dwmapi.dll\DwmIsCompositionEnabled", "UInt", &isEnabled)
    Return %isEnabled%
  }

_EnableBlurBehind(hwnd)
  {
    VarSetCapacity(struct, 16, 0)
    NumPut(1, struct, 0, "UInt")Â  ; dwFlags=DWM_BB_Enable
    NumPut(1, struct, 4,  "Int")  ; fEnable=TRUE
    DllCall("dwmapi.dll\DwmEnableBlurBehindWindow", "UInt", hwnd, "UInt", &struct)
  }

;returns string, wrapped in quotes when conataining spaces
_WrapQuotes(str)
  {
    If InStr(str," ")
    {
      str := """" . str . """"
    }
    Return str
  }

_FileBaseName(path)
  {
    SplitPath,path,,,,basename
    Return basename
  }

_FileDir(path)
  {
    SplitPath,path,,fdir
    Return fdir
  }

_FileDirWithSlash(path)
  {
    Return _FileDir(path) . "\"
  }

_KillOtherCopies()
{
local nkilled := 0
if !A_IsCompiled
return
PID := DllCall("GetCurrentProcessId")
for proc in ComObjGet("winmgmts:").ExecQuery("Select * from Win32_Process")
    if (proc.Name = A_ScriptName) && (proc.ProcessID != PID)
{
PPID := proc.ProcessID
;MsgBox, 4160, , Killing %PPID%, 2
Process,close,%PPID%
nkilled += 1
}
return nkilled
}

_CheckForUpdate(url="http://www.favessoft.com/",ininame="FavesVersions.ini")
  {
    urlfile := url . ininame
    localfile := A_ScriptDir . "\" . ininame
    param := _FileBaseName(A_ScriptFullPath)
    If (FileExist(localfile))
    {
      FileDelete,%localfile%
    }
    ;MsgBox, 4160, , localfile is %localfile%
    URLDownloadToFile,%urlfile%,%localfile%
    If ErrorLevel
    {
      MsgBox, 4112, %param%, Server access failed!
      Return
    }
    IniRead,onlinever,%localfile%,Versions,%param%,%A_Space%
    IniRead,zipfile,%localfile%,Downloads,%param%,%A_Space%
    FileGetVersion,localver,%A_ScriptFullPath%
    If localver =
    {
      MsgBox, 4112, %param%, local Version Info Not Found!
      Return
    }
    If onlinever =
    {
      MsgBox, 4112, %param%, Online Version Info Not Found!
      Return
    }
    ;MsgBox, 4160, URLDown Online Verson, %onlinever%
    ;MsgBox, 4160, URLDown local Verson, %localver%

    If (onlinever > localver)
    {
      If zipfile =
      {
        MsgBox, 4112, %param%, Could not determine Download Filename!
        Return
      }
      MsgBox, 0x1024, %param%, Current Version is %localver% : Download %onlinever% ?
      IfMsgBox Yes
      {
        urlfile := url . zipfile
        ziplocalfile := A_ScriptDir . "\" . zipfile
        URLDownloadToFile,%urlfile%,%ziplocalfile%
        If ErrorLevel
        {
          MsgBox, 4112, %param%, Download attempt failed!!
          Return
        }
        Run,%ziplocalfile%
        Run,%A_ScriptDir%
        If (FileExist(localfile))
        {
          FileDelete,%localfile%
        }
        ExitApp
      }
    }
    Else
    {
      MsgBox, 4160, %param%, %localver% is the Latest Version
    }
    If (FileExist(localfile))
    {
      FileDelete,%localfile%
    }
    Return
  }
4962
AutoHotkey / Re: Preventing fullscreen and getting back when that's failed
« Last post by MilesAhead on July 30, 2011, 05:28 PM »
Sometimes it's just easier to send some keys or clicks. AutoIt3/AHK is handy then.

I've been waiting years for FreeCommander file manager to add a /Layout=n command line switch so I could open it to a combination of tabbed folders.

In the meantime I use an AutoIt3 app that launches it, waits for it to be active, then Sends Alt-1 to open the top Layout. Kludge but it works.
4963
It takes some getting used to, but I think it's quite useful :Thmbsup:

Much easier once I set bbc to the top of the list. :)

Edit: if there's on thing that's annoying is browser crash in the middle of an edit. :(
4964
AutoHotkey / Re: Preventing fullscreen and getting back when that's failed
« Last post by MilesAhead on July 28, 2011, 01:03 PM »
Generally speaking it's a good practice to create a test stub.  Or in this case it may be suitable for a separate app.  Just create a script with

isWindowFullScreen(WinID)

function at the bottom and the
!Enter::

hotkey at the top,
until you get the feel of it, rather than sticking it into another script.
Get the simplest case working first before adapting it.
4965
I would search on Version Control System or Document Control System. In software development when you want to edit source code from the depository you have to "check out" the file(s) then check them back into the system when done.  The system handles the version control.  I haven't used a DCS but I assume it's a similar scheme.  The version tree branches when incompatible changes are made.  You can always go back and retrieve an old version from the database.
4966
AutoHotkey / Re: Preventing fullscreen and getting back when that's failed
« Last post by MilesAhead on July 28, 2011, 12:14 PM »
I would try commenting out the IfWinActive.  The hotkey should be global.

You are right about the function.  I'm on Win7 and if I do Alt Enter in a command prompt it tells me it's not supported. So I can't test the script.

Commenting out IfWinActive would be the first thing to try.
Also posting on AHK forum would get programmers with a lot more AHK experience than I have. I mainly use it if I need mouse hotkey support. I'm still a novice afa AHK goes. :)
4967
AutoHotkey / Re: Preventing fullscreen and getting back when that's failed
« Last post by MilesAhead on July 27, 2011, 04:42 PM »
From AHK Forum search:
http://www.autohotke...ect+full+screen+mode

animeaime's post in the thread

Ok. This should. I remember how NiftyWindows would always suspend on a full screen program. So, this should do the job. Use WinExist (or some other means) to get the Unique ID (HWND) of the desired window.

isWindowFullScreen(WinID)
{
    ;checks if the specified window is full screen
    ;code from NiftyWindows source
    ;(with only slight modification)

    ;use WinExist of another means to get the Unique ID (HWND) of the desired window

    if ( !WinID )
        return

    WinGet, WinMinMax, MinMax, ahk_id %WinID%
    WinGetPos, WinX, WinY, WinW, WinH, ahk_id %WinID%

    if (WinMinMax = 0) && (WinX = 0) && (WinY = 0) && (WinW = A_ScreenWidth) && (WinH = A_ScreenHeight)
    {
        WinGetClass, WinClass, ahk_id %WinID%
        WinGet, WinProcessName, ProcessName, ahk_id %WinID%
        SplitPath, WinProcessName, , , WinProcessExt

        if (WinClass != "Progman") && (WinProcessExt != "scr")
        {
            ;program is full-screen
            return true
        }
    }
}


edit: I haven't tried it but according to the help you can get the handle of the active window like this:  WinExist("A")

so isWindowFullScreen(WinExist("A")) should return true if the active "window" is in full screen mode.  At least for single monitor systems anyway.

If it returns true just Send the !{Enter}.  If not just eat the key combo.

!Enter::
  If isWindowFullScreen(WinExist("A"))
    Send, !{Enter}
  else
    ; send something else or just eat the keys
return

 
4968
General Software Discussion / MakeDiscDir 1.0.0.0
« Last post by MilesAhead on July 26, 2011, 01:43 PM »
MakeDiscDir 1.0.0.0 Command line utility to create empty folders for CD box sets.

You may download from this page:

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

Should run on XP and later flavors of Windows.

Usage: MakeDiscDir N (N > 0 and N < 100)

Basically it just saves some typing.

Example: MakeDiscDir 20 will produce empty
  folders in the current directory named
  D01 D02 .. D20 up to D99 padded with 0
  if needed to sort correctly in Explorer.

See the Readme for details

4969
move my copy to a new machine without having to purchase a new license?
Yep, I did that before, and all it wants is the Plus code. It's a lifetime license after all :up:

It's not only can move to another machine. It's as many PCs as you own personally.  Go to the site. I think you'll find I'm right.  Sandboxie has the same license if my memory serves.
4970
General Software Discussion / Re: TopmostToggle 1.7.0.0
« Last post by MilesAhead on July 24, 2011, 10:02 PM »
TopmostToggle 1.7.0.0 Fixed Atl-Tab visibility bug.
4971
General Software Discussion / Re: TopmostToggle 1.6.1.0
« Last post by MilesAhead on July 24, 2011, 04:39 PM »
TopmostToggle 1.6.1.0 Now double clicking Tray Icon shows About Box.
4972
cyberdiva
I'm astonished at the number of programs that put themselves into the startup menu without asking.  In the majority of cases, it's absolutely unnecessary that the program start when Windows does.

I remember for awhile it was the fad to try to stick an "agent" in the start up so that when you ran the associated program it snapped up.  Since the core was already running in the tray it made it seem more responsive, at the expense of every other app on the machine.  A few still try to pull this trick.  Lame way to "optimize" your program's start up speed.


4973
I don't run real-time av prophylactics.  Interferes too much with the operation of the machine.  I use utilities that I can turn on and off such as Sandboxie, WinPatrol etc..
Also I have multiple image backups, use restore points etc..

(I do occasional video encodes and most authors won't talk to you about a problem encoding if you even have av running while encoding. It's just too intrusive.)

As far as Plus vs. Free, since I got it on a big discount I figured I'd support the Author.  For what I use Free is just as good.  I mainly like that it notifies me of some installer sticking on a BHO or putting some auto start on that I didn't ask for.

The other main feature is I occasionally stick something in startup delay. Again it's in the free but I figured since I could support the author without forking out the whole enchilada I went for it. :)
4974
General Software Discussion / Re: Chromium 14.0.832.0 Build 93800
« Last post by MilesAhead on July 23, 2011, 05:34 PM »
Speed Dial was fun but it just bogs an otherwise screaming fast browser!

You know that Chrome has it's own Speed-Dial-like New Tab page that you can set as your home page?

I've resolved the issue.  I have it open to about:blank.  That keeps it from bogging even on a busy HD.  Then I have Home Button and New Tab both open Speed Dial extension.  Works fine.  The only thing I don't like is the browser opens with "about:blank" in the address bar.  I and others posted a request to have it come up blank to make it easier to type searches.

What I'm doing as work-around uses a macro to blank the line when it sees Chromium come up. Just an AutoIt3 that sends F4 then Del when it sees a Chromium window with about:blank text.

4975
General Software Discussion / Re: Chromium 14.0.832.0 Build 93800
« Last post by MilesAhead on July 23, 2011, 02:16 PM »
Chromium 14.0.832.0  Build 93800 I just downloaded this now.  There was only one issue mentioned in change log so I'm giving it a try. Only thing I see different immediately is there's a head on the caption bar.  Guess it's supposed to be a quick way to set or change profiles. I don't use profiles anyway so it's either take it off(which is probably not possible) or learn to ignore it.

So far my favicons haven't disappeared. With only one tab open it shows six instances of chrome.exe which seems about the usual.

http://build.chromiu...omium/snapshots/Win/
Pages: prev1 ... 194 195 196 197 198 [199] 200 201 202 203 204 ... 309next