AutoHotkey Community

It is currently May 23rd, 2012, 6:15 pm

All times are UTC [ DST ]


Search found 49 matches
Search these results:

Author Message

 Forum: Scripts   Topic: Unit Converter

Posted: August 7th, 2011, 4:51 pm 

Replies: 60
Views: 10038


Small update to version 2.1 to fix heat capacity conversion conflict with specific heat. Technically these are both the same conversion with mostly the same "from" and "to" options.

 Forum: Scripts   Topic: IsPrime() - Check if Number is Prime

Posted: February 23rd, 2011, 9:38 pm 

Replies: 11
Views: 2426


You can use the two possible mod 6 candidates (33.3% of all integers), or the 8 possible mod 30 candidates (8/30 ~ 26.7% of all integers), and so on. For short numbers (up to 64 bits) cleverly generating the next divisor candidate is more costly than blindly trying the next odd number (50%), so the...

 Forum: Scripts   Topic: IsPrime() - Check if Number is Prime

Posted: February 23rd, 2011, 8:21 pm 

Replies: 11
Views: 2426


I like my version... It can be simplified a bit, and sped up: it is enough to try potential divisors only up to Sqrt(a): Prim(a) { Loop % Floor(Sqrt(a))-1 { If !Mod(a,A_Index+1) Return 0 } Return 1 } However, my function (posted to RosettaCode) pe...

 Forum: Support   Topic: how to start the script paused

Posted: February 7th, 2011, 4:13 pm 

Replies: 5
Views: 330


kissson wrote:
how the auto-exec method assign a hotkey to unpause the script ?


Assign a hotkey with the "Pause, off" command. Or use "Pause, toggle" to use a single hotkey for both.

 Forum: Support   Topic: [VxE]'s := guide ? ( to the ternary ) : ( operator ) .

Posted: February 3rd, 2011, 4:18 pm 

Replies: 61
Views: 13280


Does a script exist to turn ternary into If and Else? Maybe something that puts it in a tooltip when you hover over a ternary expression?

 Forum: Support   Topic: Extracting Embedded Variable Definitions From a Line

Posted: December 14th, 2010, 1:10 am 

Replies: 2
Views: 128


Yes, that's what I'm looking for. Thanks! I will update the thread once I verify this solves it, but it looks like it will.

 Forum: Support   Topic: Extracting Embedded Variable Definitions From a Line

Posted: December 13th, 2010, 11:40 pm 

Replies: 2
Views: 128


I have lots of 3-line blocks to read from a file with several = signs per block. Where there is an = sign I want to declare that variable exactly as it occurs in the block. Any ideas besides 10 or so "ifinstring" statements per block? I could parse by the = sign, but I feel like there is s...

 Forum: Scripts   Topic: Unit Converter

Posted: December 3rd, 2010, 7:22 pm 

Replies: 60
Views: 10038


I just thought I'd poke my head in and say that I'm glad that people are using / expanding this script. I have a toddler now and don't have time to work on it. Combine that with being out of work for 7 months and a lot of AHK scripts passed me by. Keep up the good work!

 Forum: Scripts   Topic: Create Local Environment Variable

Posted: January 14th, 2010, 11:59 pm 

Replies: 0
Views: 548


Here's a short script that will create a local environment variable and save the user the manual labor of clicking through all the Windows menus. The script closes once the variable is created. If you are using something other than Windows XP SP2 then you might need to change the windows menu tab nu...

 Forum: Scripts   Topic: Material Property Databasing Tool

Posted: December 2nd, 2009, 5:57 pm 

Replies: 13
Views: 4234


Thanks tidbit. When work gets slow messing around with Autohotkey is about the only thing that keeps me sane.

 Forum: Scripts   Topic: Material Property Databasing Tool

Posted: November 25th, 2009, 8:16 am 

Replies: 13
Views: 4234


Version 2.5 of the script is posted. It fixes a mistake with the Material Edit and Delete function when more than 10 materials are databased.

 Forum: Scripts   Topic: Material Property Databasing Tool

Posted: November 20th, 2009, 9:46 pm 

Replies: 13
Views: 4234


Version 2.4 of the script is posted. This is a major overhaul of the script. Bug fixes for several data display and update issues. Added an alphabetical material list sorting option. Real time updating of the drop down material lists is done as materials are added or deleted. Added an export MAT1 ma...

 Forum: Scripts   Topic: GUI projet... need help to start the wheel

Posted: July 14th, 2009, 10:58 pm 

Replies: 4
Views: 1636


As coded in the previous post, this would be the command to do what you want to keep the window on top of all others:

Gui +alwaysontop

 Forum: Scripts   Topic: Mass Video (+YouTube) Ripper with Multi-thread Downloader

Posted: July 10th, 2009, 7:59 pm 

Replies: 75
Views: 15079


I agree with how awesome this script is. Now I can download Youtube videos easily and all related videos linked to on the same page (or deeper) with a single click. I was in awe when I saw 8 videos downloading simultaneously. I can't think of any improvements for now. Fures, many thanks for this.

 Forum: Scripts   Topic: Unit Converter

Posted: July 7th, 2009, 4:19 pm 

Replies: 60
Views: 10038


tidbit wrote:
Just a small note: I used your Improved unit converter here.
and also stole the speed conversions :twisted:

Used.. Stole.. It's all fine with me. I'm just glad some of the work I put into the converter (with inspiration from you) is being used by others.
Sort by:  
Page 1 of 4 [ Search found 49 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group