AutoHotkey Community

It is currently May 23rd, 2012, 10:31 pm

All times are UTC [ DST ]


Search found 262 matches
Search these results:

Author Message

 Forum: Support   Topic: Compiled script quitting on Startup (Portuguese win7)

Posted: November 17th, 2011, 10:57 pm 

Replies: 1
Views: 83


Hopefully someone who sees this today will have an answer.

 Forum: Support   Topic: Is there any way to get text from a Flash program?

Posted: November 16th, 2011, 10:15 pm 

Replies: 4
Views: 207


Since this has been brought back up, I would love to know more about memory reading.

 Forum: Support   Topic: Compiled script quitting on Startup (Portuguese win7)

Posted: November 16th, 2011, 5:02 am 

Replies: 1
Views: 83


I have many people using a compiled script and it is working as expected. I have 2 portuguese users that are unable to start it. It starts up and then quits immediately. To test I wrote and compiled this: msgbox, test 123 Return It works fine on my computer, but on one of the users' computers (runni...

 Forum: Support   Topic: Script functions properly when compiled but not vice versa

Posted: October 28th, 2011, 1:40 am 

Replies: 16
Views: 249


Try restarting your computer and running it. This has worked for me a few times right when I was getting ready to break things. I have no idea why it worked.

 Forum: Support   Topic: Windows requesting to be active list? Possibly WINAPI relat

Posted: October 27th, 2011, 11:56 pm 

Replies: 0
Views: 135


I'm writing a script for a poker program. Tables request to become active but will not become active if the table you are on requires action. Is there a way to access the list of windows that are queued to become active?

 Forum: Support   Topic: Game script configs i can switch with a press of a button?

Posted: October 27th, 2011, 11:48 pm 

Replies: 8
Views: 448


Try this:

Code:
toggle=0

^1::
if toggle=0
  toggle=1
else
  toggle=1
Return

2::
if toggle =0
  {
  Whatever for game 1
  }
else
  {
  Whatever for game 2
  }
Return

 Forum: Support   Topic: CAPS Lock key

Posted: September 26th, 2011, 12:43 am 

Replies: 4
Views: 169


Laptop keyboards on ebay are pretty cheap.

 Forum: Support   Topic: Cursor Return to starting point?

Posted: September 25th, 2011, 2:08 am 

Replies: 11
Views: 267


Considered using ControlClick and ControlSend instead? They may eliminate your need to get MouseGetPos and MouseMove. The windows also wouldn't have to be active for the clicks/keystrokes to work.

 Forum: Support   Topic: Possible to take a picture of a window behind another?

Posted: May 17th, 2011, 6:38 am 

Replies: 6
Views: 183


Thanh00 wrote:
If you can get the handle of the window (using it's title?) you can get the bitmap even if it is covered using Gdip library from Tic.

pBitmap:=Gdip_BitmapFromHWND(hwnd)


Can I get a color from a position this pbitmap variable without opening it or saving it to a file?

 Forum: Support   Topic: Possible to take a picture of a window behind another?

Posted: May 16th, 2011, 9:14 pm 

Replies: 6
Views: 183


Thanh00 wrote:
If you can get the handle of the window (using it's title?) you can get the bitmap even if it is covered using Gdip library from Tic.

pBitmap:=Gdip_BitmapFromHWND(hwnd)


Perfect.

 Forum: Support   Topic: Possible to take a picture of a window behind another?

Posted: May 16th, 2011, 2:37 pm 

Replies: 6
Views: 183


I need to get images for a certain area of about 5 blocked windows that are covered covered by othehr windows a majority of the time. Has this been done with AHK?

 Forum: Support   Topic: Need to list of files in folder containing .zip - resolved

Posted: May 16th, 2011, 11:21 am 

Replies: 2
Views: 327


SKAN wrote:
Here is a template which you may adjust to your needs:

Code:
Loop, c:\*.zip
  zipFiles .= A_LoopFilename "|"
StringTrimRight, zipFiles, zipFiles, 1

Gui, Add, DDL, w240 r10 Choose1, %zipFiles%
Gui, Show


Oh man that's perfect. thank you SKAN.

 Forum: Support   Topic: Need to list of files in folder containing .zip - resolved

Posted: May 16th, 2011, 8:36 am 

Replies: 2
Views: 327


I'm trying to get a list of files that contain .zip from a folder to use in a dropdown box. I went through the list of commands and didn't see anything like that. Is there a command to get a list of files?

 Forum: Support   Topic: Why are Min and UserErrorLevel not working in this statement

Posted: May 14th, 2011, 11:32 am 

Replies: 2
Views: 80


@jboyrox That's pretty much how I was doing it.

Well the other window I was trying to start minimized was a compiled .ahk. I solved that propblem with Gui, Show, hide.

Now all I need to do is igure out how to get UserErrorLeel to work for Run.

 Forum: Support   Topic: Why are Min and UserErrorLevel not working in this statement

Posted: May 14th, 2011, 11:13 am 

Replies: 2
Views: 80


If test.exe doesn't exist in the below snippet, I get an error message. If it does exist, it runs, but is not minimized. What am I doing wrong.

Code:
Run, C:\Program Files (x86)\test.exe,, Min UserErrorLevel
Sort by:  
Page 1 of 18 [ Search found 262 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group