| Author |
Message |
Topic: kport question |
xx3nvyxx
Replies: 4
Views: 198
|
Forum: Ask for Help Posted: Wed May 28, 2008 12:17 am Subject: kport question |
Try this then:
DllCall("Kport\_Outportb@8", Short, 0x64, Char, 0xD2)
DllCall("Kport\_Outportb@8", Short, 0x60, Char, 0xE0)
Sleep 100
DllCall(& ... |
Topic: kport question |
xx3nvyxx
Replies: 4
Views: 198
|
Forum: Ask for Help Posted: Mon May 26, 2008 11:26 pm Subject: kport question |
| 1. Search the forums for the solution. This can happen anytime you send keystrokes, so I'm sure others have had this problem. If you're using kport it is caused, specifically, by the fact that you are ... |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Sun May 11, 2008 6:57 pm Subject: Compiling with GCC |
It compiles. Great. Now if it would just link. The code I took to replace the __try and __catch wouldn't link without the associated c file (well duh, right?) but that file has compiler errors.
So ... |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Thu May 08, 2008 2:51 am Subject: Compiling with GCC |
ONE MORE TO GO!
Now I just have the file script_expression.cpp to fix. I have changed the inline assembly from Intel style to AT&T style. In order to maintain cross compilation, I have include ... |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Wed May 07, 2008 7:40 pm Subject: Compiling with GCC |
| That sounds great. Unfortunately in order to make this work in as many scenarios as possible I am forced to use more abstract methods than byte codes. If I only had to worry about intel architecture i ... |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Tue May 06, 2008 6:06 pm Subject: Compiling with GCC |
...would you consider wxWidgets instead of GTK?
I might. I have to achieve my first goal before I will even think about how I will modify it.
Currently I am getting hung up on the DynaCall func ... |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Mon May 05, 2008 8:35 pm Subject: Compiling with GCC |
| Thank you for your support. That is almost exactly my intent. In the process of making it cross-platform I wish to convert the gui code to GTK. |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Mon May 05, 2008 7:48 pm Subject: Compiling with GCC |
| I expect it to conform to the C++ standard as much as possible. I want to convert the code to a form that will allow the most cross-compilation (thereby making it useful for those who just want it to ... |
Topic: Compiling with GCC |
xx3nvyxx
Replies: 13
Views: 1035
|
Forum: Scripts & Functions Posted: Mon May 05, 2008 7:05 pm Subject: Compiling with GCC |
I have been working, recently, on compiling AHK with GCC. I have noticed a few things...
1.) The includes in stdafx.h that are under "#ifdef _MSC_VER" are important to any compiler, not s ... |
Topic: Wildcard Folders |
xx3nvyxx
Replies: 15
Views: 637
|
Forum: Wish List Posted: Sat Mar 08, 2008 5:37 pm Subject: Wildcard Folders |
...So how short is this function going to get?
I think everyone here has already completely shown me up. Which is, don't get me wrong, a very good thing. But I still would like to see this function ... |
Topic: Wildcard Folders |
xx3nvyxx
Replies: 15
Views: 637
|
Forum: Wish List Posted: Fri Mar 07, 2008 2:15 am Subject: Wildcard Folders |
| That can't exactly be used for multiple applications. My function allows for any number of wildcard folders. |
Topic: Wildcard Folders |
xx3nvyxx
Replies: 15
Views: 637
|
Forum: Wish List Posted: Thu Mar 06, 2008 6:40 pm Subject: Wildcard Folders |
;
; AutoHotkey Version: 1.0.47.5
; Language: English
; Platform: WinXP Pro
; Author: William Washco <xx3nvyxx@gmail.com>
;
; Script Function:
; Con ... |
Topic: Wildcard Folders |
xx3nvyxx
Replies: 15
Views: 637
|
Forum: Wish List Posted: Thu Mar 06, 2008 8:32 am Subject: Wildcard Folders |
#singleinstance, force
WildcardFolder = %A_AppData%\.purple\logs\*\*\randomsn\
File = *.html
List := WildcardFolderList(WildcardFolder,File)
msgbox, %List%
Return
WildcardFolderLis ... |
Topic: Wildcard Folders |
xx3nvyxx
Replies: 15
Views: 637
|
Forum: Wish List Posted: Thu Mar 06, 2008 7:03 am Subject: Wildcard Folders |
| Speaking of a wrapper, I am nearing the completion of my (very messy) function to do just that. I hope that, should it not be implemented into the next version of AHK, it is at least cleaned up by som ... |
Topic: Wildcard Folders |
xx3nvyxx
Replies: 15
Views: 637
|
Forum: Wish List Posted: Thu Mar 06, 2008 3:41 am Subject: Wildcard Folders |
I would like to be able to do this:
loop, %A_AppData%\.purple\logs\aim\*\randomsn\*.html
{
Filelist := FileList "," A_loopFileName
}
The function would be to allow on ... |
| |