topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 11:33 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - wjamoe [ switch to compact view ]

Pages: prev1 2 3 [4]
76
That would require to reshuffle code, and will take more time to program and a lot more testing to find out what the heuristics are within the search engines. The engines probably all differ in that respect to identify robots and alike.
Current solution suffices for me, sorry...:-[

77
My list contains 600 items, ms will block after about 30 results.


I added a time.sleep(60) command in TSearch.py (and had to import time) to fool the (b i n g) search engine.

Each input line takes 60 seconds, it makes the script more human.....

So I don't have to enter lost of  subselections (600=20x30 input items)  :D



See both changes in the code below between the line with ======== on it

Code: Python [Select]
  1. #-------------------------------------------------------------------------------
  2. # imports we need
  3. # include top level directory (needed to import from helper below)
  4. import sys
  5. import os
  6. #201302 wjamoe added import time ===================================
  7. import time
  8. #=============================================================

Code: Python [Select]
  1. def DoSearch(self,id,label,search):
  2.         # this function does the main work -- take a search term
  3.         # return a list of results
  4.         results = []
  5.  
  6.         #initialize result with engine name and id
  7.         baseresult = {"engine":self.get_searchenginename()}
  8.         if id!="":
  9.             baseresult["id"]=id
  10.         if label!="":
  11.             baseresult["label"]=label
  12.  
  13.         # ok grab a web page using our search terms
  14.         content = self.SearchWebPageGrabContents(search)
  15.  
  16.         # and now parse results
  17.         addresults = self.ParseWebPageContentIntoResults(search,content,baseresult)
  18.         #201302 wjamoe added delay of 60 seconds =============================
  19.         time.sleep(60)
  20.         #=============================================================
  21.         # add
  22.         results.extend(addresults)
  23.         # return
  24.         return results

The testrun for 2 items takes 120 seconds  :(

wiem

78
Find And Run Robot / Re: Feedback
« on: November 16, 2012, 01:30 PM »
it is possible to type

  cpanel network connections

or something shorter like

  cpanel nwc

IMHO the latter looks more compact than  'network connections',
it works because nwc matches network connections

79
if you press cursor left key, you return to the text edit field, does that help?

80
FARR Plugins and Aliases / Re: farr gmail google mail plugin
« on: October 03, 2012, 12:33 PM »
great! :D Thanks for your perseverance.

I'll update the zip file (fscript.dll) of the first post and put the fsubscript version also there.

I've updated the gmail.zip file in the first post

81
FARR Plugins and Aliases / Re: farr gmail google mail plugin
« on: October 02, 2012, 01:57 PM »
fscript2 is something different. this plugin requires fsubscript.

82
FARR Plugins and Aliases / Re: farr gmail google mail plugin
« on: September 30, 2012, 01:59 PM »
tomos,
somehow the same problem occurs now on my computer with the latest farr.

I prepared (earlier) some alternative files which use fsubscript see posts on Farr forum.
    https://www.donationcoder.com/forum/index.php?topic=15686.0
you need to install fsubscript in the plugin folder first, it comes with several aliasses which you can enable/disable using fssc command
clear the old gmail folder and copy the following files from the zipfile   to the gmail folder
fsubscript.js
gmail.ico

83
FARR Plugins and Aliases / Re: farr gmail google mail plugin
« on: September 30, 2012, 09:20 AM »
1) there are no advanced options
2) that should not happen, maybe because of the override string (conflict with yahoomail)
     the override string yhm should not be there, please clear that field
3) the webbrowser will ask for your details (in the farr window)
 

84
[request] can you add an option to rearrange the order of the Find and Replace patterns?

Changing / moving the order of the entries in Find and Replace are not registered.

I was trying a very simple html to wiki format converter

e.g. remove htmltags
in first Find and Replace
<[^>]*>
select en cut pattern, disable entry

paste this pattern
in 4th Find and Replace
<[^>]*>

fill pattern in first/top Find and Replace
<li>
*

Original find and replace pattern in 1st Find and Replace is still executed when enabled?
when I enable 1st entry it still removes html tags: "<[^>]*>"

Moved pattern on 4h entry is ignored when enabled.
It does not replace the html list items <li> into *


85
Clipboard Help+Spell / Re: Image Pasting Issue
« on: September 30, 2012, 07:41 AM »
by unchecking PNG image optimization the image stays the same size.

