topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday March 29, 2024, 1:23 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 - PabloG [ switch to compact view ]

Pages: [1]
1
Find And Run Robot / Re: AltTab / FScript problem
« on: April 01, 2011, 07:29 AM »
@mouser:

yeah, I disabled all the other plugins and restarted FARR before
testing.

I was wondering if maybe the OS could be the problem
-I'm using Win7 64-bit-, then I tested the script in a VirtualBox
VM with WinXP SP3 32-bit (where the standard Alt+Tab plugin
works fine): downloaded and installed the latest FARR, copied
the Plugins\AltTab2 folder, enabled the plugin, same result.

TIA,
Pablo

2
Find And Run Robot / Re: AltTab / FScript problem
« on: March 31, 2011, 09:30 PM »
@ecaradec: thanks for answering, your plugin also rocks!
You are lowering the bar for plugin writers, keep up the good work!

I downloaded your sample, same result:

* Downloaded FScriptSample.rar
* Unpacked on e:\PortableApps\Farr\Plugins\AltTab2
* Checked the Fscript.dll version (1.17.0.0, older than the 1.20.0.0 I was previously using)
* Enable the plugin (with FARR hotkey, aplugins, Find and Reload)
* Set the plugin alias (tab)
* Disabled all the other plugins
* Restarted FARR
* Pop up FARR again, type tab to start the plugin
* Result: Hello0, no matter how many times I clicked over the result or press return over it.
* Added:

Code: Javascript [Select]
  1. FARR.setStrValue("DisplayAlertMessage", "init");

in onSearchBegin and

Code: Javascript [Select]
  1. FARR.setStrValue("DisplayAlertMessage", "trigger");

in onProcessTrigger

* Result: the init popup fires always when I press FARR hotkey plus alt.
The trigger popup doesn't fire, nor selecting the result with cursor keys,
the mouse or the numpad keys.

A strange thing, when I restart FARR and clicked over the Hello0 result,
the first time the FARR window closed, but after reloading the plugins,
when I clicked over Hello0 the FARR window stays open.

Any ideas?
TIA

3
Find And Run Robot / Re: AltTab / FScript problem
« on: March 29, 2011, 05:21 PM »
@Mouser: hi, thanks for answering. Your program rocks!  ;)

The FScript version I'm using is 1.20.0, downloaded from
http://e.craft.free....r/farr/FScript/1.20/

My problem is that the onProcessTrigger never fires.
I'm adding the results with:

Code: Javascript [Select]
  1. FARR.emitResult(querykey, querynokeyword, querynokeyword, iconfilename, PLUGIN, IMMEDIATE_DISPLAY, scorestr);

If I add the results with UNKNOWN or FILE (0 / 1) then FARR (re) run the selected result; my idea was
to process that result in onProcessTrigger, bringing the selected program to foreground and returning
HANDLED from the function.

Is there's a newer version of FScript or a more specific FScript sub-forum where I can ask?

TIA,
Pablo

4
Find And Run Robot / Re: AltTab / FScript problem
« on: March 29, 2011, 01:54 PM »
Anyone?? I've using Alt+Tab for a month with nearly 20 open programs, and my Tab key is dying!  :(

5
Find And Run Robot / AltTab / FScript problem
« on: March 19, 2011, 11:31 AM »
Hi all, that's my first post on this forum!

I've been using FARR from more than two years, and is a great program!  :Thmbsup:
I had no problems so far, but when I migrate from WinXP-32 to Win7-64 several FARR plugins
stop working, the pluginlog.txt file says something like:

Code: Text [Select]
  1. Error initializing plugin do_init function
  2. E:\PortableApps\FARR\Plugins\FarrAltTab\FARRAltTab.dll

The most important -for me- is the AltTab plugin, then I tried to recreate the plugin using
FScript. I manage to obtain the list of active processes using WMI and displaying that
list with emitResult (even with the respective icons), but the onProcessTrigger function
never fires when I select the element with Return or via mouse.

Looking previous posts, I tried several onProcessTrigger parameter lists:

Code: Javascript [Select]
  1. function onProcessTrigger(path, caption) {
  2. function onProcessTrigger(path, caption, groupname, pluginid, thispluginid, score, entrytype, args, triggermode) {
  3. function onProcessTrigger (path, caption, groupname, pluginid, thispluginid, score, entrytype, voidp) {

Also tried with onProcessTriggerV2, no luck.

Code: Javascript [Select]
  1. function onProcessTrigger(path, caption, groupname, pluginid, thispluginid,score, entrytype, args, triggermode) {
  2.           FARR.debug("Path: " + path + "; Caption: " + caption + "; GroupName: " + groupname + "; PluginID: " + pluginid + "; ThisPlugin: " + thispluginid + "; Score: " + score + "; EntryType: " + entrytype + "Args: " + args + "; TriggerMode: " + triggermode);
  3.           FARR.setStrValue("DisplayAlertMessage", caption + " " + path);
  4.        
  5.           return HANDLED + CLOSE;
  6.         }

I'm using the 1.20.0 version of FScript.dll, tried with FScript2 but it hangs FARR displaying
a lot of error popups (error creating the proxy, if I recall correctly).
The FARR version is v2.96.01 (the latest, I think).

Any ideas?
TIA,
Pablo

PD: sorry for my english, I'm no native speaker  :-[


Pages: [1]