Search found 14 matches

by Sidola
09 Nov 2014, 12:12
Forum: Announcements
Topic: Passwords
Replies: 18
Views: 26407

Re: Passwords

Me neither.
by Sidola
23 Sep 2014, 05:57
Forum: Ask for Help (v1)
Topic: AniGIF - Does it work with the latest version of AHK?
Replies: 2
Views: 1845

Re: AniGIF - Does it work with the latest version of AHK?

Ah, I didn't try putting the .dll in the root folder... Works perfectly now, thank you!
by Sidola
22 Sep 2014, 13:14
Forum: Ask for Help (v1)
Topic: AniGIF - Does it work with the latest version of AHK?
Replies: 2
Views: 1845

AniGIF - Does it work with the latest version of AHK?

Hi, I've been looking for a way to show gifs in a GUI or any kind of display and came across AniGIF , but I can't seem to get it working with the current version of AHK. I'm far to stupid to decipher what is actually going on in the code, so I figured I'd ask here. Has anyone managed to get AniGIF w...
by Sidola
03 Jul 2014, 15:24
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 245100

Re: Beautiful Examples of GUIs

Other than GDI+, I imagine using an ActiveX Webbrowser control and catching its events would be the optimal choice for designing GUIs.... This sounds awesome. Has anyone made a decent/up to date tutorial for how to make something like this? The AHK installer uses this method, right? I remember tryi...
by Sidola
02 Jul 2014, 15:20
Forum: About This Community
Topic: The AutoHotkey Foundation LLC
Replies: 39
Views: 64042

Re: The AutoHotkey Foundation LLC

Not sure if this is he right thread, but there's a small typo on the History Page . Mid-2012: polyethene decided to restore old 2009 version of AutoHotkey (v1.0.48.05) as the official version for still not understood reasons, removing all references to AHK_L in the main autohotkey.com site and perfo...
by Sidola
08 May 2014, 04:37
Forum: About This Community
Topic: Documentation formatting changes?
Replies: 53
Views: 29955

Re: Documentation formatting changes?

Another example would be these two pages: http://www.autohotkey.com/docs/Hotkeys.htm http://ahkscript.org/docs/Hotkeys.htm Another example of what? The "full-width backgrounds for the headers" were on most pages, so I don't know why you'd single out those two if that's what you're referring to. Tru...
by Sidola
07 May 2014, 11:59
Forum: About This Community
Topic: Documentation formatting changes?
Replies: 53
Views: 29955

Re: Documentation formatting changes?

Have to say I agree with the people saying the new design is a bit hard to follow. I think those full-width backgrounds for the headers really helped structure the page when you had to skim it. Another example would be these two pages: http://www.autohotkey.com/docs/Hotkeys.htm http://ahkscript.org/...
by Sidola
15 Jan 2014, 10:44
Forum: Ask for Help (v1)
Topic: Passing too few params to a class method?
Replies: 5
Views: 3926

Re: Passing too few params to a class method?

Sweet, meaning they will all return errors naturally?

Also, __Call is working great for all my methods except for the constructor, is there a way to include it in the __Call method or will I have to check the param count directly inside the constructor?
by Sidola
14 Jan 2014, 15:57
Forum: Ask for Help (v1)
Topic: Passing too few params to a class method?
Replies: 5
Views: 3926

Re: Passing too few params to a class method?

Thanks! I'll have a look at that.
by Sidola
14 Jan 2014, 15:12
Forum: Ask for Help (v1)
Topic: Passing too few params to a class method?
Replies: 5
Views: 3926

Passing too few params to a class method?

Quick question,

Passing too few parameters to a class method does not seem to produce any errors. Is this a bug or an intended behavior?

I did some searching, but I can only find one other post asking about this which sadly didn't have any answers.
by Sidola
11 Dec 2013, 13:29
Forum: Scripts and Functions (v1)
Topic: RestartExplorer() : Deprecated version
Replies: 13
Views: 8221

Re: RestartExplorer()

http://puu.sh/5JspP/4286c04915.png

This is what I get at home running x64, at work where I run x32 it worked perfectly. Can anyone confirm it working on W7 x64?
by Sidola
10 Dec 2013, 15:04
Forum: Scripts and Functions (v1)
Topic: RestartExplorer() : Deprecated version
Replies: 13
Views: 8221

Re: RestartExplorer()

Hm, not sure how to explain this, but when the script reaches the Run-part it only opens a folder, it doesn't actually start explorer.exe again. I have to do that manually through the task manager, File -> New Task (Run)

Is that intended? I'm on W7 x64.
by Sidola
27 Oct 2013, 17:00
Forum: Ask for Help (v1)
Topic: Help with COM (MSXML2 & SAX)
Replies: 4
Views: 3700

Re: Help with COM (MSXML2 & SAX)

After some more reading I found out that MXXMLWriter actually has some of the interfaces needed, so that could be used instead of a custom MyValidator class. ; XML File xmlFile := LoadXML("test.xml") ; Reader Object oReader := ComObjCreate("MSXML2.SAXXMLReader.6.0") ; Schema Object oSC := ComObjCrea...
by Sidola
23 Oct 2013, 14:47
Forum: Ask for Help (v1)
Topic: Help with COM (MSXML2 & SAX)
Replies: 4
Views: 3700

Help with COM (MSXML2 & SAX)

Hi, I've been playing around with MSXML2 the last few days, trying to make an XML-validator. I got a working validator using DOMDocument and XMLSchemaCache , which looks like this: xml := LoadXML("test.xml") xsd := ComObjCreate("MSXML2.XMLSchemaCache.6.0") xsd.Add("", "test.xsd") xml.Schemas := xsd ...

Go to advanced search