Jump to content

Recommended Posts

Posted

Hi there,

I would like to know that there is any possible way to monitor keystrokes while autoit GUI is not in focus. I mean minimized state. 

  Reveal hidden contents

 

Posted (edited)

if your looking for your func to do something on specific key press

look @ _IsPressed(), it check one specific key state and its gui independent.

 

#include <Misc.au3>
While 1
    If _IsPressed('01') Then
        SplashTextOn('','Left Mouse Down',200,40)
        Do
            Sleep(10)
        Until Not _IsPressed('01')
        SplashOff()
    EndIf
Wend
Or look @ HotKeySet Edited by bogQ

TCP server and client - Learning about TCP servers and clients connection
Au3 oIrrlicht - Irrlicht project
Au3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)

  Reveal hidden contents


460px-Thief-4-temp-banner.jpg
There are those that believe that the perfect heist lies in the preparation.
Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.

 
  • Moderators
Posted

kcvinu,

I am not suggesting that you are doing anything wrong, but please make sure you read the Keyloggers announcement before you post again. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

Hi 

bogQ

Thank you. Let me try.

  Reveal hidden contents

 

Posted

  On 2/13/2015 at 10:32 AM, Melba23 said:

kcvinu,

I am not suggesting that you are doing anything wrong, but please make sure you read the Keyloggers announcement before you post again. :)

M23

Hi Melba23, 

I am trying to make an input method editor for my native language. If i press "A" on my keyboard, then the appropriate letter of my native language should appear on screen. And i don't like to use my knowledge for illegal purposes. :)

  Reveal hidden contents

 

Posted
Hi Spider001

Let me check the Link. Thanks..

  Reveal hidden contents

 

Posted

Setting the Focus, is also a separate option available to you, other than being active or maximized or on top, etc.

Focus can also be set to individual controls.

Make sure brain is in gear before opening mouth!
Remember, what is not said, can be just as important as what is said.

  Reveal hidden contents

I may have the Artistic Liesense ;) to disagree with you. TheSaint's Toolbox (be advised many downloads are not working due to ISP screwup with my storage)

userbar.png

Posted
  On 2/13/2015 at 12:53 PM, TheSaint said:

Setting the Focus, is also a separate option available to you, other than being active or maximized or on top, etc.

Focus can also be set to individual controls.

Hi, 

There is two input options for our native language. 

1. Phonetic method (It's very easy)

2. Inscript method. (Quite difficult)

Unfortunately, this program supports only inscript method. So i need to change the input method to phonetic through AutoIt script. If that is impossible, then i can develop a new GUI and get the input from user and then paste it to this app.

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...