topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday November 29, 2025, 11:34 pm
  • 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 ... 9 10 11 12 13 [14] 15 16 17next
326
FARR Plugins and Aliases / Re: Delicious plugin no longer working?
« Last post by ecaradec on July 16, 2008, 11:25 AM »
Could you try the url https://api.del.icio.us/v1/posts/all? in a browser. Do it only once or you will get banned for some time. You should get an xml export of all your posts.
327
Yes I will add it.
328
FARR Plugins and Aliases / Re: Delicious plugin no longer working?
« Last post by ecaradec on July 15, 2008, 02:34 PM »
This is very strange. Could you check the following points :
- Did you get the new Delicious setting dialog ? It has autohotkey icon. It a H on green background.
- Can you run the settings.exe file in the delicious folder ? Does it show the login/password dialog ?
- Could you check in MyLocalData\Delicious, open the delicious.ini file and verify it look like this ?
 [delicious]
 login=<your_login>
 password=<your_password>

 :tellme:
329
FARR Plugins and Aliases / Re: Delicious plugin no longer working?
« Last post by ecaradec on July 14, 2008, 06:23 PM »
an update should make it work.
330
FARR Plugins and Aliases / Re: Delicious plugin no longer working?
« Last post by ecaradec on July 14, 2008, 04:18 PM »
There was an issue with the fix on the new login password system. I fixed it and it should work now. Thank you for reporting. :Thmbsup:
331
This is a bug. However unrelated with the new ahk support.

I will upload a fix but you can fix it now by changing  :
Code: Javascript [Select]
  1. // no valid password ? ask the user when he start a request
  2.     if(username=="" || password=="")
  3.         showOptions();

with
Code: Javascript [Select]
  1. // no valid password try to load it
  2.     if(username=="" || password=="")
  3.         onOptionsChanged();
  4.  
  5.     // or ask the user
  6.     if(username=="" || password=="")
  7.         showOptions();

in the plugins/delicious/fscript.js file
332
Find And Run Robot / Re: New FARR Plugin Display Mode: UserWindowMode
« Last post by ecaradec on July 08, 2008, 08:54 AM »
WOOW :)
333
I just wanted to add that the ahk dialog is demonstrated in the delicious plugin, in case you miss it. :)
334
FScript 1.8 is out.
I added some functions to allow the use of autohotkey to build options user interfaces dialog. I find it really nice to build UI.
The principle is to launch the settings executable, let the user change parameters and call PostMessage,0x400,0,0,,FScript/{pluginname} from the ahk script to tell FScript to reload plugins.

1)
function onDoAdvConfig() {
    FARR.exec("settings.ahk", "", currentDirectory)
    return true;
}

2) user change params and press ok
3) save user params into an ini file
4) call PostMessage,0x400,0,0,,FScript/{pluginname} from ahk script to warn your plugin that the options changed. Fscript will call onOptionsChanged to allow you to reload your options. Use FARR.getIniValue to read the user settings.


335
I updated the delicious plugin to store login and password in the FARR mylocaldata. The UI look better due to the use of autohotkey to create the dialog. The update will cause FARR to ask for your login and password when you type dlc, dp or dt because the options format has changed.
336
FScript 1.7 is uploaded.
onProcessTrigger can now return a set of flags to tell if the result was processed and if farr window should close.
337
FARR Plugins and Aliases / Re: New Script FARR Plugin: Clock
« Last post by ecaradec on June 21, 2008, 05:28 AM »
I was having an issue with RegEx's in the JavaScript though: they don't seem to be working. Is that FScript.dll or FARR?
-Perry Mowbray (June 17, 2008, 04:04 AM)

What is your issue with regexes ?
- FARR regexes are used to filter output (output many results and let farr filter and sort the results )
- You can use javascript to filter your results but you have to implement sorting and filtering

338
Ok fixed for me in version 2.06.05. Note that I had ie6 too.
339
Since nobody notice this it must be only on my pc.
When I use igo, the first time it work and all the other times it fail with the following dialog :
---------------------------
Find and Run Robot
---------------------------
The requested resource is in use.
---------------------------
OK   
---------------------------
340
Find And Run Robot / Re: Today is release day !!!
« Last post by ecaradec on June 08, 2008, 12:31 PM »
The FScript SDK has been updated to support the FARR extensions and is not beta anymore... Hum, at least I removed the beta from the filename :
https://www.donation...ex.php?topic=12232.0
341
I'll add a note in the FScript documentation about the login information issue. I must confess that I did it too, while developping the delicious plugin.
342
Find And Run Robot / Re: LifeHacker vote, stage 2, final voting
« Last post by ecaradec on May 23, 2008, 06:50 AM »
I would bet $1 million that all the people voting for Gnome Do or Quicksilver haven't tried those programs at least once, and such they're voting for the fame they have, how cool they look or how nice everything sounds from the feature lists. Oh well, these popularity contests, it's like the high school again (in teenager movies, that is, not IRL).

