AutoHotkey Community

It is currently May 24th, 2012, 8:02 am

All times are UTC [ DST ]


Search found 35 matches
Search these results:

Author Message

 Forum: Scripts   Topic: open a console window on the current folder from explorer.

Posted: May 19th, 2012, 4:58 pm 

Replies: 4
Views: 157


garry wrote

Quote:
hello sal,
works fine , I used run, %comspec% , so don't needs the send commands

Code:
ControlGetText, edittext , edit1, ahk_class CabinetWClass
if substr(edittext,2,1) <> ":"
return
Run, %comspec%,%edittext%
return


thanks garry I will try that it is much better

 Forum: Scripts   Topic: open a console window on the current folder from explorer.

Posted: May 18th, 2012, 6:12 pm 

Replies: 4
Views: 157


hi guy this is a tiny script to open a console window on the current folder from explorer. tested on windows XP (ahk_class CabinetWClass) I think in windows 7 the controls are diferent so make the nesesary changes #ifwinactive, ahk_class CabinetWClass #q:: ; WIN + q ControlGetText, edittext , edit1,...

 Forum: Scripts   Topic: A script to rename files from explorer (counter or prefix)

Posted: November 18th, 2011, 1:48 pm 

Replies: 3
Views: 1335


randomguy wrote looks great, but it puts the output files in the script's folder? In Explorer I don't enable display full address in the Title Bar, is that the reason? But I tried to disable it and it is still the same Hi randomguy. the script outputs the renamed files in the same folder where you s...

 Forum: Scripts   Topic: A script to show tooltip on controls, autohotkey basic and L

Posted: September 7th, 2011, 12:41 pm 

Replies: 5
Views: 1242


konaboy wrote: Sal, Words can not convey my appreciation for your script!! Thank you Konaboy for you apreciation and inproving my script I test it and I liked: I have one comment, as far as I know a tooltip is suposed to appear once when entering a control and not moving with the mouse then it is is...

 Forum: Scripts   Topic: A script to rename files from explorer (counter or prefix)

Posted: September 4th, 2011, 3:05 am 

Replies: 3
Views: 1335


Hi guys I created this script to quickly rename files from explorer. from explorer it is not posible to change the file extencion to a file but with this script you can change it or move to another drive or path (selecting a single file or single folder) if you select several files you have the choi...

 Forum: Scripts   Topic: [AHK_L] MS Word+Excel AutoSaver

Posted: August 25th, 2011, 12:03 pm 

Replies: 3
Views: 729


I hope some one find this useful I used it a lot at work because there were electric problems and the PC will shut down suddenly. This is my autosave script. mine saves any documents you chose to save and saves the chosen documents in an ini file so if you use certain documents often they will be sa...

 Forum: Scripts   Topic: [AHK_L] MS Word+Excel AutoSaver

Posted: August 24th, 2011, 1:03 pm 

Replies: 3
Views: 729


capitalH nice script you did. I will share my script next time because i need to translated it in inglish. mine saves any documents you chose to save and saves the chosen documents in an ini file so if you use certain documents often they will be saved. ability to add or delet documents to save. it ...

 Forum: Scripts   Topic: Script for people who like to run portable.

Posted: August 23rd, 2011, 12:49 pm 

Replies: 7
Views: 3033


it is a nice way to run a script on any pc without autohotkey installed. guys may be you don't know this, but you can drag any file and drop it on the autohotkey.exe file on the explorer window and it will run it. that's what i do from work. or you may create a gui with a combobox with choice to run...

 Forum: Scripts   Topic: InputBox() - easy & powerful InputBox implementation

Posted: August 20th, 2011, 1:52 pm 

Replies: 1
Views: 1523


berban wrote Why use InputBox()? Shortens code required to make an InputBox. Also, functions are generally more versatile than commands. InputBoxes are always-on-top Simplifies the long and confusing list of parameters that come with the built-in command by assuming some (x, y, width, height) and re...

 Forum: Scripts   Topic: A script to send special characters to the active window

Posted: July 3rd, 2011, 12:53 am 

Replies: 4
Views: 562


Tanks to Guest for the tip in the loop my loop was loop ; it will loop from char 161 to 255 { index := index + 1 special_chr := chr(index) Menu, Menuchar, Add, %special_chr%, MenuHandler all := chr(index) . A_space . all if index > 255 break } his loop while (index < 25...

 Forum: Scripts   Topic: A script to send special characters to the active window

Posted: July 2nd, 2011, 1:46 am 

Replies: 4
Views: 562


; author sal salocruz@yahoo.com ; this is a script to send special characters to the active window ; I hope some one finds it useful it works for me ; just choose the character from the pop up menu index := 161 while (index < 256) { Menu, Menuchar, Add, % chr(index), MenuHandler...

 Forum: Scripts   Topic: A script to show tooltip on controls, autohotkey basic and L

Posted: June 18th, 2011, 5:18 pm 

Replies: 5
Views: 1242


fragman wrote Please report on the other topic. I believe there was a version which was supposed to work with all ahk versions. Superfraggl wrote a script but I have not tested yet. it think it works for all versions http://www.autohotkey.com/forum/topic30300.html&sid=a03b3a349b0ef40cfd6f3c6fd80...

 Forum: Scripts   Topic: A script to show tooltip on controls, autohotkey basic and L

Posted: June 18th, 2011, 1:53 am 

Replies: 5
Views: 1242


Hi Guys I have created this script to show a tooltip over a control it does not requieres timers and it works on autohotkey basic. some one wrote a funtion for autohotkey_L the problem with that is that it requires a bunch of AHK files to be included. I tried to test it but it was missing one file s...

 Forum: Scripts   Topic: open a command prompt window on the current explorer path

Posted: June 12th, 2011, 12:36 am 

Replies: 3
Views: 394


Thanks for your tip summon I knew I was missing something :D

 Forum: Scripts   Topic: open a command prompt window on the current explorer path

Posted: June 11th, 2011, 10:43 pm 

Replies: 3
Views: 394


hi Guys this is a small Script that will open a command prompt window and take you to the current path on window explorer I hope some one finds it useful #p:: ; WIN + P ifwinactive,ahk_class CabinetWClass { ControlGetText, address , edit1,ahk_class CabinetWClass Run, cmd.exe, %address% } e...
Sort by:  
Page 1 of 3 [ Search found 35 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group