Search found 1460 matches

by TLM
24 Oct 2013, 00:19
Forum: Ask for Help (v1)
Topic: How to retrieve all RAS connections using api?
Replies: 3
Views: 2879

Re: How to retrieve all RAS connections using api?

I found the WMI Win32_PerfFormattedData_RemoteAccess_RASTotal class, with a count total property qualifier. It may do what you want and seems fast enough. Please test this out and let me know if it counts the RAS connections. CoordMode, Tooltip, Screen Loop { For Item in ComObjGet("winmgmts:").ExecQ...
by TLM
23 Oct 2013, 23:59
Forum: Ask for Help (v1)
Topic: how to detect web connection is lost?
Replies: 23
Views: 14822

Re: how to detect web connection is lost?

Code: Select all

Loop {
    For Item in (ComObjGet("winmgmts:").ExecQuery("Select * from Win32_NetworkAdapter"),l:="")
        l.=Item.NetEnabled
    If !InStr(l,-1)
        TrayTip,, Network Disconnected!
}

ESC::ExitApp	; <-- Press escape to exit.
by TLM
23 Oct 2013, 23:46
Forum: General Discussion
Topic: Discussions about Autohotkey Livechat / Autohotkey IRC
Replies: 18
Views: 15406

Re: Autohotkey Livechat / Autohotkey IRC

You cannot cloak/hide IP/Hostnames if you connect to Freenode via webchat. (ie joining the #ahk channel from a browser)
If you have one, you must use a standalone chat client for the cloak to work.

**confirmed by Freenode staff**
by TLM
21 Oct 2013, 20:19
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4901
Views: 1432774

Re: « What's on your mind? » Topic is solved

BBM for IOS and Android is out now: http://view.b.blackberry.com/?j=fefb1577716305&m=fe8d137075670c757d&ls=fe5610767d60027f7113&l=ff6515717d&s=fe63107073620c7c7614&jb=ff251175726d&ju=fece17717367077c&CPID=CRM_E_BBM_01_US_BBMX_NC_HAND_RAISERS_1013_XX_297414EB1A8CA0CA88CAE7430A58632F&r=0 Goodbye Black...
by TLM
20 Oct 2013, 16:51
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4901
Views: 1432774

Re: « What's on your mind? » Topic is solved

its weird that this isn't tomoe's thread...
by TLM
13 Oct 2013, 22:56
Forum: Scripts and Functions (v1)
Topic: Drawing & Handwriting Objects. Great for touchscreen devices
Replies: 27
Views: 15812

Re: [Solved] COM INK control issues. KeyUp, KeyDown and KeyP

Global ss Gui, +hwndMYGUI Gui Add, Text,, % "Draw in the picture box below`n" . "Press D to toggle erasing. [ C toggles spot/stroke erase ]`n" . "Press E to toggle Edit Mode.`n" . "In Edit Mode you can scale, move, copy and paste strokes.`n" . "H Docks the control to the program manager [ experimen...
by TLM
13 Oct 2013, 20:19
Forum: Scripts and Functions (v1)
Topic: Drawing & Handwriting Objects. Great for touchscreen devices
Replies: 27
Views: 15812

Re: [Solved] COM INK control issues. KeyUp, KeyDown and KeyP

The correct property is AutoRedraw http://msdn.microsoft.com/en-us/library/windows/desktop/dd314679%28v=vs.85%29.aspx Global ss Gui, +hwndMYGUI Gui Add, Text,, Draw in the picture box below`nPress E to toggle erasing.`nSwitching to erase mode also smooths the strokes. Gui Add, ActiveX, xm w600 h300 ...
by TLM
13 Oct 2013, 18:24
Forum: Scripts and Functions (v1)
Topic: Drawing & Handwriting Objects. Great for touchscreen devices
Replies: 27
Views: 15812

Re: [Solved] COM INK control issues. KeyUp, KeyDown and KeyP

tidbit I got the MouseUp() event and smooth application working. Its so fast that I had to put sleep in front of it.. Global ss Gui, +hwndMYGUI Gui Add, Text,, Draw in the picture box below`nPress E to toggle erasing.`nSwitching to erase mode also smooths the strokes. Gui Add, ActiveX, xm w600 h300 ...
by TLM
13 Oct 2013, 09:43
Forum: Scripts and Functions (v1)
Topic: Drawing & Handwriting Objects. Great for touchscreen devices
Replies: 27
Views: 15812

Re: COM INK control issues. KeyUp, KeyDown and KeyPress

Nice work Jethrow :D
So it was a pointer based array after all.
I was very close to this..
by TLM
11 Oct 2013, 14:04
Forum: Off-topic Discussion
Topic: Test your Forum Posts
Replies: 422
Views: 225243

Re: Test your Forum Posts

Code: Select all

; incredible hulk like comment

Code: Select all

; incredible hulk like comment -- generic
by TLM
10 Oct 2013, 18:24
Forum: Scripts and Functions (v1)
Topic: Drawing & Handwriting Objects. Great for touchscreen devices
Replies: 27
Views: 15812

Drawing & Handwriting Objects. Great for touchscreen devices

Microsoft INKEdit object allows you to embed drawing and hand writing recognition into a GUI. Here a simple example: Gui Add, Text,, Draw in the picture box below Gui Add, ActiveX, xm w600 h300 vss, msinkaut.InkPicture.1 Gui Add, Text,, Use handwriting recognition below (write letters and wait a bit...
by TLM
10 Oct 2013, 15:41
Forum: Off-topic Discussion
Topic: Test your Forum Posts
Replies: 422
Views: 225243

Re: Test your Forum Posts

testing GeSHi Syntax Highlighter

Code: Select all

;some code

Code: Select all

#notrayicon
OnMessage(0x111,somefunc)
return
there we go..
by TLM
07 Oct 2013, 22:20
Forum: Other Utilities & Resources
Topic: Maths
Replies: 59
Views: 25577

Re: Maths

Alibaba wrote:Don't you know about our awesome codebox!? ;) :D
Agree!
Spoiler
by TLM
07 Oct 2013, 22:19
Forum: Off-topic Discussion
Topic: Test your Forum Posts
Replies: 422
Views: 225243

Re: Test your Forum Posts

Spoiler
by TLM
07 Oct 2013, 22:12
Forum: About This Community
Topic: Free proxy for those who have issues viewing autohotkey.com
Replies: 1
Views: 39255

Re: Free proxy for those who have issues viewing autohotkey.

thnx.
I have 'poxy' running on my hosted server.
Let me know if anyone needs yet another tunnel and I will make it public
by TLM
07 Oct 2013, 12:11
Forum: Ask for Help (v1)
Topic: Looking for opinions on a library management script
Replies: 14
Views: 8168

Re: Looking for opinions on a library management script

This sounds like a wonderful idea guys. A great way to rebuild and maintain script libraries too.
by TLM
05 Oct 2013, 09:01
Forum: Announcements
Topic: Permanent Domain
Replies: 183
Views: 158045

Re: Permanent Domain

For new and potential users, having the words autohotkey in the url is kind of essential.
I watched a video from Hak5 recently and they referred to it as such.
It made me realize that most people would be more familiar with the full name.
by TLM
02 Oct 2013, 16:34
Forum: Off-topic Discussion
Topic: Test your Forum Posts
Replies: 422
Views: 225243

Test your forum posts 2

testing gist tags
by TLM
01 Oct 2013, 08:21
Forum: Forum Issues
Topic: Thanks tank!
Replies: 30
Views: 16092

Re: Thanks tank!

Tank my man! Nice job brotha
by TLM
01 Oct 2013, 08:03
Forum: Forum Issues
Topic: Forum structure
Replies: 24
Views: 13311

Re: Forum structure

are all the scripts going to be pulled over?

Go to advanced search