AutoHotkey Community

It is currently May 24th, 2012, 9:09 am

All times are UTC [ DST ]


Search found 33 matches
Search these results:

Author Message

 Forum: Support   Topic: Control Pandora with hotkeys!

Posted: March 15th, 2012, 1:28 pm 

Replies: 8
Views: 2092


Thanks for those. Now, we just have to map the media keys to those commands, eh? Next step is an RF remote control. (Waterproof, too, for in-shower use.) Activate the Pandora window (yes this means Pandora should be its own window with one tab) ;;;;;;;;;;;;;;;;;;;;shortcut commands;;;;;;;;; ;; Play/...

 Forum: Scripts   Topic: Colorette v1.0 - Lightweight colorpicker

Posted: March 15th, 2012, 4:27 am 

Replies: 14
Views: 2530


I wrote a blog post about how to use Colorette to set the RGB colors of Revit materials: http://revitlearningclub.blogspot.com/2 ... -into.html

Thanks for sharing the app, sumon.

 Forum: Support   Topic: Read .XLS without Excel?

 Post subject: Re: DLL to read XLS file
Posted: November 8th, 2010, 9:50 pm 

Replies: 11
Views: 2364


henrin wrote:
...Here you can find a free DLL and a sample program (C) :
http://perso.numericable.fr/hserindat/xlsread/
...
Great. Can anyone think of a way to use that DLL directly in AHK? Or would we have to modify and compile the sample C++ code to make it output text and then read-in that text?

 Forum: Scripts   Topic: HotkeyCamo [0.62.11b] AutoHotkey Basic Compile Wrapper

Posted: October 14th, 2009, 2:43 pm 

Replies: 152
Views: 22793


How does this differ in effectiveness with Compile_AHK II using the NoDecompile option?

 Forum: Support   Topic: Best way to always do something when a window appears?

Posted: May 8th, 2009, 4:58 pm 

Replies: 12
Views: 1500


What is the best way to always wait for an occasional window, then do something? I have: loop { Sleep, 1000 IfWinExist, Microsoft Office, Opening { WinActivate Send, {LEFT}{ENTER} } } but it doesn't seem to be the most efficient. Is there a better way?

 Forum: Support   Topic: Read .XLS without Excel?

 Post subject: Read .XLS without Excel?
Posted: April 22nd, 2009, 10:32 pm 

Replies: 11
Views: 2364


Any way to read fields directly from an .XLS file without Excel?

 Forum: Support   Topic: How to access non-image files' thumbnails?

Posted: April 5th, 2009, 4:35 am 

Replies: 3
Views: 517


Although I'll not post the code, I'd like to tell you that's possible with AHK. I myself had found IExtractIcon , and IExtractImage with less extent, useful. Um, nice to know it's not a lost cause. The BBC BASIC for Windows code from http://bb4w.wikispaces.com/Extracting+a+file%27s+thumbnail also w...

 Forum: Support   Topic: How to access non-image files' thumbnails?

Posted: April 5th, 2009, 4:01 am 

Replies: 3
Views: 517


http://msdn.microsoft.com/en-us/library/aa289172.aspx#sharept_topic2 seems to have some clues how to do this with C++ or Visual Basic. It says, Extracting Thumbnails The popularity of document management and content management systems such as Microsoft SharePoint are rising. These types of applicati...

 Forum: Support   Topic: ImageSearch

Posted: March 20th, 2009, 6:45 pm 

Replies: 22
Views: 1118


I was having a similar problem on the second pass. Seemed to me that if the mouse arrow was covering the part of the screen AHK is searching for, it didn't find the image. So I did a MouseMove on error and repeated the search: ClickShow: WinGetPos RevitX, RevitY, RevitWidth, RevitHeight, Revit Sleep...

 Forum: Support   Topic: How to access non-image files' thumbnails?

Posted: March 20th, 2009, 6:26 pm 

Replies: 3
Views: 517


I would like to display non-image files' thumbnails in an AHK GUI. These are the same thumbnails displayed by Windows Explorer in the View>Thumbnails mode. I have not found any way to do it.

Clues appreciated.

 Forum: Scripts   Topic: MS Office Automation Functions (via COM) [thanks Sean]

Posted: March 18th, 2009, 2:09 pm 

Replies: 295
Views: 66177


I added this to my Word.ahk script and it seems to work, now. uuid() { ; v1.0 - by Titan static n, l n += l = A_Now f := A_FormatInteger, t := A_Now, s := "" SetFormat, Integer, H t -= 1970, s t := (t . A_MSec) * 10000 + 122192928000000000 Random, x, 0x100, 0xfff Rando...

 Forum: Scripts   Topic: MS Office Automation Functions (via COM) [thanks Sean]

Posted: March 18th, 2009, 2:08 am 

Replies: 295
Views: 66177


ahklerner wrote:
[I will make the post better later.. :) ]
Tested on Office 2003 Pro...
I'm getting a nonexistent function error on this line:
Code:
sCaption := "[" . UUID() . "]"
Please advise. (Where can I get the UUID function?)

 Forum: Support   Topic: ListView Scrollbars?

Posted: March 6th, 2009, 1:13 am 

Replies: 3
Views: 502


I found the culpit. I was making the ListView too big. GuiSize: if A_EventInfo = 1 GuiControl, Move, MyListView, % "W" . (A_GuiWidth - 255) . " H" . (A_GuiHeight - 40) This is what worked: GuiSize: if A_EventInfo = 1 GuiControl, MoveDraw, MyListView, % "W&quo...

 Forum: Scripts   Topic: search indexing functions - stdlib

Posted: March 3rd, 2009, 9:21 pm 

Replies: 21
Views: 6040


Could Google's advanced search help? Like: http://www.google.com/search?hl=en&as_q=listview+scrollbars&as_epq=&as_oq=&as_eq=&num=100&lr=&as_filetype=&ft=i&as_sitesearch=http%3A%2F%2Fwww.autohotkey.com%2Fforum&as_qdr=all&as_rights=&as_occt=body&cr=&...

 Forum: Support   Topic: Simple GUI IE Browser window which executes some HTML?

Posted: March 3rd, 2009, 8:09 pm 

Replies: 9
Views: 1073


Download the latest version of COM That helps. Here is the simplified code for anyone to use: width=350 height=250 subject=Hello HTML= ( <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>%subject% </ti...
Sort by:  
Page 1 of 3 [ Search found 33 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group