you can find this option here:
View>Options>Image Capture> [ ] Save as PNG not BMP (same quality, much less disk space)



86
FARR Plugins and Aliases / Re: farr gmail google mail plugin
« on: September 30, 2012, 05:42 AM »
normally you use farr for finding programs and files
if you have a google mail account (you can create one for free)
with this plugin you can access your inbox without having to open your browser.

just copy the files to the plugin folders as described.
then you can enter the command gmail

you'll see your (web)gmail inbox (sometimes you see the gmail log in webpage first)
now you can read, search, create, and delete messages.

do you need more info

87
Find And Run Robot / Re: FARR V2 core alias tables
« on: August 29, 2012, 03:37 PM »
For those like me, who don't remember all core aliases containing websearches
I made a single alias containing all the web searches.

For a complete list of all the available searches type @ followed by space followed by one or more searchwords e.g.
@ donationcoder
use PgDn to scroll beyond the visible list.

To group some of the searches I added categories to the searches.
@web, @ref, @image, @movie, @music, @shop, @software, @torr

If you want to limit the list of web sites in the result window of farr type something like e.g. only image searched
@image donationcoder
or
@img donationcoder
Please note that the list of wesites appears after pressing space. because of: ( ^(|[a-z]) (.*) )

For all google related websearches type
@ggl  donationcoder farr yhm

For searching @movie youtube you can type. Everything after the first space is considered to be the search string
@mvyt walk somebody
or
@ytu walk somebody

Copy the text below and  (right click) import formatted Alias/Group in myaliases.alias

Enjoy! :D

NB I tested most entries, but some search sites will evolve/change and the URL search string for that site stops working,
please upload your updated version of alias when you have found an error, thanks

