Search found 50 matches

by Chef
22 Jan 2015, 22:27
Forum: Scripts and Functions (v1)
Topic: PleasantNotify() - Beautiful popup msg, tooltip
Replies: 45
Views: 27790

Re: PleasantNotify() - Beautiful popup msg, tooltip

GDI is the only way to get eye-candy in ahk

This doesn't look good :/
Image
by Chef
22 Jan 2015, 22:11
Forum: Scripts and Functions (v1)
Topic: RefinePath()
Replies: 11
Views: 8124

Re: RefinePath()

Nice, but isn't it supposed to return the full path? Your function returns the exact input. Test code: list= (lTrim c ..\MyScript.ahk ..\..\CCleaner.exe \Pictures res\folder ?variable?\Master Of Puppets.mp3 ) loop, parse, list, `n, `r msgbox, % a_loopfield "`n" RefinePath( a_loopfield ) http://img91...
by Chef
13 Sep 2014, 23:35
Forum: Scripts and Functions (v1)
Topic: Class XNET {} - Monitor Network Interface
Replies: 7
Views: 7632

Re: Class XNET {} - Monitor Network Interface

Nice SKAN,

Is the timer in your test script supposed to detect changes to the network?
I tested it quickly, network connection status displays correctly on script startup (connected or not), but fails to detect further changes to connection status.
by Chef
21 Jun 2014, 03:40
Forum: Scripts and Functions (v1)
Topic: ILA - Add large images to a ListView
Replies: 7
Views: 4849

Re: ILA - Add large images to a ListView

Nice.
Again, these built-in listview functions should be avoided, use LVM instead.

Thanks for sharing Image
by Chef
20 Jun 2014, 04:01
Forum: Scripts and Functions (v1)
Topic: [Class] LV_Rows - Copy, Cut, Paste and Drag ListViews (Updated Dec, 28, 2020)
Replies: 31
Views: 19079

Re: [Class] LV_Rows - Copy, Cut, Paste and Drag ListViews

Any reason why your not using LVM to do all the work? Using built-in functions for listviews makes it impossible to use.
by Chef
12 Jun 2014, 10:01
Forum: Scripts and Functions (v1)
Topic: tv - a treeview wrapper/function library
Replies: 36
Views: 14328

Re: tv - a treeview wrapper/function library

BGM wrote:What does FTW mean?
A reversed "WTF" Image
by Chef
08 Mar 2014, 22:34
Forum: Scripts and Functions (v1)
Topic: [Function] Resize and Convert Images
Replies: 28
Views: 17984

Re: [Function] Resize and Convert Images

Nothing comes even close to ImageMagick.
by Chef
06 Mar 2014, 20:46
Forum: Scripts and Functions (v1)
Topic: [Function] Resize and Convert Images
Replies: 28
Views: 17984

Re: [Function] Resize and Convert Images

Nice, can you make it convert to ICO?
by Chef
19 Jan 2014, 11:38
Forum: Ask for Help (v1)
Topic: AutoHotkey version link
Replies: 8
Views: 2830

AutoHotkey version link

Is there an ahk version link on ahkscript.org?
I used to use this:
http://l.autohotkey.net/version.txt
But now it gives the following error:
Image

Thanks
by Chef
15 Jan 2014, 03:20
Forum: Scripts and Functions (v1)
Topic: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit
Replies: 95
Views: 74039

Re: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit

That's because info is being stored in an array, you can't messageBox it like that, you need a for loop.
Look at my code above.
by Chef
14 Jan 2014, 15:51
Forum: Ask for Help (v1)
Topic: Who called my app? Topic is solved
Replies: 9
Views: 4915

Re: Who called my app? Topic is solved

LinearSpoon wrote:Looks like you grabbed the old version before I made some edits... I didn't close the snapshot handle and I made some changes to improve the speed. *Shrugs*
Turned out it could be done without all those dllCalls, see my gist post above.
by Chef
13 Jan 2014, 02:39
Forum: Ask for Help (v1)
Topic: ICO container
Replies: 1
Views: 1627

ICO container

I'm making a video library app and want to view my videos as thumbnails of course, where each video file has a thumbnail image. After some digging in the forum I didn't find a descent way of downsizing a common image file (jpg,png etc) with some visual effects like centered or drop/background shadow...
by Chef
05 Jan 2014, 07:11
Forum: Scripts and Functions (v1)
Topic: InternetFileGetTime()
Replies: 8
Views: 5041

Re: InternetFileGetTime()

Thanks Image
by Chef
04 Jan 2014, 03:57
Forum: Scripts and Functions (v1)
Topic: InternetFileGetTime()
Replies: 8
Views: 5041

Re: InternetFileGetTime()

Hello SKAN, Could you please edit your function or post a new one that will work with ftp? I don't mind if it doesn't work to get the time (would be even better though http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/4.gif ). Here is an ftp page to test it on if you want... ftp://ftp.winzip.com/testd...
by Chef
03 Jan 2014, 03:07
Forum: Scripts and Functions (v1)
Topic: InternetFileGetTime()
Replies: 8
Views: 5041

Re: InternetFileGetTime()

Nice, and would be better if you can make it work with ftp links. I have a script where I need to get size of files on the internet, url_getHeader seems to work on most links, but not ftp ones. url_getHeader(URL) { ComObjError(0) WinHttpReq:= ComObjCreate("WinHttp.WinHttpRequest.5.1") WinHttpReq.Ope...
by Chef
01 Jan 2014, 05:05
Forum: Scripts and Functions (v1)
Topic: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit
Replies: 95
Views: 74039

Re: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit

Worked on this too, I think some functions could be better tweaked to work with handles instead of index.
here is my version...
by Chef
26 Dec 2013, 11:22
Forum: Ask for Help (v1)
Topic: I can't make a script to work only on specific window
Replies: 4
Views: 1926

Re: I can't make a script to work only on specific window

Put SetTitleMatchMode, 2 on top of your script and the if block something like this... else if(mon = 1 && edge = "Right") { ifwinActive, Firefox { ; <Action goes here> } } I'd prefer something like this... else if(mon = 1 && edge = "Right") { ifwinActive, ahk_exe firefox.exe { ; <Action goes here> }...

Go to advanced search