Hello,
Here is a tip that I use daily and which saves me a lot of time and troubles.
The idea : I read many articles online and I have the habit to save them (I used "CTRL+S"+"Enter" before).
I need to
do it fast (only one mouse gesture and a click).
And when I do my backup archives once a month (zip files saved on dvds and hard drives), I need to
avoid errors later (usually during unzipping when I have some small files with path longer than the 260 characters limit on Windows Xp see
here).
Here is the setting part (this is a little long but it saves so much time later ) :You need :
- Firefox
- and these two Firefox addons :
Imacros
http://www.iopus.com...s/firefox/?ref=fxmozFireGestures
http://www.xuldev.org/firegestures/1) create 2 new imacros files (adapt the path "C:\.." to your own saving folder path) :
01autosaveclose.iim
VERSION BUILD=6240709 RECORDER=FX
TAB T=1
SAVEAS TYPE=CPL FOLDER=C:\Users\David\Desktop\savingfolder\OT FILE={{!NOW:yyyymmdd_hhnnss}}
TAB CLOSE
02autosave.iim
VERSION BUILD=6240709 RECORDER=FX
TAB T=1
SAVEAS TYPE=CPL FOLDER=C:\Users\David\Desktop\savingfolder\OT FILE={{!NOW:yyyymmdd_hhnnss}}
2) (once imacro module openned) right click on 01autosaveclose.iim (same for 02autosave.iim) and "add to bookmark"
3) right click on your new firefox bookmarks (see "bookmarks" menu at the top of firefox) and add a shortcut (right click on the bookmark + left click on "property")
For first bookmark, I advise the keyword : 01autosaveclose
For second bookmark , I advise the keyword : 02autosave
4) open Firegestures options, go into the second tab called "Mapping" [note: before you may have to remove gestures "D" (= "down") and "L" (= "left") if they are already used]. Then choose, "add a script".
name : 01autosaveclose
script :
loadURI(getShortcutOrURI('01autosaveclose',{}));getShortcutOrURIAndPostData('01autosaveclose').then(function(result) {
loadURI(result.url);
});
gesture : D
Do the same for another script :
name : 02autosave
script :
loadURI(getShortcutOrURI('02autosave',{}));getShortcutOrURIAndPostData('02autosave').then(function(result) {
loadURI(result.url);
});
gesture : L
Results :Right click on your mouse + down mouse gesture = autosave current htm(l) page + close it
Example : file saved : "20100820_095428.htm" (date and time) + corresponding folder name including images,etc...
or
Right click on your mouse + left mouse gesture = autosave current htm(l) page (without closing it)
Hope this helps