Code: Text [Select]
  1. 1000>>>@>->>n>@web Google - $$2 | http://www.google.com/search?q=$$2 /ICON=icons\google.ico>n>@web Yahoo - $$2 | http://search.yahoo.com/search?fr=robo&ei=UTF-8&p=$$2 /ICON=icons\yahoo.ico>n>@web Ask - $$2 | http://web.ask.com/web?q=$$2 /ICON=icons\ask.ico>n>@web bing/MSN - $$2 | http://search.msn.com/results.asp?q=$$2 /ICON=icons\msn.ico>n>@web AltaVista/yahoo - $$2 | http://www.altavista.com/web/results?q=$$2 /ICON=icons\altavista.ico>n>@web AllTheWeb/yahoo - $$2 | http://www.alltheweb.com/search?cs=utf-8&q=$$2 /ICON=icons\alltheweb.ico>n>@web GoogleGroups - $$2 | http://groups.google.com/groups?q=$$2&sa=N&tab=wg /ICON=icons\google.ico>n>@web Omgili Forum - $$2 | http://www.omgili.com/omgili.search?q=$$2 /ICON=icons\omgili.ico>n>@web Technorati Blog - $$2 | http://technorati.com/search/?return=posts&q=$$2 /ICON=icons\technorati.ico>n>@web Google Blog - $$2 | http://blogsearch.google.com/blogsearch?q=$$2&hl=en /ICON=icons\google.ico>n>@web WolframAlpha $$2 = | http://www.wolframalpha.com/input/?i=$$2>n>@Ref Encyclopedia.com - $$2 | http://www.encyclopedia.com/searchresults.aspx?q=$$2 /ICON=icons\encyclopedia.ico>n>@Ref S9.com biography search - $$2 | http://www.s9.com/Search?sid=$$2 /ICON=icons\s9.ico>n>@Ref A9 - $$2 | http://a9.com/?q=$$2 /ICON=icons\a9.ico>n>@Ref Reference.com - $$2 | http://www.reference.com/search?q=$$2 /ICON=icons\reference.ico>n>@Ref Brainboost - $$2 | http://brainboost.com/search.asp?Q=$$2&Submit=Ask /ICON=icons\brainboost.ico>n>@Ref Answers.com - $$2 | http://www.answers.com/$$2 /ICON=icons\answers.ico>n>@Ref Britannica.com - $$2 | http://www.britannica.com/search?query=$$2&ct= /ICON=icons\britannica.ico>n>@Ref Encarta.com - $$2 | http://encarta.msn.com/encnet/refpages/search.aspx?q=$$2 /ICON=icons\encarta.ico>n>@Ref Wikipedia $$2 | http://en.wikipedia.org/wiki/Special:Search?search=$$2 /ICON=icons\wikipedia.ico>n>@Ref Clusty Wikipedia $$2 | http://clusty.com/search?v%3aproject=clusty-encyclopedia&query=$$2 /ICON=icons\clusty.ico>n>@Ref Futef Wikipedia $$2 | http://futef.com/search?query=$$2 /ICON=icons\futef.ico>n>@Ref Qwika Wikipedia $$2 | http://www.qwika.com/?q=$$2>n>@Ref fileinfo File Extension Seeker (Example: txt) - $$2 | http://file-extension.net/seeker/file_extension_$$2 /ICON=icons\file_ext_seeker.ico>n>@Ref Meriam Webster Dictionary - $$2 | http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=$$2 /ICON=icons\m-w.ico>n>@Ref Dictionary.com - $$2 | http://dictionary.reference.com/search?q=$$2 /ICON=icons\reference.ico>n>@Ref AskOxford Dictionary - $$2 | http://www.askoxford.com/results/?view=dict&freesearch=$$2&branch=13842570&textsearchtype=exact /ICON=icons\oxford.ico>n>@Ref American Heritage - $$2 | http://www.bartleby.com/cgi-bin/texis/webinator/ahdsearch?search_type=enty&query=$$2&db=ahd&Submit=Search /ICON=icons\bartleby.ico>n>@Ref OneLook Dictionary - $$2 | http://www.onelook.com/?w=$$2&ls=b /ICON=icons\onelook.ico>n>@Ref FreeThesaurus.net - $$2 | http://www.freethesaurus.net/s.php?q=$$2 /ICON=icons\freethesaurus.ico>n>@Ref Meriam Webster Thesaurus - $$2 | http://www.m-w.com/cgi-bin/thesaurus?book=Thesaurus&va=$$2 /ICON=icons\m-w.ico>n>@Ref Thesaurus.com - $$2 | http://thesaurus.reference.com/search?q=$$2 /ICON=icons\reference.ico>n>@Ref OneLook Reverse - $$2 | http://www.onelook.com/q/$$2/ /ICON=icons\onelook.ico>n>@Ref WordWeb Online - $$2 | http://www.wordwebonline.com/search.pl?w=$$2 /ICON=icons\wordweb.ico>n>@Ref Dict.org - $$2 | http://www.dict.org/bin/Dict?Form=Dict2&Database=*&Query=$$2 /ICON=icons\dict.ico>n>@Ref WordNet Online - $$2 | http://dict.die.net/$$2 /ICON=icons\wordnet.ico>n>@Ref YourDictionary.com - $$2 | http://www.yourdictionary.com/ahd/search?p=$$2&searchmode=normal /ICON=icons\yourdictionary.ico>n>@Ref Urban Dictionary - $$2 | http://www.urbandictionary.com/define.php?term=$$2 /ICON=icons\urbandictionary.ico>n>@Ref Computing Dictionary - $$2 | http://computing-dictionary.thefreedictionary.com/$$2 /ICON=icons\thefreedictionary.ico>n>@Ref WordWeb - $$2 | %SYSTEMDIR%\rundll32.exe WWEB32.DLL,ShowRunDLL $$2 /ICON=icons\wordweb.ico>n>@Image Google - $$2 | http://images.google.com/images?q=$$2 /ICON=icons\google.ico>n>@Image Yahoo - $$2 | http://images.search.yahoo.com/search/images?p=$$2 /ICON=icons\yahoo.ico>n>@Image Ask - $$2 | http://pictures.ask.com/pictures?q=$$2 /ICON=icons\ask.ico>n>@Image Live - $$2 | http://search.msn.com/images/results.aspx?q=$$2 /ICON=icons\msn.ico>n>@Image Flickr - $$2 | http://www.flickr.com/photos/search/text:$$2 /ICON=icons\flickr.ico>n>@Image AllTheWeb - $$2 | http://www.alltheweb.com/search?cat=img&q=$$2 /ICON=icons\alltheweb.ico>n>@Image PicSearch - $$2 | http://www.picsearch.com/search.cgi?q=$$2 /ICON=icons\picsearch.ico>n>@Image AltaVista - $$2 | http://www.altavista.com/image/results?q=$$2 /ICON=icons\altavista.ico>n>@Image WebShots - $$2 | http://www.webshots.com/search?query=$$2 /ICON=icons\webshots.ico>n>@Image NASA - $$2 | http://nix.larc.nasa.gov/search?qa=$$2 /ICON=icons\nasa.ico>n>@Image FreeFoto - $$2 | http://www.freefoto.com/browse/?query=$$2 /ICON=icons\freefoto.ico>n>@Image Creatas - $$2 | http://www.creatas.com/searchResults.aspx?searchString=$$2 /ICON=icons\creatas.ico>n>@maps GoogleMaps - $$2 | http://maps.google.com/maps?q=$$2 /ICON=icons\google.ico>n>@Movie video IMDB - $$2 | http://www.imdb.com/find?q=$$2 /ICON=icons\imdb.ico>n>@Movie video YouTube Search - $$2 | http://www.youtube.com/results?search_type=search_videos&search_sort=relevance&search_query=$$2&search=Search /ICON=icons\youtube.ico>n>@Music Demonoid - $$2 | http://www.demonoid.com/files/?query=$$2 /ICON=icons\demonoid.ico>n>@Music AMG / Artist - $$2 | http://www.allmusic.com/search/artist/$$2 /ICON=icons\allmusic.ico>n>@Music AMG / Album - $$2 | http://www.allmusic.com/search/album/$$2 /ICON=icons\allmusic.ico>n>@Music AMG / Song - $$2| http://www.allmusic.com/search/song/$$2 /ICON=icons\allmusic.ico>n>@Music AMG / Track - $$2| http://www.allmusic.com/search/track/$$2 /ICON=icons\allmusic.ico>n>@Music AMG / Classical - $$2| http://www.allmusic.com/search/work/$$2 /ICON=icons\allmusic.ico>n>@Music Discogs / Artists - $$2 | http://www.discogs.com/search?type=artists&q=$$2&btn=Go /ICON=icons\discogs.ico>n>@Music Discogs / Labels - $$2 | http://www.discogs.com/search?type=labels&q=$$2&btn=Go /ICON=icons\discogs.ico>n>@Music The Global Electronic Music Marketplace - $$2 | http://www.gemm.com/c/search.pl?currency=US&field=ARTIST+OR+TITLE&wild=$$2&Go%21.x=14&Go%21.y=12 /ICON=icons\gemm.ico>n>@Music UBL - $$2 | http://ubl.artistdirect.com/music/artist/card/0,,466981,00.html?src=redirsearch&artist=$$2 /ICON=icons\artistdirect.ico>n>@shop music eBay - $$2 | http://search.ebay.com/$$2 /ICON=icons\ebay.ico>n>@shop music ebay.co.uk - $$2 | http://search.ebay.co.uk/search/search.dll?from=R40&_trksid=m37&satitle=$$2 /ICON=icons\ebay.ico>n>@shop music ebay.de - $$2 | http://search.ebay.de/search/search.dll?from=R40&_trksid=m37&satitle=$$2&category0= /ICON=icons\ebay.ico>n>@shop music ebay.fr - $$2 | http://search.ebay.fr/search/search.dll?from=R40&_trksid=m37&satitle=$$2&category0= /ICON=icons\ebay.ico>n>@Shop Amazon.com - $$2 | http://www.amazon.com/exec/obidos/search-handle-url?index=blended&field-keywords=$$2 /ICON=icons\amazon.ico>n>@Shop Amazon.co.uk - $$2 | http://amazon.co.uk/s/ref=nb_ss_w_h_/026-7412386-2874067?initialSearch=1&url=search-alias%3Daps&field-keywords=$$2&Go.x=0&Go.y=0 /ICON=icons\amazon.ico>n>@Shop Amazon.de - $$2 | http://amazon.de/s/ref=nb_ss_w/302-9664144-0036863?__mk_de_DE=%C5M%C5Z%D5%D1&initialSearch=1&url=search-alias%3Daps&field-keywords=$$2&Go.x=0&Go.y=0 /ICON=icons\amazon.ico>n>@Shop Amazon.fr - $$2 | http://amazon.fr/s/ref=nb_ss_w/402-3634356-2257735?__mk_fr_FR=%C5M%C5Z%D5%D1&initialSearch=1&url=search-alias%3Daps&field-keywords=$$2&Go.x=0&Go.y=0 /ICON=icons\amazon.ico>n>@Shop eBay - $$2 | http://search.ebay.com/$$2 /ICON=icons\ebay.ico>n>@Shop ebay.co.uk - $$2 | http://search.ebay.co.uk/search/search.dll?from=R40&_trksid=m37&satitle=$$2 /ICON=icons\ebay.ico>n>@Shop ebay.de - $$2 | http://search.ebay.de/search/search.dll?from=R40&_trksid=m37&satitle=$$2&category0= /ICON=icons\ebay.ico>n>@Shop ebay.fr - $$2 | http://search.ebay.fr/search/search.dll?from=R40&_trksid=m37&satitle=$$2&category0= /ICON=icons\ebay.ico>n>@Shop Barnes and Noble - $$2 | http://search.barnesandnoble.com/booksearch/results.asp?WRD=$$2&z=y&cds2Pid=9481>n>@Shop Newegg.com - $$2 | http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&DEPA=0&Description=$$2 /ICON=icons\newegg.ico>n>@Shop TigerDirect.com - $$2 | http://www.tigerdirect.com/applications/SearchTools/search.asp?keywords=$$2 /ICON=icons\tigerdirect.ico>n>@software SnapFiles - $$2 | http://www.snapfiles.com/downloadfind.php?action=s&search.x=20&search.y=12&st=$$2 /ICON=icons\snapfiles.ico>n>@software BetaNews - $$2 | http://fileforum.betanews.com/search?search=$$2 /ICON=icons\betanews.ico>n>@software Download.com - $$2 | http://www.download.com/3120-20_4-0.html?qt=$$2&tag=srch&tg=dl-20 /ICON=icons\downloadcom.ico>n>@software Tucows - $$2 | http://www.tucows.com/search.html?search_scope=win&search_adv=0&search_size=&search_size_multi=b&search_terms=$$2&Search.x=0&Search.y=0 /ICON=icons\tucows.ico>n>@software Donation coder forum search for $$2 | https://www.donationcoder.com/Forums/bb/index.php?action=search2;search=$$2 /ICON=icons\donationcoder.ico>n>@software Total Commander | http://www.ghisler.com>n>@Torr ISO Hunt - $$2 | http://isohunt.com/torrents.php?ihq=$$2&ext=&op=and /ICON=icons\isohunt.ico>n>@Torr Mininova - $$2 | http://mininova.org/search/?search=$$2 /ICON=icons\mininova.ico>n>@Torr NowTorrents - $$2 | http://www.nowtors.com/torrents/$$2.html /ICON=icons\nowtorrents.ico>n>@Torr Pirate Bay - $$2 | http://thepiratebay.org/search.php?q=$$2 /ICON=icons\thepiratebay.ico>n>@Torr Speckly - $$2 | http://www.speckly.com/s?q=$$2&f=exact /ICON=icons\speckly.ico>n>@Torr Torrent Reactor - $$2 | http://torrentreactor.net/search.php?search=&words=$$2&cid= /ICON=icons\tr.ico>n>@Torr Torrentz - $$2 | http://www.torrentz.com/search?q=$$2 /ICON=icons\torrentz.ico>+>^@(|[a-z]+) (.*)>#>@$$1

