Giter VIP home page Giter VIP logo

Comments (5)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 17, 2024
Please test again in v0.61.7 released a short time ago

Original comment by cdekter on 30 Mar 2010 at 11:22

from autokey.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 17, 2024
The problem continues in 0.61.7.

Installed the PPA to keep up with the latest and greatest. I'd love to use 
Autokey as 
an hotkey application launcher.

Original comment by [email protected] on 1 Apr 2010 at 6:43

from autokey.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 17, 2024
Unable to reproduce this... can you run AutoKey in debug mode like so:

autokey-qt -l

or if you are using the GTK version:

autokey-gtk -l

Then perform the actions that cause the crash and post the last 40 lines or so 
of
output here.

Original comment by cdekter on 1 Apr 2010 at 8:12

from autokey.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 17, 2024
Works for me

Original comment by cdekter on 13 Apr 2010 at 8:22

  • Changed state: WontFix

from autokey.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 17, 2024
Dear programmer,
I found how to work around this isue.
Personally I don`t know exactly why it happen, but I undarstood how to solve 
the problem.
PLEASE FOLLOW THESE STEPS:

1) locate folder where is stored your script
(usually is like this /home/username/.config/autokey/data/ScriptFolder, where 
"username" is your username, and "ScriptFolder" is the folder where is located 
your script)

2) be sure to see all hidden files (if you are using a file browsing program, 
you can toggle to hidden file viewing by pressing "ctrl+h")

3) locate your script file name, and you will note 2 files with the same name 
but different extension, for example:
myscript.py
myscript.json

what means this ?
this means that your script is a python script and is "myscript.py" and
in myscript.json is stored the setting parameters of your python script.
Json file is like a kind of File System fot Autokey, so for each python script 
you will find his shadow setting file (json extension type)

4) Open with your favourite editor (I use gedit) the file myscript.json and 
locate the line       "hotKey":

you will see the following block of text:

        "immediate": false, 
        "ignoreCase": false, 
        "backspace": true, 
        "triggerInside": false
    }, 
    "hotkey": {
        "hotKey": null, 
        "modifiers": []
    }, 
    "modes": [
        1
    ], 

5) Now, if you want for example use a combination like <ctrl>+1
to trigger your script, please kindly replace the above block as follow:

        "immediate": false, 
        "ignoreCase": false, 
        "backspace": true, 
        "triggerInside": false
    }, 
    "hotkey": {
        "hotKey": "1",
        "modifiers": [
            "<ctrl>"
        ]
    }, 
    "modes": [
        3
    ], 

Please kindly note the last part of the block:

    "modes": [
        3
    ], 

Usually is 1, or empty, but if you want see your modify inyou AutoKey window 
you must set modes on 3 type.


It`s not difficult, only try and let me know if you solved.


NOTE: please remember to restart Autokey in order to see your changes activated.


M.F.

Original comment by [email protected] on 17 Mar 2012 at 6:38

from autokey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.