Unfortunately, I don't even have $100 at the moment, so if you excuse me...
Given than 24.6% vote for Quicksilver and that lifehacker public stats show that only 14% of users use mac os... Either they are more motivated to vote, or some Windows user vote Quicksilver, which is silly :)
343
1 is doable but would require another shortcut tht dt since tab currently expand to dlc +post tag. I think it is clearer to not have two differents actions on tab and enter.

2 actually kind of work since I append a : before each tag in the dp list. If you want to match all posts with freeware and updater type : ":freeware :updater" it will get filtered by farr. It is not perfect since :free would match :freeware as well but I find in good enough in my uses. It got the bonus that it is incremental and I can match :freeware and :freewares.
344
reckoner: Do you have one fscript file in the folder? I do not think you can have py,js,rb together. Try to take a look at my TodoTXT plugin => it is python plugin ;)
Yes. You must remove the fscript.js and put a fscript.py. It should work. Happy coding :)
345
FARR Plugins and Aliases / Javascript SDK Bugs
« Last post by ecaradec on April 25, 2008, 05:57 AM »
I open a thread that I would like to dedicate to bugs related to the javascript SDK plugin. If you have a bug that seem related to FScript, you can let a message here. It will help me to track and fix bugs faster.
346
Find And Run Robot / Re: FARR.setInterval(id, millisecond, pFunc);
« Last post by ecaradec on April 24, 2008, 01:41 PM »
Hello czechboy and other happy JScript developers. The JScript SDK bug on setInterval and killInterval is fixed. In fact as nobody, included myself was using it, it had been humm... removed. Get the last JScript SDK at :

http://e.craft.free.fr/farr/FScript/

The fix is included in the version 1.3
347
The normal Python installation do not install automatically the activescripting support. You must install the Python for windows extension. Download it at :

http://sourceforge.n...s.php?group_id=78018

However I tried this and the activestate python and I wasn't able to make the plugin work in any case. How did you install your python czechboy ?
348
If you need to search for tag you can type :name_of_tag. This is not an exact match since :name and name_of_tag will be matched if you type :name. However this allow for incremental search. It is a good idea to select the tag and return the posts, however, it will only allow to match on one tag.
I'm currently working on an FScript version that allow to load multiple plugins. Enhancements to the delicious plugin are in standby until I'm done though.
349
FARR Plugins and Aliases / Re: google dollar exchange rate plugin -- sketch
« Last post by ecaradec on March 11, 2008, 07:42 AM »
help2: I want the plugin to go through these three steps: First, if there is a cached daily exchange rate, use that to calculate and display output. Second, if not, query google, parse, display output and cache exchange rate. Third, if the google query failed (i.e. offline), see if there's a cached older exchange rate, use that to calculate and display output plus a note that N days old rate was used. Now, how do I best do I best cache the exchange rate through javascript in the plugin?
In the delicious plugin I stored the bookmarks in an xml files.
If you need to read and write text files : search for Scripting.FileSystemObject. It is an activex you can use to read and write files.
If you need to read and write xml files, you can use MSXML.DOMDocument.

help3: I used "ex" as alias only because I couldn't get "$" to work (I wanted "$50 " to run the script for example). Is there some way to use "$" as an alias?
You can try \$ as mouser tell you.
You can also set regexstr and scriptregex to empty,  set aliasstr to $, delete the onRegexSearchMatch function and only use the explicit match. You can then use javascript regexes only to match params. Regexes are useful when you need FARR to filter results based on a pattern when you use FARR.emitResult() to report results.

I'm very pleased to see all your work around javascript plugins.
350
FARR Plugins and Aliases / Re: javascript SDK requests
« Last post by ecaradec on February 19, 2008, 04:07 PM »
1 is possible. I could add matching group as extra arguments on onRegexSearchMatch. You could then use those and it would make the regex in the preferences active. This is FARR normal way, so I think this is the best option.
2 onOptionsChanged is called when the user press ok. Could you precise what you expect ?
3 would be good. I could also host a webbrowser and let you define options in html...
4 is a lot of work, I'm working on a prototype currently.
 - The options of all modules have to be merged in one interface
 - FARR does not display results before the plugin is complete (and since there would be more than once ), it would mean before all plugins complete.
Pages: prev1 ... 9 10 11 12 13 [14] 15 16 17next