88
I have to say wonderful program! :-* I love it, saves a lot of time every day.

some request/small bugs
- trailing spaces are not stored in historys, when you define an alias ^name (.*) the space does have a meaning,
   without the space it will give a different result. can you store trailing space(s) in the historys.
- when editing an alias detail-dialog and press ctrl-spacebar or Break the Farr windows do not react
  to the mouse or keyboard anymore (looks like a deadlock?), only way out is
  select Farr in the system tray, right click [exit], and restart farr. can you solve this?
- my laptop is not always connected to the network (server) as a result myalias aliases sometimes disappear (for ever).
- My "My documents"  folder is on the network. This gives problems. Now I use use Farr only in 'portable' version.
  I made the fdebug alias in one of the previous postings to find the cause. I think it has to do with:
- network folders like \\server_name\folder_name are somehow not supported?
  Is this by design ? I also tried \\\\server_name\\folder_name, farr does not
  recognize this as a folder. Can you add support for folder names like these?

89
Hi, the functionality of the buttons is already present, you can right-click the filename, select
    Shell Context Menu .. to open it, delete it, "open with" dialog if you don't want to use the default program
or select
    Properties ..

if you want to select a program to open the file, you can also try portable extension warlock (PEW)
by hamradio Donationcoder NANY 2012 (it  requires .NET v4)
   https://www.donation...ex.php?topic=27928.0
