AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 21 matches
AutoHotkey Community Forum Index
Author Message
  Topic: COM Standard Library
Futurity

Replies: 645
Views: 172397

PostForum: Scripts & Functions   Posted: Sun May 23, 2010 6:38 pm   Subject: COM Standard Library
I found small bug in the library, which doesn't allow to use numbers larger than integer
The bug is the COM_Invoke code:
Loop, Parse, sParams
; If prm%A_LoopField%+0=="" || InStr(p ...
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Wed May 19, 2010 7:47 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
hi again,

I am using Unicode version of ahk(AutoHotkeyCEUni 1.0.48.124) and I noticed it uses over twice the memory than ANSI version.
UNI: 3.6MB
ANSI: 1.4MB
Test app:
msgbox helloworld
return ...
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Wed May 19, 2010 4:39 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
Hi micha,

I would like to thank you for your great effort, I am using autohotkeyCE quite a lot. Thanks!

edit:
I had a problem, but I solved it by using unicode version of AutoHotkeyCE
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Tue Apr 13, 2010 11:37 am   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
Micha, Thanks for great program!

PixelGetColor and Click are working properly only for 320x240 resolution.

On my device 640x 480 for pixel 0,0 the color is right, but for pixel 1x1 it is wrong. ...
  Topic: CriticalSection() - Real Multithreading for AutoHotkey.dll
Futurity

Replies: 4
Views: 2984

PostForum: Scripts & Functions   Posted: Thu Jan 28, 2010 11:55 am   Subject: CriticalSection() - Real Multithreading for AutoHotkey.dll
Great job!

I will use it in my script.

One problem though, it does not work with AutoHotkey_N41:
http://www.autohotkey.net/~HotKeyIt/AutoHotkey_SOURCE_N41.zip

When I put a msgbox after
Thre ...
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Tue Oct 27, 2009 9:21 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
fincs any news from Micha?
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Tue Sep 22, 2009 12:45 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
I have tested some more functions:
SendMessage FAIL
PostMessage FAIL
ControlSend FAIL
ControlFocus FAIL
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Tue Aug 11, 2009 4:24 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
Micha, Thanks for great program!

PixelGetColor and Click are working properly only for 320x240 resolution.

On my device 640x 480 for pixel 0,0 the color is right, but for pixel 1x1 it is wrong. ...
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Fri Aug 07, 2009 4:10 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
Micha, Thanks for great program!

PixelGetColor and Click are working properly only for 320x240 resolution.

On my device 640x 480 for pixel 0,0 the color is right, but for pixel 1x1 it is wrong. ...
  Topic: [solved] Client rect without borders, titlebar etc
Futurity

Replies: 3
Views: 445

PostForum: Ask for Help   Posted: Sat Jul 04, 2009 5:07 pm   Subject: [solved] Client rect without borders, titlebar etc
I think I solved the problem:

WinGet, hwnd , ID, A
WinGetPos, , , , Window_Height, ahk_id %hwnd%
VarSetCapacity(rcClient, 16, 0) ; rcClient Structure
DllCall(" ...
  Topic: [solved] Client rect without borders, titlebar etc
Futurity

Replies: 3
Views: 445

PostForum: Ask for Help   Posted: Sat Jul 04, 2009 4:26 pm   Subject: [solved] Client rect without borders, titlebar etc
I was able to get size of the client rect(480,640), but the position is 0,0. How to get the real position?
VarSetCapacity(rcClient, 16, 0) ; rcClient Structure
DllCall(&q ...
  Topic: [solved] Client rect without borders, titlebar etc
Futurity

Replies: 3
Views: 445

PostForum: Ask for Help   Posted: Sat Jul 04, 2009 4:15 pm   Subject: [solved] Client rect without borders, titlebar etc
I have a window, which size is 486,672. I would like to get the size and the position of the client area, without borders, titlebar etc

Could someone help me?

Wingetpos and controlgetpos failed ...
  Topic: Class library (OOP) - Help Thread
Futurity

Replies: 92
Views: 10815

PostForum: Ask for Help   Posted: Mon Jun 15, 2009 9:41 pm   Subject: Class library (OOP) - Help Thread
Thank you Smile
I knew I was missing something obvious.

Anyway, this size could be calculated automatically since you have to set the BuiltInValues in Main_getBuiltInValues ... and from there get the ...
  Topic: Class library (OOP) - Help Thread
Futurity

Replies: 92
Views: 10815

PostForum: Ask for Help   Posted: Mon Jun 15, 2009 2:32 pm   Subject: Class library (OOP) - Help Thread
I have this class that always crashes AutoHotkey, what I do wrong? Smile


Main := Main_new()
Main_setRun(Main, "lol")
return

#include Class.ahk

Main_getTR_Select ...
  Topic: Autohotkey for Pocket PCs / WinCE / Smartphones
Futurity

Replies: 443
Views: 97160

PostForum: Scripts & Functions   Posted: Sat Aug 02, 2008 8:36 pm   Subject: Autohotkey for Pocket PCs / WinCE / Smartphones
Thanks Micha for great program!

Keep it coming!
 
Page 1 of 2 Goto page 1, 2  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group