| Author |
Message |
Topic: COM - Calling function from OCX |
i3egohan
Replies: 0
Views: 148
|
Forum: Ask for Help Posted: Fri Jul 23, 2010 1:58 pm Subject: COM - Calling function from OCX |
Hello guys, I have this ocx/libary here: http://www.freedownloadscenter.com/Programming/Components_and_Libraries/1Crypt.html
I want to call the function/method inside which is called "EncryptF ... |
Topic: COM Standard Library |
i3egohan
Replies: 645
Views: 172252
|
Forum: Scripts & Functions Posted: Fri Jul 23, 2010 1:39 pm Subject: COM Standard Library |
Can someone show example to call function from the following OCX.
http://www.freedownloadscenter.com/Programming/Components_and_Libraries/1Crypt.html |
Topic: IfWinActive with multiple windows as parameter |
i3egohan
Replies: 7
Views: 592
|
Forum: Ask for Help Posted: Thu Nov 26, 2009 2:33 am Subject: IfWinActive with multiple windows as parameter |
Use a loop?...
types = type1:type2:type3
Loop, Parse, types, :
; code |
Topic: Getting information from VLC |
i3egohan
Replies: 2
Views: 347
|
Forum: Ask for Help Posted: Tue Nov 24, 2009 3:43 pm Subject: Getting information from VLC |
| Checkout this library http://www.autohotkey.com/forum/viewtopic.php?t=22923activex |
Topic: Switching between multiple windows wth same 'window title' |
i3egohan
Replies: 5
Views: 758
|
Forum: Ask for Help Posted: Tue Nov 24, 2009 1:13 am Subject: Switching between multiple windows wth same 'window title' |
| Are alll the 'applications' all the same 'applications'. Because if they havent diffrent text in the main window.. Or diffrent buttons/control placements then you can easily obtain the classnn and stu ... |
Topic: ControlGet, List returning blank lines |
i3egohan
Replies: 5
Views: 454
|
Forum: Ask for Help Posted: Mon Nov 23, 2009 1:05 am Subject: ControlGet, List returning blank lines |
Are you able to extract the source of the displayed webcontrol (using URLDownloadToFile and/or COM)?
Umm, I dont think hes talking about anything that is webbased. Are you?
Anyway.. Maybe they c ... |
Topic: Reuse as normal keystroke a key also used as hotkey |
i3egohan
Replies: 3
Views: 313
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 5:27 pm Subject: Reuse as normal keystroke a key also used as hotkey |
| Seriously... How can we help if you havent even posted your code. Theres obviously bugs |
Topic: Retrieve full pathname of document opened in Notepad |
i3egohan
Replies: 6
Views: 319
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 5:24 pm Subject: Retrieve full pathname of document opened in Notepad |
if the AHK file has a GUI, you could use ControlGet to deterime if its a ahk program/script or not.
There are numerous ways using ahk_class etc.. You tried these?
Or maybe im still not understan ... |
Topic: Variable error? Not quite sure what iv done wrong. |
i3egohan
Replies: 2
Views: 291
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 5:22 pm Subject: Variable error? Not quite sure what iv done wrong. |
Those are output varibles. There is no need to wrap them in %%
Change: pixelSearch , %TL% , %BR% , 806 , 490 , 841 , 524 , 10 , fast
To
pixelSearch , TL , BR , 806 , 490 , 841 , 524 , 10 , ... |
Topic: Retrieve full pathname of document opened in Notepad |
i3egohan
Replies: 6
Views: 319
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 4:54 pm Subject: Retrieve full pathname of document opened in Notepad |
Get the notepad title.. Then append .ahk to end of it..
Then use IfFileExist..
NotePadTitle .= .ahk |
Topic: IRC and AutoHotKey |
i3egohan
Replies: 1
Views: 317
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 1:46 pm Subject: IRC and AutoHotKey |
| Effciently only if you use DLL calls.. Or query a custom PHP script. |
Topic: 180 degree turn in-game |
i3egohan
Replies: 4
Views: 955
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 1:45 pm Subject: 180 degree turn in-game |
| It all depends on your sensitivity in game. exacly how many seconds or milliseconds does it take to 180 in the game with your current mouse settings? |
Topic: Loop |
i3egohan
Replies: 17
Views: 614
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 1:42 pm Subject: Loop |
| Where is the documentation that helps you be able to read the documentation you posted? With no knowledge of script the terms are unfamiliar to me and it is almost like trying to assemble something u ... |
Topic: appending a string to GUI Edit control -- newline issue |
i3egohan
Replies: 11
Views: 1342
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 3:48 am Subject: appending a string to GUI Edit control -- newline issue |
| When working with AHK GUI's Inside your own code.. You really should not use 'Control' |
Topic: random click |
i3egohan
Replies: 5
Views: 405
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 3:21 am Subject: random click |
Random click every 5 seconds.
Loop
{
Random, randx, 0, %A_ScreenWidth%
Random, randy, 0, %A_ScreenHeight%
Click, %randx%, %randy%
Sleep, 5000 ; random click every 5 second ... |
| |