review at freewaregenius.com
   http://www.freewareg...e-extension-warlock/

90
Find And Run Robot / Re: alias for toggle internet proxy
« on: July 30, 2012, 02:02 PM »
Skwire, I was looking for a small proxy toggle tool, but I couldn't find it. Thanks, I'm certainly going to use your program. :Thmbsup:

There is only a very small advantage of my alias over your exe, it will work out of the box.  ;) (most of the time)

91
Find And Run Robot / alias for toggle internet proxy
« on: July 29, 2012, 03:51 AM »
You might like this, it is a simple alias for toggling the internet proxy on/off

"%FARRDIR%\Scripts\Control Panel (cpanel)\Internet Options (cpanel).lnk";;;sendkeys {sleep 1500}+{TAB}{HOME}{RIGHT}{RIGHT}{RIGHT}{RIGHT}%l%x

it will show the new state .

if you want to reverse the state press {SPACE}

you now have to to press {ENTER} twice to commit the setting

assumptions:
  • this version only  works for english version of windows (Lan settings, proXy)
  • it only works if your system administrator did not disable the communication dialog (5th TAB)
  • there are no built in checks, to verify the above!

maybe you can modify it and upload a version for your language.

wiem

92
FARR Plugins and Aliases / farr gmail google mail plugin
« on: July 15, 2012, 08:33 AM »
Hi,

