Search found 175 matches

by brutus_skywalker
14 Jun 2017, 05:30
Forum: Scripts and Functions (v1)
Topic: [Function] FileIsType
Replies: 0
Views: 49648

[Function] FileIsType

Evaluates and classifies file type based on extension as; Audio,Video,Raster Image, Vector Image, 3D Image, Backup file, CAD file, RAW Camera file, Compressed, Data file, Developer file, Disk Image, eBook, Encoded, Executable, Font, Game file,GIS file, Page Layout file, Plugin file, Settings file, ...
by brutus_skywalker
13 Jun 2017, 02:35
Forum: Scripts and Functions (v1)
Topic: [Script] Media Remote Control - managed media playback from browser
Replies: 10
Views: 4382

Re: Media Remote Control

Interesting, although Maybe a small upgrade to the panel? simply changing black to white bg would be an improvement already haha ;) http://i.imgur.com/KyNBXw4.png Too bad is still haven't figured out how to use PNG buttons with AHKhttp instead of text buttons,may be a little help with figuring that...
by brutus_skywalker
29 May 2017, 02:45
Forum: Scripts and Functions (v1)
Topic: [Script] Media Remote Control - managed media playback from browser
Replies: 10
Views: 4382

Re: Media Remote Control

joedf wrote:Interesting :+1:
Care to make it better? , i think it could actually be sth really cool... :think:


Not exacly pretty,But does the job,made a few cool updates too,check 'em out...
by brutus_skywalker
27 May 2017, 01:04
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 43904

Re: AHKhttp - HTTP Server

badpost
by brutus_skywalker
27 May 2017, 00:58
Forum: Scripts and Functions (v1)
Topic: [Script] Media Remote Control - managed media playback from browser
Replies: 10
Views: 4382

[Script] Media Remote Control - managed media playback from browser

MediaRC Control PC media playback/media folders from any device with a browser,so kinda any device! To Verify it's working, check http://localhost:8000 Core server settings can be configured in ini file. jan2018:Minor Updates!, settling for the code as it is, no longer concerned with updating it. RE...
by brutus_skywalker
20 May 2017, 23:50
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 43904

Re: AHKhttp - HTTP Server

badpost
by brutus_skywalker
20 May 2017, 11:13
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 43904

Re: AHKhttp - HTTP Server

I've can't seem to get the server to load html pages with images(i.e not just loading an image from the server as given in the example), it loads text and other elements like buttons in the page but not the images. so i would appreciate it if someone could either point me towards a fix,or if some co...
by brutus_skywalker
18 May 2017, 10:45
Forum: Scripts and Functions (v1)
Topic: gdip / bass.dll radio stream player
Replies: 41
Views: 11959

Re: gdip / bass.dll radio stream player

Thank you both very much.
by brutus_skywalker
16 May 2017, 14:55
Forum: Scripts and Functions (v1)
Topic: gdip / bass.dll radio stream player
Replies: 41
Views: 11959

Re: gdip / bass.dll radio stream player

Could you possibly link the libs you used for image & file embeddings,thx. you seem to have used leaner functions than bin2hex/hex2bin...
by brutus_skywalker
12 Mar 2017, 13:14
Forum: Ask for Help (v1)
Topic: Compare 2 files for a match
Replies: 14
Views: 4208

Re: Compare 2 files for a match

final suggestion, instead of comparing strings or files, how about comparing the hashes of the downloaded files,here's a pretty good hashing function:

https://autohotkey.com/board/topic/8586 ... -md5-sha1/
by brutus_skywalker
10 Mar 2017, 09:29
Forum: Ask for Help (v1)
Topic: Compare 2 files for a match
Replies: 14
Views: 4208

Re: Compare 2 files for a match

Just do a size comparison,as FileSize reads size in bytes unless defined otherwise,it should be very accurate. This would be the same as counting the characters. If both IP addresses had the same number of characters, it would read as a match even if the IP addresses didn't match. Not very accurate...
by brutus_skywalker
10 Mar 2017, 09:21
Forum: Ask for Help (v1)
Topic: Compare 2 files for a match
Replies: 14
Views: 4208

