2126



don't believe everything you read in a help file, there is no such command "appshowappendmemo"
there is however "appcapappendmemo"-mouser (May 18, 2010, 05:41 AM)




...So does that mean FARR's non-contiguous matching can be applied to find a candidate folder which might contain a bookmark for which I'm having trouble remembering any matching strings for?
unpacks Firefox 3 bookmarks.html boomarks as .url files and subfolders
...
This is an easy way to have FF3 bookmarks show up in FARR and Everything.-Nod5 (May 15, 2010, 12:00 PM)


i found a program (mIRC) where this scripts doesn't work..Well it is not surprising to me-lanux128 (May 13, 2010, 09:09 AM)
The current code is deliberately made to be a bit focused on where it's supposed to work.is there a way to display only part of page i mean something like this
i add sutom alias i.e. http://www.ling.pl/indexalt.php?word=$$1
and i know that important part of html that i want to see in application window is between <div id='main'></div>
is there a way to put only this part in my Find and Run Robot window?
i understand tha i can sometimes need to load the whole page to display site correctly
but is there a way to hide everything besides interesting part "<div id='main'></div>"-Werizon (May 12, 2010, 05:41 PM)
In the 'Result(s) - programs, ...' text area of the Edit Alias Dialog, one might specify:
pcommand webgrab http://www.urbandict...com/define.php?term=$$u1 `<table id='entries'>([\s\S]*)<div id='paginator'>` `%1` html
The URL (what to get) is:
http://www.urbandict...com/define.php?term=$$u1
the regular expression (what to pay attention to) is:
<table id='entries'>([\s\S]*)<div id='paginator'>
and the template string (how to present) is:
%1
N.B. The latter two are surrounded by backticks ` to help the plugin understand what information it is being given.
This example alias ends with:
html
which tells Webgrab to display the results as HTML.
This example makes use of user input, so it is important to specify an appropriate value for "Regular Expression Pattern". For example, if "Alias Trigger Text" has the value:
testwg
One might specify a value of:
^testwg (.*)
for "Regular Expression Pattern".
Reminder: a backtick character ` is used for quoting the regular expression and the formatting template.
Usage:
webgrab <url> {<regular-expression>} "<template-string>"
Example:
webgrab http://www.weather.c.../weather/local/08080 {<div class="ccTemp">(\d+)} "Temperature in your town is %1 degrees"