This is my third farr plugin. This time for gmail  (again modified from gtasks)
It allows you look at your inbox and to send emails in the popup window of FARR.

One of the advantages of a  mail plugin(s) is that you can use it in a popup window
while you are looking at another webpage in you browser.

screenshot of gmail plugin (Windows XP, old version of IE)

gmail screenshot clean small.jpg

how to install
unzip the zipfile in subfolder Plugins

* gmail.zip (84.57 kB - downloaded 905 times.)

there should be four files in the subfolder gmail of Plugins
e.g. c:\Program Files\FARR\Plugins\gmail\gmail.ico

default farr alias for this plugin is gmail
if you want to overrule the alias, please read description for my yahoo and operamail plugins.

enjoy
Wim



93
FARR Plugins and Aliases / farr operamail or fastmail plugin
« on: July 15, 2012, 07:59 AM »
Hi,

my operamail (hosted at fastmail) plugin shows your in-box and allows you to compose and send emails.
 (it is a shamefull copy of the GoogleTasks javascript by rulfzid).

the default command/alias is
operamail
you have to login into the site as usual.  IE will remember your username and password.


How to install:
unzip file in subfolder Plugins of FARR
it should now contain 4 files (fscript.dll, fscript.cfi, fscript.js, operamail.ico) Do not put anything else in this folder.
e.g. c:\Program Files\FARR\plugins\operamail\fscript.dll
---
* operamail screenshot clean small.jpg (62.82 kB. 350x288 - viewed 2082 times.)
---

start FARR, go to options (Ctrl-O)
Program Options  >> Settings >> Plugins and Update
press button [ Click to Examine and configure Plugins..]
press [ Find and Reload all Plugins ]
press [OK]
<you can overrule the alias operamail  by another unique available alias>
press [Close]
press [Ok]



screenshot operamail

enjoy
Wiem

94
tiny bug, while farr is still searching (updating results frame) and you right click on a filename, not being the 1st filename in the search results frame, the results area blanks and the context menu appears on the line where you clicked. When you select "Properties.." from the context menu. The displayed properties are not for the selected file, but for the first file in the result frame. After displaying the properties, farr populates the results frame. You will now also see the name of the first file in the results area again.

95
Mouser,

Would it be possible to show the comment for a file from the descript.ion-file during a find?

In my case the description file contains a lot of extra information about the specific file,
and therefor makes selecting the correct file even easier.
Some examples of descriptions
         old: wether the file contains an old version of a document or
         seen: wether I already finished viewing a specific videofile.

Adding the description field would require an extra column(small icons) or row(big icons) to display the info.
                  this will probably slow down the search, so displaying this data should be optional
                  Program options Display Options Report Columns e.g.
                  [ ] descript.ion

I use total commander all the time to add descript.ions using Ctrl-Z shortcut
Previously I used to rename the file which is not possible when the file is open.
TC allows me to add a description even while the file is open.

I currently also use the description properties editor of rainer @ bahr. De  at  wWw, rbahr, de
you can easily update the descript.ion within farr using Right-Click>>Properties>>Tab description

