Python Script Add-In does not show up in DOpus Dialog

Hey,

I have a VB-Script Add-In and a Python-Script Add-In.
Both with the same content (OnInit).

The VB-Script appears in the Script-Dialog and works.
The Python-Script neither appears nor works...

(Python.org 2.7 & 3.4, Win 7 64bit, DOpus 11.5.3)

Any Ideas?

Is Python installed correctly and can you run your script externally with cscript.exe in the commandline?
If yes, edit the script a bit and re-save it, watch the script console for an error message. Also make sure the fileextension is correct.
I'm not a python guy, for a more detailed help a python experienced user hopefully drops in.

Yes, Python is installed correctly and the script works externally.
as you can see above, the file extension is correct.
There are no error or other messages.

Further ideas?

Did you look into the "other logs" utility?

Crazy, on my Work-Notebook I got no message.
Here at home, the script works fine.

Maybe this is a user-rights thing?
But why does the VBS script work?

Hmm, just the OnInit-Event seems to be fired. Neither the afterFolderChangeData nor the beforeFoldetChangeData-Event :frowning:

Ok, I solved it myself.
It definitely has to be a *.pys file; not a *.py file....

Thanks anyway.

What actually made you assume *.py is correct?

Because all my python-files are *.py files (I did not recognize, that DOpus only supports ActiveScripting -> *.pys)