| Author |
Message |
Topic: Fancy Font\Char Generator [intended for forums and chat msg] |
Tuncay
Replies: 1
Views: 43
|
Forum: Scripts & Functions Posted: Sun Mar 21, 2010 5:30 pm Subject: Fancy Font\Char Generator [intended for forums and chat msg] |
| I have made a modification of your script. The replacer table is now merged into one function. The options are parsed with Argp.ahk, http://www.autohotkey.com/forum/viewtopic.php?p=310409. You can ch ... |
Topic: OneLineCommands (Execute AHK code dynamically!) |
Tuncay
Replies: 11
Views: 2146
|
Forum: Scripts & Functions Posted: Thu Mar 18, 2010 8:28 pm Subject: OneLineCommands (Execute AHK code dynamically!) |
Will not work, it would be possible using LowLevel but would create a static variable inside that function and I am not sure if and how this could be much of use.
My thought was to remember variable ... |
Topic: Help needed in INI file |
Tuncay
Replies: 8
Views: 166
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 11:29 am Subject: Help needed in INI file |
@Murx
my ini lib can do this also
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
ini =
(
[Tip]
TimeStamp = 20090716194758
[Recent File List]
File1=F:\testfi ... |
Topic: OneLineCommands (Execute AHK code dynamically!) |
Tuncay
Replies: 11
Views: 2146
|
Forum: Scripts & Functions Posted: Thu Mar 18, 2010 10:55 am Subject: OneLineCommands (Execute AHK code dynamically!) |
| Thx for the changes. Another thing to mention is may be not possible: The variables are dereferenced from global space. For such a function, that is may be ok. It would be perfect if it dereferences i ... |
Topic: Help needed in INI file |
Tuncay
Replies: 8
Views: 166
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 10:12 am Subject: Help needed in INI file |
| Why inserting a new line? At what position? Are the keys you add all merged into one line?? Would you give please one example output, so I can understand this. Normally, the keys should be added in a ... |
Topic: Help needed in INI file |
Tuncay
Replies: 8
Views: 166
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 11:06 am Subject: Help needed in INI file |
| First of all to say is, the ini file itself is not touched in anyway. Other than the AutoHotkey built-in commands, these ini_ functions works on the variables only. Reaso is superior speed if needed m ... |
Topic: OneLineCommands (Execute AHK code dynamically!) |
Tuncay
Replies: 11
Views: 2146
|
Forum: Scripts & Functions Posted: Tue Mar 16, 2010 3:00 pm Subject: OneLineCommands (Execute AHK code dynamically!) |
Idea:
x:="hallo welt"
#("msgbox %x%")
does not work. You could use the Transform, Deref command to dereference variables.
Naming:
I would like to integrate your ... |
Topic: Can AHK inject DLL ? |
Tuncay
Replies: 1
Views: 101
|
Forum: Ask for Help Posted: Mon Mar 15, 2010 7:50 pm Subject: Can AHK inject DLL ? |
| Do you mean call a function from the Dll by "inject"? Then look at the [url=http://www.autohotkey.com/docs/commands/DllCall.htm]DllCall() function. |
Topic: reading INI in the same working directory |
Tuncay
Replies: 3
Views: 71
|
Forum: Ask for Help Posted: Mon Mar 15, 2010 4:20 am Subject: reading INI in the same working directory |
| just to mention, windows uses backslash for pathes (this is "\"). Normal slashes are accepted mostly, but sometimes not. |
Topic: Renaming files from a given list |
Tuncay
Replies: 7
Views: 156
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 7:48 pm Subject: Renaming files from a given list |
Hehe. I am glad it helped you and that it works. Just learn about Ahk by reading and studieng and helping others. Thats all.
I had some time and that script did took just some minutes to write. ... |
Topic: IronAHK: cross platform .NET rewrite of AutoHotkey |
Tuncay
Replies: 71
Views: 4971
|
Forum: Scripts & Functions Posted: Sun Mar 14, 2010 7:38 pm Subject: IronAHK: cross platform .NET rewrite of AutoHotkey |
I looked around briefly but couldn't find any mention of them - or are they names you just came up with?
Sorry for confusion. They are just on the fly thoughts I had at begin of writing that posting. ... |
Topic: Distinguish between a String & Number |
Tuncay
Replies: 18
Views: 448
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 5:38 pm Subject: Distinguish between a String & Number |
I did not realize that he WANT write the surrounding quotes for distinguishing. Then your example is working like jethrow should want to. here is another possible way.
var = 123 ;Int
var2 = " ... |
Topic: Distinguish between a String & Number |
Tuncay
Replies: 18
Views: 448
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 5:28 pm Subject: Distinguish between a String & Number |
| Yes that would work. but this is a way where the user make extra effort to save the type by himself and manages. My point is about that AutoHotkey drops the type of variable. The example of Murx is a ... |
Topic: Renaming files from a given list |
Tuncay
Replies: 7
Views: 156
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 5:06 pm Subject: Renaming files from a given list |
sorry there where typo(s). Try that script, with manually selection of folders and file. Make sure the folder contains all photos. You do not preselect them.
#NoEnv
#SingleInstance
SetWorkingDir ... |
Topic: IronAHK: cross platform .NET rewrite of AutoHotkey |
Tuncay
Replies: 71
Views: 4971
|
Forum: Scripts & Functions Posted: Sun Mar 14, 2010 4:56 pm Subject: IronAHK: cross platform .NET rewrite of AutoHotkey |
| About the compatibility. This does not interest me. I would never use complicated scripts with IA. And about the file extension, I would suggest to use .ihk instead of .ia. That would look more natura ... |
| |