Monday, October 25, 2004

Sarah's Windows Tweak: Customize Windows Explorer

G4techTV - Feature - Sarah's Windows Tweak: Customize Windows Explorer

written by Sarah Lane on Thursday, July 08, 2004

Customize Windows Explorer to your liking
I've gotten about five million complaints from folks who just hate how Windows Explorer opens in the My Documents folder by default. So today I'll show you an easy way to change that.

First, locate the shortcut that launches Windows Explorer. If you don't have one, go to Start/Programs/Accessories/Windows Explorer and create a shortcut on your desktop. Now, right-click the new shortcut and choose Properties. Click on the Shortcut tab at the top. In the target field, add " /e," to the end of the string (without the quotes). In other words, space, forward slash, the letter e, comma to the end of the current string. At this point, add your destination of choice to the end of the string addition you just added, without any extra spaces.

For example:
" /e,C:\Windows" will open up C:\Windows.
" /e,E:\Sarah's Rollercoaster Pics" will open up that pic folder on my E drive.

Let's say you prefer to launch Windows Explorer via keyboard shortcuts. Right-click the shortcut again and choose Properties. Under the shortcut tab, there is a field called Shortcut Key. It's set to none by default. You can modify it as long as the first two keystrokes are "Control+Alt". I modified mine by clicking in the field and typing "E". It will automatically convert the E into "control+alt+E". You can use any letter you want, as well as many other standard keys.

Now, let's say you prefer to launch Windows Explorer from your Quick Launch toolbar. All you have to do is right-click the current shortcut sitting in your Quick Launch toolbar and delete it. Now, take the shortcut on your desktop we've just modified and drag it into your Quick Launch toolbar. Voila! Now your Quick Launch shortcut for Windows Explorer is updated with your new properties.


Sunday, October 24, 2004

Alternatives

Adobe Photoshop - Alternative: The GIMP - http://gimp.org/

MS Office - Alternative: ABI WORD - http://www.abisource.com/

Adobe Illustrator - Alternative: KARBON14 - http://koffice.org/

WinZip - Alternative: IZARC - http://www.izsoft.dir.bg/

Norton AntiVirus - Alternative: AVG - http://www.grisoft.com/us/us_index.php

Thursday, October 07, 2004

Akiyoshi's illusion pages

Monday, October 04, 2004

: Snoop Dogg - Tha Shizzolator :.

HTML Automatically Putting the Cursor in a Field - HTML Code Tutorial

HTML Automatically Putting the Cursor in a Field - HTML Code Tutorial


Found @ : http://www.faqs.org/docs/htmltut/forms/index_famsupp_97.html

name:
email:
This page demonstrates a technique for automatically putting the cursor into an input field as soon the page is loaded.

Let's suppose you want the user to go directly to the following form. Notice that we set the names for the form and the field.


name:

email:



We can set the focus immediately by adding an onLoad attribute to the tag. Notice that the word focus must be followed by open and close parentheses: ():


It's worth taking moment to consider if it's such a such a good idea to set the focus to a form field immediately. I'm always hesitant to change the default behavior of the browser. However, in some situations it makes sense, such as if your form is in a popup-window and there is little else in the popup to interact with. (See Popup Window Tutorial for more details on popups.)