---
It would even be nicer to let farr also search in the description files, but that is probably too much of a change.
Farr needs to search inside the description file during a search instead of "only" displaying
the description-line belonging to a file from the search result (when available).
----

Regards
Wiem




96
Mouser, I've included the farr alias export code to display all the environment variables.

it is just the code as provided above between 'this is the alias'
until 'this is part of the output' containing the problem
just copy paste except for the [  b ] and [ / b ] bold markings which i used to highlight the problem area
nothing special for the name, just ' fdebug'


Code: Text [Select]
  1. 1000>>>fdebug>->var userprofile = %USERPROFILE% |>n>var username = %USERNAME% |>n>var alluserprofile = %ALLUSERSPROFILE% |>n>var mydocuments = %MYDOCUMENTS% |>n>var myfavorites = %MYFAVORITES% |>n>var mydesktop = %MYDESKTOP% |>n>var alldesktop = %ALLDESKTOP% |>n>var mystartmenu = %MYSTARTMENU% |>n>var commonstartmenu = %COMMONSTARTMENU% |>n>var programfiles = %PROGRAMFILES% |>n>var mypictures = %MYPICTURES% |>n>var mymusic = %MYMUSIC% |>n>var myvideo = %MYVIDEO% |>n>var myappdata = %MYAPPDATA% |>n>var commonappdata = %COMMONAPPDATA% |>n>var commonmusic = %COMMONMUSIC% |>n>var commonpictures = %COMMONPICTURES% |>n>var commonvideo = %COMMONVIDEO% |>n>var fonts = %FONTS% |>n>var systemdir = %SYSTEMDIR% |>n>var farrdir = %FARRDIR% |>n>var configdir = %CONFIGDIR% |>n>var faruserdata = %FARRUSERDATADIR% - MyLocalData in FARR path place to store user settings and user-modifiable files |>n>var aliasdir = %ALIASDIR% - When specifying alias commands you may occasionally want to refer to the home directory of the alias |>n>var plugindir = %PLUGINDIR% - Directory of currently triggered plugin|>n>var appdrive = %APPDRIVE% - Will be something like based on drive where findandrunrobot was launched |>n>var computername = %COMPUTERNAME% -- replaced with current computer name |>n>var lasthwnd = %LASTHWND% - integer value referring to the last window handle that had focus before FARR was triggered |>n>var lasturl = %LASTURL% - last url navigated or set in internal web browser |>n>var lasturlset = %LASTURLSET% - last url explicitly set by alias/plugin in web browser |>n>var customfilebrowser = %CUSTOMFILEBROWSER% - user configured custom file browser string |>n>var customewebbrowser = %CUSTOMWEBBROWSER% - user configured custom web browser string |>n>var maxresults = %MAXRESULTS% - current number of max results to show in results, based on search |>n>var maxresultsdef = %MAXRESULTSDEF% - option set by user for default max results to show in results |>n>var maxresultsext = %MAXRESULTSEXT% - option set by user for extended max results to show in results |>n>var lastweberrors = %LASTWEBERRORS% - blank if no web script errors since last web page load, or text of errors |>n>var searchbox = %SEARCHBOX% - contents of current search box as shown|>n>var searchstring = %SEARCHSTRING% - current search string; may differ from search box based on alias dosearch manipulations |>n>var currentresult = %CURRENTRESULT% - currently selected result; useful for creating hotkeys that use it, etc; blank if nothing selected |>n>var currentresultnb = %CURRENTRESULTNB% - same as above, but = first result if nothing selected |>n>var aliasprefix = %ALIASPREFIX% - optional |>+>^fdebug

wiem

97
Hi,

I made an alias 'fdebug' for showing all the standard variable values.
All values work fine except for %COMPUTERNAME%.

this is the alias

