Messages - benjarry [ switch to compact view ]

Pages: [1]
1
After I change to onProcessTriggerV2 , now it work out. But I found it was triggered when I select this item, not the callback for when I trigger [enter].

2
I try the onProcessTriggerV2 with same methods, still not work. When I hit the [enter], it does not do anything except only exit quietly. No error message popout. strange

3
Thanks mouser, very fast response!!
I found the fubscript use below callback (add some more params). I don't know any relationship with it.

function onProcessTrigger(path, caption, groupname, pluginid, thispluginid, score, entrytype, args){

I get lasted version from the this thread. I don't know where to get the v2. It's better has some examples which use the onProcessTrigger, so that I can get inspired from that.


4
Hi, I am a newbie for fscript.  Now I come across a issue.

 When do a search in editbox, I customize the result list below the search box. I want to define some action when I hit [enter]. But I don't know which callback function is. I try onProcessTrigger in fscript, but sounds not work.

Just a simple snippet code


// type
UNKNOWN=0; FILE=1; FOLDER=2; ALIAS=3; URL=4; PLUGIN=5; CLIP=5;
// Postprocessing
IMMEDIATE_DISPLAY=0; ADDSCORE=1; MATCH_AGAINST_SEARCH=2;
// search state
STOPPED=0; SEARCHING=1;



//fscript.js


       function onSearchBegin(querykey, explicit, queryraw, querynokeyword, modifier, triggermethod) {   
if(!explicit) {
return;
}
FARR.setState(querykey,SEARCHING);
FARR.emitResult(querykey,"Hello-key", "Hello-val", iconfilename,UNKNOWN,IMMEDIATE_DISPLAY,1000);
FARR.emitResult(querykey,"Hi-key", "Hi-val", iconfilename,UNKNOWN,IMMEDIATE_DISPLAY,1000);
FARR.setState(querykey,STOPPED);


// FARR.setStrValue("DisplayBalloonMessage", "explicit : "+explicit)

}


HANDLED=1; CLOSE=2;
function onProcessTrigger(path, caption) {
    alert(1);
    FARR.setStrValue("DisplayBalloonMessage", "path : "+path+" caption:"+caption);
    return HANDLED;
}




Thanks for any suggestions.  :P

Pages: [1]
Go to full version