Re: Compare 2 files for a match

Just do a size comparison,as FileSize reads size in bytes unless defined otherwise,it should be very accurate.

Code: Select all

FileGetSize, keySize, key
FileGetSize, ipSize, ip

if ipSize = keySize
  {
 MsgBox Match
  ExitApp
  }
by brutus_skywalker
08 Mar 2017, 10:31
Forum: Scripts and Functions (v1)
Topic: Advanced clipboard
Replies: 4
Views: 3318

Re: Advanced clipboard

Neat,could be better but Atleastyoutried, sorry couldn't resist ;)
by brutus_skywalker
08 Mar 2017, 10:15
Forum: Scripts and Functions (v1)
Topic: [Function][v1/v2] CloseOnOpen - Close specified windows.
Replies: 20
Views: 7223

Re: [Function] CloseOnOpen - Close specified windows.

Here's a rather primitive alternative , I tend to write a lot of those,Too LAZY :), for those who don't want to so much as touch 'code'.

https://autohotkey.com/boards/viewtopic.php?f=6&t=26150
by brutus_skywalker
07 Mar 2017, 02:38
Forum: Scripts and Functions (v1)
Topic: AHKroid sound mod
Replies: 1
Views: 2395

AHKroid sound mod

LET ME BE VERY CLEAR I DID NOT AUTHOR AHKROID, ZAELIA DID! I just added some sounds,so this is i guess a sound mod,nothing more,nothing less,better than nothing i figured,it's just really awsome code and besides who doesn't looove asteroids... As Helgef pointed out below,runs on 32bit ahk only... #...
by brutus_skywalker
05 Mar 2017, 00:54
Forum: Scripts and Functions (v1)
Topic: Animation on Mouse Click
Replies: 1
Views: 3445

Re: Animation on Mouse Click

SWEET!
by brutus_skywalker
04 Mar 2017, 05:16
Forum: Scripts and Functions (v1)
Topic: Ascend script directory,ALTERNATIVELY with 'up_A_ScriptDir()'
Replies: 13
Views: 3398

Re: Ascend script directory,with 'up_A_ScriptDir()'

Yeah,why is there no way to easily go up a level in ahk,even DOS has it, 'cd..', In AutoHotkey, the "cd" command is called "SetWorkingDir". SetWorkingDir, %A_WorkingDir%\.. %A_WorkingDir%\ is redundant. Have you forgotten what the working directory is for? ;) SetWorkingDir .. If you want to refer t...
by brutus_skywalker
04 Mar 2017, 05:12
Forum: Ask for Help (v1)
Topic: Insert name of previous month
Replies: 13
Views: 3112

Re: Insert name of previous month

just me wrote:

Code: Select all

FormatTime, LastMonth, % Format(A_YYYY . "{:02}", A_MM = 1 ? 12 : A_MM - 1), MMMM
MsgBox, %LastMonth%
well that's a novel approach if i ever saw one,makes my solution look a tad " "
by brutus_skywalker
04 Mar 2017, 01:42
Forum: Scripts and Functions (v1)
Topic: Ascend script directory,ALTERNATIVELY with 'up_A_ScriptDir()'
Replies: 13
Views: 3398

Re: Ascend script directory,with 'up_A_ScriptDir()'

TheDewd wrote:Very unlikely. If it can be easily achieved with a user function, which Helgef has proved it can, I don't think Lexikos will have any interest in adding to the AutoHotkey source code.
True,didn't really need it,just thought it would help out people getting started with ahk...
by brutus_skywalker
03 Mar 2017, 11:49
Forum: Ask for Help (v1)
Topic: Insert name of previous month
Replies: 13
Views: 3112

Re: Insert name of previous month

MsgBox,current month: %A_Mon% _ %A_MMMM% lastMonth := lastMonth("jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sept", "oct", "nov", "dec") MsgBox last month: %lastMonth% lastMonth(list*) ;this way you can decide how the element should count back.i.e a string like Feb, or 02... { Index := ...

Go to advanced search