var userprofile = %USERPROFILE% |
var username = %USERNAME% |
var alluserprofile = %ALLUSERSPROFILE% |
var mydocuments = %MYDOCUMENTS% |
var myfavorites = %MYFAVORITES% |
var mydesktop = %MYDESKTOP% |
var alldesktop = %ALLDESKTOP% |
var mystartmenu = %MYSTARTMENU% |
var commonstartmenu = %COMMONSTARTMENU% |
var programfiles = %PROGRAMFILES% |
var mypictures = %MYPICTURES% |
var mymusic = %MYMUSIC% |
var myvideo = %MYVIDEO% |
var myappdata = %MYAPPDATA% |
var commonappdata = %COMMONAPPDATA% |
var commonmusic = %COMMONMUSIC% |
var commonpictures = %COMMONPICTURES% |
var commonvideo = %COMMONVIDEO% |
var fonts = %FONTS% |
var systemdir = %SYSTEMDIR% |
var farrdir = %FARRDIR% |
var configdir = %CONFIGDIR% |
var faruserdata = %FARRUSERDATADIR% - MyLocalData in FARR path place to store user settings and user-modifiable files |
var aliasdir = %ALIASDIR% - When specifying alias commands you may occasionally want to refer to the home directory of the alias |
var plugindir = %PLUGINDIR% - Directory of currently triggered plugin|
var appdrive = %APPDRIVE% - Will be something like based on drive where findandrunrobot was launched |
var computername = %COMPUTERNAME% -- replaced with current computer name |
var lasthwnd = %LASTHWND% - integer value referring to the last window handle that had focus before FARR was triggered |
var lasturl = %LASTURL% - last url navigated or set in internal web browser |
var lasturlset = %LASTURLSET% - last url explicitly set by alias/plugin in web browser |
var customfilebrowser = %CUSTOMFILEBROWSER% - user configured custom file browser string |
var customewebbrowser = %CUSTOMWEBBROWSER% - user configured custom web browser string |
var maxresults = %MAXRESULTS% - current number of max results to show in results, based on search |
var maxresultsdef = %MAXRESULTSDEF% - option set by user for default max results to show in results |
var maxresultsext = %MAXRESULTSEXT% - option set by user for extended max results to show in results |
var lastweberrors = %LASTWEBERRORS% - blank if no web script errors since last web page load, or text of errors |
var searchbox = %SEARCHBOX% - contents of current search box as shown|
var searchstring = %SEARCHSTRING% - current search string; may differ from search box based on alias dosearch manipulations |
var currentresult = %CURRENTRESULT% - currently selected result; useful for creating hotkeys that use it, etc; blank if nothing selected |
var currentresultnb = %CURRENTRESULTNB% - same as above, but = first result if nothing selected |
var aliasprefix = %ALIASPREFIX% - optional prefix for aliasses |

this is part of the output of above command
..
          var appdrive = C: - Will be something like based on drive where findandrunrobot was laun
          var computername = %COMPUTERNAME% -- replaced with current computer name         
          var lasthwnd = 329194 - integer value referring to the last window handle that had focus
...
I expected COMPUTERNAME to be replaced by the computername
Is this a bug?

wiem, NL

(farr version april 2012)

98
Find And Run Robot / Re: Default alias for nircmd
« on: July 11, 2012, 02:55 PM »
not finding the command might also be caused by spaces in the path %ALIASDIR%, it toook me a while to resolve this one :-[

so don't forget to put quotes around the command if any of the applicable path environment variables contains one or more spaces

replacing
OpenCD | %ALIASDIR%nircmd.exe cdrom d:
by
OpenCD | "%ALIASDIR%nircmd.exe" cdrom d:
worked for me

wiem

99
FARR Plugins and Aliases / farr yahoo mail plugin
« on: July 05, 2012, 02:58 PM »
Hi,

my yahoo mail plugin shows your yahoo in-box, allows you to compose an email and access contact addresses.
 (it is a shamefull copy of the GoogleTasks javascript by rulfzid).

the default command is
yhm
you have to login into the yahoo site as usual.  Only Once if you allow IE to remember your username and password.


How to install:
Create subfolder yahoomail in folder Plugins of FARR main folder e.g. \FARR\plugins\yahoomail\
Put all 4 files from zipfile in that folder (fscript.dll, fscript.cfi, fscript.js, yahoomail.ico)
(do not put anything else in this folder!)
---
* farr_yahoomail_plugin.zip (124.05 kB - downloaded 583 times.)
---

  • start FARR, go to options (Ctrl-O)
  • Program Options  >> Settings >> Plugins and Update
  • press button [ Click to Examine and configure Plugins..]
  • press [ Find and Reload all Plugins ]
  • press [OK]
  • <you can overrule the command yhm by another (available) alias>
  • press [Close]
  • press [Ok]

screenshot
screenshot yahoo mail plugin.jpg

tip:
When you follow links in your email. Use right-click-context-menu option back (multiple times) to go back to your inbox.

enjoy!

wjamoe
NL







Pages: prev1 2 3 [4]