Mr Green
unread,Aug 18, 2010, 2:02:41 PM8/18/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to autokey-users
I am trying to get my auto_tag script working, not being much of a
python coder is making it more difficult
So far I have autotag.py in my Scripts/ folder [added in autokey
prefs]
[code]
#! /usr/bin/python
def auto_tag(Start_text, End_text):
End_text_Len = len(End_text) + 2
keyboard.send_keys(Start_text + End_text)
keyboard.send_key("<left>", End_text_Len)
return autotag_string
[/code]
I think the keyboard.send is not working as its not part of script.
Also unsure if return statement is correct.
Think I need to remove keyboard stuff unless I can get it to load in
autotag, works fine in a normal script.
Hope it makes sense just a little stuck!
MrG