Search found 520 matches

by sinkfaze
02 Oct 2013, 10:18
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

May need to edit content, I believe the While -loop can now be done as a For -loop COM Object : PowerPoint.Application Purpose: Create powerpoint presentations System Requirements: Microsoft Office Powerpoint application, OS>Win2000 Documentation Link: MSDN article , WMI article Other Links: Applic...
by sinkfaze
02 Oct 2013, 10:14
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : Excel.Application Purpose: Perform calculations, analyse information and visualise data in spreadsheets. System Requirements: Microsoft Office Excel application Documentation Link: http://msdn.microsoft.com/en-us/library/bb149067 Other Links: Basic Code Example: oExcel := ComObjCreate(...
by sinkfaze
02 Oct 2013, 10:11
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : Word.Application Purpose: create and edit various documents System Requirements: Microsoft Office Word application Documentation Link: http://msdn.microsoft.com/en-us/library/bb148369 Other Links: Basic Code Example: oWord := ComObjCreate("Word.Application") ; create MS Word object oWo...
by sinkfaze
02 Oct 2013, 10:08
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object: ImageMagickObject COM+ Object Purpose: ImageMagick® is a software suite to create, edit, and compose bitmap images. System Requirements: ImageMagickObject COM+ Object Documentation Link: Other Links: http://www.imagemagick.org/script/binary-releases.php#windows Basic Code Example: oI :=...
by sinkfaze
02 Oct 2013, 10:04
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : SAPI.SpVoice Purpose: Text-to-Speech System Requirements: General Documentation Link: SpVoice Interface Code Example: Text := "Hello World!" SAPI := ComObjCreate("SAPI.SpVoice") MsgBox,, Rate: 0, Speak the Text SAPI.speak(Text) MsgBox,, Rate: -7, Slow down the Speech SAPI.rate := -7 SA...
by sinkfaze
02 Oct 2013, 09:59
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object: MSXML2.DOMDocument.6.0 Purpose: XML parser System Requirements: Windows XP SP3, Vista, 7 Documentation Link: MSDN Other Links: A Beginner's Guide to the XML DOM Basic Code Example: xmldata = ( <?xml version="1.0"?> <compactdiscs> <compactdisc> <artist type="individual">Frank Sinatra</ar...
by sinkfaze
02 Oct 2013, 09:55
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : Shell.Application Purpose: Access Explorer & IE Windows/Tabs; Open & Manipulate Windows System Requirements: General Documentation Link: Shell Object Other Links: ShellWindows Collection Code Example: The Windows Property returns the ShellWindows Collection, which is extremely helpful ...
by sinkfaze
02 Oct 2013, 09:53
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : InternetExplorer.Application Purpose: Explore Websites System Requirements: General Documentation Link: Reference for Developers Other Links: NavConstants , CMD IDs , Basic Webpage Controls Code Example: ;// open Standard Internet Explorer wb := ComObjCreate("InternetExplorer.Applicati...
by sinkfaze
02 Oct 2013, 09:07
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : Google Desktop Purpose: manually feed items for google desktop to index System Requirements: Google Desktop Documentation Link: http://code.google.com/apis/desktop/docs/indexapi.html Other Links: following is a translation of this python plugin: kongulo . registerAhkIndexer() Loop, %A_...
by sinkfaze
02 Oct 2013, 09:03
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object: Microsoft Outlook Purpose: Read and Write Appointments from calendar System Requirements: Microsoft Outlook: tested with 2010 and 2007 Documentation: http://support.microsoft.com/kb/220595 Other Links: following is a translation of this vb.net script. olFolderCalendar := 9 ; Outlook.OlD...
by sinkfaze
02 Oct 2013, 08:56
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : ScriptControl Purpose: Dynamically execute VBScript or JScript NOTE : Many VBScript & JScript scripts can be translated to AHK, rather than using the ScriptControl object. (see the last example) System Requirements: 32bit AHK ( see here for 64bit compatability) Documentation Link: Usin...
by sinkfaze
01 Oct 2013, 23:56
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

GFL SDK is a library to load/save easily graphics formats. It has the features : Import about 100 graphic file formats Export about 40 graphic file formats Support of 10/12/16bits per component Color mode convert Lut transforms (brightness, contrast, ...) Filters (blur, average, ...) Tools (resize,...
by sinkfaze
01 Oct 2013, 23:49
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : HTMLFile Purpose: Represents an HTML document. Can be used to read, write, & interact with HTML. System Requirements: General Documentation Link: d ocument object Other Links: W3Schools - Document Object Basic Code Example - this example extracts all the text & URLs from the links on t...
by sinkfaze
01 Oct 2013, 23:45
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object : WinHttpRequest Purpose: Provides simple HTTP client functionality, allowing much more control than UrlDownloadToFile. System Requirements: General* Documentation Link: http://msdn.microsoft.com/en-us/library/aa384106.aspx Basic Code Example: WebRequest := ComObjCreate("WinHttp.WinHttpR...
by sinkfaze
01 Oct 2013, 23:43
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

COM Object: Scripting.Dictionary Purpose: Object that stores data key, item pairs. System Requirements: General Documentation Link: Dictionary Object Other Links: Basic Code Example: sd := ComObjCreate("Scripting.Dictionary") ;// Add Items sd.Add("Name", "AutoHotkey") sd.Add("Abv", "AHK") sd.Item("...
by sinkfaze
01 Oct 2013, 23:38
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

Re: COM Object Reference

Retrieve file path of the selected file Explorer_GetSelection(hwnd="") { WinGet, process, processName, % "ahk_id" hwnd := hwnd? hwnd:WinExist("A") WinGetClass class, ahk_id %hwnd% if (process = "explorer.exe") if (class ~= "Progman|WorkerW") { ControlGet, files, List, Selected Col1, SysListView321,...
by sinkfaze
01 Oct 2013, 23:35
Forum: Scripts and Functions (v1)
Topic: COM Object Reference
Replies: 54
Views: 104661

COM Object Reference

This is a rebuild of the original COM Object Reference thread, minus the tangential discussions. Please keep an eye out for any potential code improvements to keep this repository up to date with the latest AHK changes. jethrow's original opening post: Purpose : to create a basic reference for comm...
by sinkfaze
01 Oct 2013, 23:13
Forum: About This Community
Topic: Directional question
Replies: 28
Views: 16796

Re: Directional question

But isn't that the main problem? As long as autohotkey.com will remain in polys hands, it will keep new users from this forum. I don't know about that...seems like promotion of the site has done okay thus far, and if he intends to let the site lapse into neglect anyway I don't he stands much chance...
by sinkfaze
01 Oct 2013, 22:42
Forum: About This Community
Topic: Directional question
Replies: 28
Views: 16796

Re: Directional question

Why are we referring to Lexikos' work as AHK_L again? AFAIK Poly has no legitimate claim over the name AutoHotkey (AHK) aside of the domain. If Lexikos wishes for the software to be called AHK_L I am of course all for it, but he has no less claim to that name than anyone else other than Chris. That ...
by sinkfaze
01 Oct 2013, 10:37
Forum: Forum Issues
Topic: Forum structure
Replies: 24
Views: 13146

Re: Forum structure

If/when the "Utilities" and "Programming" subforums are created here, I think they should be renamed so as to avoid confusion that seems to have become prevalent at the current forums. Something like this: Other Utilities Discuss other great software and utilities that can improve digital life. Othe...

Go to advanced search