Search found 1452 matches

by Chunjee
16 Sep 2015, 13:12
Forum: About This Community
Topic: autohotkey.com
Replies: 264
Views: 337951

Re: autohotkey.com

Its kinda crazy that in 2015 we are still using php for forum software. That said phpBB is great.
by Chunjee
20 Jun 2015, 16:07
Forum: Ask for Help (v1)
Topic: Using COM with PDF files
Replies: 6
Views: 5516

Re: Using COM with PDF files

Seems like overkill. Whats the benefit?

regards

J.B.
by Chunjee
19 Jun 2015, 02:50
Forum: Gaming Help (v1)
Topic: Image Search Help Topic is solved
Replies: 2
Views: 2551

Re: Image Search Help Topic is solved

Pixelsearch is dumb. Can you link to the image you are using in your search? The way I would construct the script might look something like this: Busy = False While !(Busy) { ;While Not busy with something else... ImageSearch, FoundLocX, FoundLocY, 0, 0, 1000, 1000, %A_ScriptDir%\PartialMonsterImage...
by Chunjee
19 Jun 2015, 02:37
Forum: AHK Studio
Topic: AHK Studio
Replies: 1179
Views: 627607

Re: AHK Studio

Been using this recently. I like it a lot.
by Chunjee
15 Jun 2015, 17:15
Forum: Ask for Help (v1)
Topic: Using COM with PDF files
Replies: 6
Views: 5516

Re: Using COM with PDF files

Alternatively the method have used is to convert the entire pdf thing to txt with Xpdf (http://www.foolabs.com/xpdf/download.html). Then you can read the file as you normally would. The drawback is you need to include that exe. Might look like: RunWait, %comspec% /c %A_ScriptDir%\PDFtoTEXT.exe %TheS...
by Chunjee
12 Jun 2015, 14:49
Forum: Tutorials (v1)
Topic: AHK Howto - Wish I had known from the start
Replies: 33
Views: 36651

Re: AHK Howto - Wish I had known from the start

Added Lesson Seven
Run, RunWait, While
by Chunjee
04 Jun 2015, 22:18
Forum: Tutorials (v1)
Topic: AHK Howto - Wish I had known from the start
Replies: 33
Views: 36651

AHK Howto - Wish I had known from the start

Recorded some videos yesterday and today about getting started with AHK; the stuff I wish I had known from the start. Little worried I might be going too fast but I want to get building real tools as quickly as possible because that is where I started to appreciate AHK most. Hope someone will find t...
by Chunjee
04 May 2015, 08:48
Forum: Ask for Help (v1)
Topic: COM help
Replies: 5
Views: 1547

Re: COM help

Are you trying to say customer_combo_name is the same as Affected End User? Obviously you replaced your real name with "My name"

What are you using to read all the page elements?
by Chunjee
04 May 2015, 08:42
Forum: Ask for Help (v1)
Topic: COM help
Replies: 5
Views: 1547

Re: COM help

Sounds like you can't create the ticket without a value for "Affected End User"?
Maybe something like this?

Code: Select all

Newframe.document.getelementsbyname("Affected_End_User")[1].value := "Impacted Enduser"
by Chunjee
04 May 2015, 08:27
Forum: Ask for Help (v1)
Topic: Strange issues with writing files.
Replies: 6
Views: 2039

Re: Strange issues with writing files.

Is it possible to use task manager or perfmon in your cloud environment to see which user is running the old .exe and see if that matches the new one? https://msdn.microsoft.com/en-us/library/aa645516%28v=vs.71%29.aspx Perhaps worth playing with RunAs to launch the program? http://ahkscript.org/docs...
by Chunjee
04 May 2015, 07:29
Forum: Ask for Help (v1)
Topic: Strange issues with writing files.
Replies: 6
Views: 2039

Re: Strange issues with writing files.

Might try a different directory. like C:/temp

Sometimes I run into issues where the running user does not have permission to write (or read!) certain network locations or certain user directories. Recently I had trouble because admin permission is needed to mess with C:/Program Files/
by Chunjee
28 Feb 2015, 11:28
Forum: Scripts and Functions (v1)
Topic: MyRC - The AutoHotkey IRC bot framework!
Replies: 5
Views: 7399

Re: MyRC - The AutoHotkey IRC bot framework!

I've been using this extensively for two different projects. Seriously thank you for this.
by Chunjee
15 Jan 2015, 01:46
Forum: Scripts and Functions (v1)
Topic: [AutoHotkey Programming Tools] + Featured Scripts
Replies: 113
Views: 223744

Re: [AutoHotkey Programming Tools]

all the endpoint downloads for Compile_AHK II seem to be broken; can we get it uploaded somewhere modern?
by Chunjee
06 Jan 2015, 11:30
Forum: Scripts and Functions (v1)
Topic: Class RichEdit - update on 2015-04-14 (v0.1.05.00)
Replies: 204
Views: 80733

Re: Class RichEdit - rich edit control for AHK (Unicode)

Don't know if there is a better place/way to post this but I'll offer a $30 paypal bounty if someone wants to get images working correctly.

Thanks for the class just me.
by Chunjee
05 Jan 2015, 16:56
Forum: Ask for Help (v1)
Topic: UpDown Headaches
Replies: 9
Views: 3385

Re: UpDown Headaches

Still not clear what you are talking about. http://www.urbandictionary.com/define.php?term=up-down

lazy updownleftright?
by Chunjee
21 Dec 2014, 12:52
Forum: Gaming Help (v1)
Topic: [Help]Kingsroad simple bot
Replies: 3
Views: 4582

Re: [Help]Kingsroad simple bot

After someone finishes this "simple bot"; could they also work on a "simple CPU amplifier" for me?


Real Answer:
Use ImageSearch to scan the screen and find enemies.
by Chunjee
21 Dec 2014, 10:35
Forum: Ask for Help (v1)
Topic: "FileMove" a file which is currently created
Replies: 8
Views: 2322

Re: "FileMove" a file which is currently created

uh that's a simpler way to do it; yes ^^"
by Chunjee
20 Dec 2014, 19:11
Forum: Ask for Help (v1)
Topic: "FileMove" a file which is currently created
Replies: 8
Views: 2322

Re: "FileMove" a file which is currently created

Didn't know this was being applied to 1000's of files. Would recommend one of two things. 1) Use an array to keep track of each file and its size,size_check2,current_location,destination,time 2) Use Robocopy to handle all of your file moving; fairly confident it will not interact with a file that is...
by Chunjee
20 Dec 2014, 03:41
Forum: Ask for Help (v1)
Topic: "FileMove" a file which is currently created
Replies: 8
Views: 2322

Re: "FileMove" a file which is currently created

Wrote a little example to see if the file size has changed in the last two seconds. If the filesize it the same; it's probably done being created. Increase the time if it builds slower than that. FileGetSize, OutputVar1 , %FilePath_File%, k Sleep 2000 FileGetSize, OutputVar2 , %FilePath_File%, k If ...

Go to advanced search