Como abrir uma janela usando o autokey

0

No autohotkey, usei o comando Executar para abrir janelas ou arquivos. Existe alguma maneira para a mesma tarefa no autokey.

No meu caso eu tenho que abrir a pasta e criar uma pasta com o nome sample . meu código não funciona é

system.exec_command('/home/dinom/Documents/testfolder', getOutput=True)
keyboard.send_keys("<ctrl>+<shift>+<n>")
keyboard.send_keys("sample")
keyboard.send_keys("<enter>")

Como fazer isso no autokey.

    
por mailto dino 09.01.2015 / 08:52

1 resposta

0

Verifique o seguinte código

import os
os.system('/usr/bin/xdg-open /home/dinom/Documents/testfolder')
import time
time.sleep(1)
window.activate("testfolder",switchDesktop=True)
import subprocess
active_title =window.get_active_title() 
time.sleep(1) 
if (active_title == "testfolder"):
    start_time = time.time()
    keyboard.wait_for_keypress("n", timeOut=1)
    if (time.time()-start_time < 0.9):
        time.sleep(0.2)
    keyboard.press_key("<ctrl>")
    keyboard.press_key("<shift>")
    keyboard.press_key("n")
    keyboard.release_key("n")
    keyboard.release_key("<ctrl>")
    keyboard.release_key("<shift>")
    time.sleep(4)
    keyboard.send_keys("sample")
    keyboard.send_keys("<enter>")
else:
    subprocess.Popen(['notify-send', "Couldn't find testfolder"]) 

Use o este link para referência

    
por dhiya 05.08.2015 / 19:42