Search found 3040 matches

by jNizM
18 Mar 2015, 08:33
Forum: Scripts and Functions (v1)
Topic: TextConverter v0.2
Replies: 28
Views: 13050

Re: TextConverter v0.1

Next week I push an update and change the license too.

The Unicode Standard, Version 7.0
by jNizM
18 Mar 2015, 05:47
Forum: Scripts and Functions (v1)
Topic: TextConverter v0.2
Replies: 28
Views: 13050

Re: TextConverter v0.1

http://ahkscript.org/boards/viewtopic.php?p=5498#p5498 ^^ https://dl.dropboxusercontent.com/u/186419968/GitHub/TextConverter/TextConverter_v0.2/scr/Dec_to_Char.png Gui, Margin, 10, 10 Gui, Font, s9, Courier New Gui, Add, Text, xm ym w80 h22 0x200, % "Decimal" Gui, Add, Edit, x+5 ym w100 gConvert vVa...
by jNizM
18 Mar 2015, 02:29
Forum: Ich brauche Hilfe
Topic: Bilddaten direkt im Script speichern
Replies: 12
Views: 3500

Re: Bilddaten direkt im Script speichern

ja das geht (Bild als Base64String)
Ursprünglich von SKAN und erweitert von just me
Aus dem alten Forum board/topic/93292-image2include-include-images-in-your-scripts (Image2Include - #include images in your scripts)
by jNizM
16 Mar 2015, 02:05
Forum: Ask for Help (v1)
Topic: Gui/system default font
Replies: 4
Views: 3117

Re: Gui/system default font

Here is a function by SKAN (modiefied by me) to find out the Default Font and Font Size GuiDefaultFont() ; by SKAN (modified by jNizM) { hFont := DllCall("gdi32.dll\GetStockObject", "Int", 17, "Ptr") VarSetCapacity(LF, szLF := 60 * (A_IsUnicode ? 2 : 1)) DllCall("gdi32.dll\GetObject", "Ptr", hFont, ...
by jNizM
13 Mar 2015, 07:53
Forum: Ask for Help (v1)
Topic: automatically break loop when file loaded?
Replies: 4
Views: 1416

Re: automatically break loop when file loaded?

I mean break into loop example: loop { if (RoundTripTime("192.168.1.101", 800) >= 0) { Run 01.m3u8 break } sleep 200 } ExitApp ; Functions ===================================================================================================================== RoundTripTime(Address, Timeout := 800) ; by...
by jNizM
13 Mar 2015, 06:57
Forum: Ask for Help (v1)
Topic: Gui Refresh
Replies: 2
Views: 3073

Re: Gui Refresh

Code: Select all

[...]
MakeGui:
Gui, blabla
Gui, Show
return

F1:
    Gui, Destroy
    Gosub, MakeGui
return
[...]
by jNizM
13 Mar 2015, 05:13
Forum: Scripts and Functions (v1)
Topic: BinClock
Replies: 18
Views: 7578

Re: BinClock

Thanks and your welcome ;)
If I got some more time, I will rewrite the code
by jNizM
13 Mar 2015, 03:15
Forum: Scripts and Functions (v1)
Topic: Othello
Replies: 5
Views: 2671

Re: Othello

:thumbup:
by jNizM
13 Mar 2015, 03:12
Forum: Scripts and Functions (v1)
Topic: BinClock
Replies: 18
Views: 7578

Re: BinClock

@empardopo
You can use my tool for something like this ;)
TextConverter

Image

Code: Select all

● = Chr(9679)
○ = Chr(9675)
@GeekDude
Nice little tool :)
suggestions for improvement: Use Chr(n) for better compatibility (like above) and chooseable colors
by jNizM
11 Mar 2015, 07:20
Forum: AutoHotkey Development
Topic: AHK v2 and minimum operating system
Replies: 2
Views: 2895

AHK v2 and minimum operating system

Since we have AHK v1.1+ with minimum operating systems compatibility like 2k/XP/2003.

Is there a plan to remove the OS backward compatibility for these old "bastards" in v2?
So AHK v2 would be only aviable for Vista+ (or maybe Win 7)?
by jNizM
11 Mar 2015, 04:20
Forum: Tutorials (v1)
Topic: WinApi, DllCalls & AHK
Replies: 28
Views: 40573

Re: WinApi, DllCalls & AHK

update: Change License Fix Bugs Add Error handling Add Directory Management Functions \ CreateDirectory Add Directory Management Functions \ RemoveDirectory Add Directory Management Functions \ SetCurrentDirectory Add Mouse Input Functions \ ClipCursor Add System Information Functions \ GetUserName...
by jNizM
11 Mar 2015, 01:34
Forum: About This Community
Topic: autohotkey.com
Replies: 264
Views: 334932

Re: autohotkey.com

@fincs
+ dont forget the old german archive http://ahkscript.org/germans/forums/index.php
by jNizM
09 Mar 2015, 08:23
Forum: Ask for Help (v1)
Topic: FileSelectFile not showing full file name
Replies: 3
Views: 2157

Re: FileSelectFile not showing full file name

Hmm... I'm not a cpp expert, but here is the FileSelectFile() Source ResultType Line::FileSelectFile(LPTSTR aOptions, LPTSTR aWorkingDir, LPTSTR aGreeting, LPTSTR aFilter) // Since other script threads can interrupt this command while it's running, it's important that // this command not refer to sA...
by jNizM
09 Mar 2015, 03:35
Forum: Bug Reports
Topic: [Done] Change GetVersionEx to RtlGetVersion Topic is solved
Replies: 12
Views: 11260

Re: [Done] Change GetVersionEx to RtlGetVersion Topic is solved

Thanks for your great work lexikos.
by jNizM
09 Mar 2015, 02:28
Forum: Ask for Help (v1)
Topic: FileSelectFile not showing full file name
Replies: 3
Views: 2157

Re: FileSelectFile not showing full file name

Hmn... What do you mean exactly? Gui, Margin, 5, 5 Gui, Add, Edit, xm ym w380 h23 r3 vFSF_A Gui, Add, Button, xm y+5 w80 h23 gFile_A, % "File" Gui, Add, Text, xm y+10 w380 h1 0x10 Gui, Add, Edit, xm y+10 w380 h23 vFSF_B Gui, Add, Button, xm y+5 w80 h23 gFile_B, % "File" Gui, Show, AutoSize return Fi...
by jNizM
09 Mar 2015, 02:10
Forum: Forum Issues
Topic: [FIXED] Width of the Author part
Replies: 34
Views: 11767

Re: [FIXED] Width of the Author part

Here is something new to fix in "Facebook" (or more)
http://ahkscript.org/boards/viewtopic.php?f=9&t=6627
by jNizM
09 Mar 2015, 02:09
Forum: Ich brauche Hilfe
Topic: Neuling brauch hilfe
Replies: 3
Views: 1337

Re: Neuling brauch hilfe

Ich verstehe auch den Sinn nicht, warum Leute so oft nach merkwürigen "Spam"-scripten suchen o.O

Go to advanced search