Hello
First of all:
Thanks for FARR and FScript. I like controlling the PC with the keyboard - so this is a perfect tool

As a former programmer I like the idea of extending the functionality with Python scripts.
I have been searching for a while for a reason to start learning Pyhton

So: I am new to FARR and Python and got stuck in the beginning.
What I tried to do: I converted the sample ruby-script to the Pyhton syntax.
BUT: the plugin doesn't show up at all in the list of plugins
OR: the proberties of the plugin only contain strange characters like ??????? (see attachted screenshot)
My Setup:
- Windows Vista
- ActiveState Python v3
- FARR
- FScript dll v1.8.0.0
I created a directory with those files:
c:\Program Files\FARR\Plugins\TESTPython\FScript.dll
c:\Program Files\FARR\Plugins\TESTPython\FScript.ico
c:\Program Files\FARR\Plugins\TESTPython\fscript.py
At this point I have no idea what the problem is

Any ideas to help me?
Thanks
Chris
p.s.:
this is the pyhton script:
displayname="TESTPython"
versionstring="0.0.1"
author="Author"
iconfilename="FScript.ico"
aliasstr="ttt"
regexstr=""
regexfilterstr=""
keywordstr=""
scorestr="300"
# 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 constants
STOPPED=0; SEARCHING=1;
def onSearchBegin(querykey, explicit, queryraw, querynokeyword):
FARR.setState(querykey,SEARCHING) #start search
# return result to farr (queryID, , title ,path , icon , entrytype=FILE , resultpostprocessing=2 , score=300)
FARR.emitResult(querykey,"python TITLE", "python PATH", iconfilename, ALIAS ,IMMEDIATE_DISPLAY ,5000)
FARR.setState(querykey,STOPPED) #stopped search