Search found 1513 matches

by TheDewd
23 Sep 2015, 08:44
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 246643

Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)

I began working on a Windows 10 styled GUI, but became bored and decided to work on something else... It needs a little polish, but works well so far. I've attached the script and image files to this post. Feel free to use in your own project to apply the look of a Windows 10 application to older ve...
by TheDewd
23 Sep 2015, 07:00
Forum: Ask for Help (v1)
Topic: How do I run a ".ahk" file
Replies: 3
Views: 1001

Re: How do I run a ".ahk" file

http://www.autohotkey.com/docs/Tutorial.htm#Create
Double-click the file to launch it. A new icon appears in the taskbar notification area.
by TheDewd
17 Sep 2015, 12:50
Forum: Other Utilities & Resources
Topic: GitHub Tutorial?
Replies: 6
Views: 5304

Re: GitHub Tutorial?

I was basically just looking for a place for hosting AHK scripts and related files, as I've seen several other forum members do. It seems very advanced for something so simple though.
by TheDewd
17 Sep 2015, 08:49
Forum: Off-topic Discussion
Topic: New AutoHotkey Script Template
Replies: 30
Views: 28134

New AutoHotkey Script Template

I wanted to share my current Template.ahk file for new scripts. I have borrowed parts from different scripts I have found on the forums until I was satisfied with the result. It's setup to include a basic GUI window by default, which is easily removable if not required. ; ===========================...
by TheDewd
15 Sep 2015, 08:46
Forum: Other Utilities & Resources
Topic: GitHub Tutorial?
Replies: 6
Views: 5304

GitHub Tutorial?

Can someone instruct me on how to upload a AutoHotkey project to GitHub? Scripts and other resource files.

Also, feel free to suggest any alternatives that you prefer.
by TheDewd
21 Aug 2015, 09:37
Forum: Ask for Help (v1)
Topic: copy word (.doc) including header and footer
Replies: 2
Views: 1584

Re: copy word (.doc) including header and footer

Code: Select all

Word := ComObjGet("C:\Users\TheDewd\Downloads\Test.docx")
MsgBox, % Word.Sections(1).Headers(1).Range.Text
MsgBox, % Word.Sections(1).Range.Text
MsgBox, % Word.Sections(1).Footers(1).Range.Text
Word.Close()
by TheDewd
17 Aug 2015, 15:12
Forum: Other Utilities & Resources
Topic: Patch My PC
Replies: 3
Views: 3956

Re: Patch My PC

I use this daily to check for software and Windows updates. Thank you for linking to this!
by TheDewd
07 Aug 2015, 07:35
Forum: Ask for Help (v1)
Topic: get original date of direct link file without DL.
Replies: 6
Views: 3364

Re: get original date of direct link file without DL.

@nimda, I'm not sure why, but I received an error with your code: --------------------------- New AutoHotkey Script.ahk --------------------------- Error: 0x80070005 - Access is denied. Source: msxml6.dll Description: Access is denied. HelpFile: (null) HelpContext: 0 Specifically: send Line# 001: UR...
by TheDewd
15 Jul 2015, 09:24
Forum: Ask for Help (v1)
Topic: [SOLVED] Custom Borders Maximized Size & Position
Replies: 2
Views: 1324

Re: Custom Borders Maximized Size & Position

I added Gui, -Resize to WM_LBUTTONDOWN() , and then I added Gui, +Resize to the WM_NCHITTEST() function. This is basically a workaround to disable Aero Snap from maximizing the Gui. I am satisfied with the result... ; Global ===========================================================================...
by TheDewd
13 Jul 2015, 09:26
Forum: Ask for Help (v1)
Topic: [SOLVED] Custom Borders Maximized Size & Position
Replies: 2
Views: 1324

Re: Custom Borders Maximized Size & Position

I'm going to attempt this again. I apologize if the description of my problem did not make sense. This is why I am attaching my script (and images) to this post. I hope this will allow you to also see the problem I have and help to resolve it. The maximize button I have added will resize the Gui to ...
by TheDewd
10 Jul 2015, 15:29
Forum: Ask for Help (v1)
Topic: Hide from taskbar
Replies: 2
Views: 1686

Re: Hide from taskbar

http://www.autohotkey.com/board/topic/36931-hide-window-taskbar-icon/?p=231982 Works by applying ToolWindow style to a window. DetectHiddenWindows, On ^F2:: WinHide, % "ahk_id " (ID:=WinExist("A")) WinSet, ExStyle, ^0x80, ahk_id %ID% ; Apply ToolWindow Style WinShow, ahk_id %ID% Return #SingleInstan...
by TheDewd
10 Jul 2015, 11:24
Forum: Off-topic Discussion
Topic: AHKScript.org Activity Slowing?
Replies: 3
Views: 1748

AHKScript.org Activity Slowing?

Is it just me, or does it seem like the activity of the community here at AHKScript.org is slowing down? It seems to be much less active to me now.

It might all be in my head. :o
by TheDewd
10 Jul 2015, 11:08
Forum: Ask for Help (v1)
Topic: TransColor for GUI (only works with +AlwaysOnTop or +ToolWIndow)
Replies: 2
Views: 1750

Re: TransColor for GUI (only works with +AlwaysOnTop or +ToolWIndow)

Start off with Caption enabled, and then disable it after setting TransColor?

Code: Select all

Gui, Main: +Caption
;Gui, Main: +AlwaysOnTop
;Gui, Main: +ToolWindow
Gui, Main: Color, EEAA99
Gui, Main: +LastFound 
WinSet, TransColor, EEAA99
Gui, Main: -Caption
Gui, Main: Show, w600 h150
by TheDewd
08 Jul 2015, 12:15
Forum: Ask for Help (v1)
Topic: [SOLVED] Custom Borders Maximized Size & Position
Replies: 2
Views: 1324

[SOLVED] Custom Borders Maximized Size & Position

I have created a Gui that uses Picture controls to simluate normal window controls, such as the borders, Min/Max/Close buttons, Titlebar, etc. I'm using code by Lexikos to enable resizing the Gui using my fake borders by dragging the edges of the Gui. The problem I'm having is when I drag the Gui ne...
by TheDewd
26 Jun 2015, 08:13
Forum: Other Utilities & Resources
Topic: [File Editor] Resource Hacker
Replies: 4
Views: 8561

Re: [File Editor] Resource Hacker

Thank you! This program has improved and has a very different appearance since the last time I used it.
by TheDewd
24 Jun 2015, 12:03
Forum: Ask for Help (v1)
Topic: toggle SingleInstance Mode
Replies: 4
Views: 1323

Re: toggle SingleInstance Mode

I tried to think of a workaround for this. My idea involved reading and writing an external file when opening and exiting the script. If script was running, value in external file would be 1, and then 0 when you exit the script, etc. When you run the script it would first read this value, and would ...
by TheDewd
23 Jun 2015, 10:16
Forum: Scripts and Functions (v1)
Topic: WatchFolder() - updated on 2021-10-14
Replies: 152
Views: 89936

Re: WatchFolder()

It's interesting to watch the root of the C:\ drive with all the options enabled.
by TheDewd
19 Jun 2015, 15:44
Forum: Ask for Help (v1)
Topic: Always click same relative coordinate no matter window size
Replies: 3
Views: 3689

Re: Always click same relative coordinate no matter window size

The mouse clicked the coordinates in relation to the top-left corner of the browser window. The search box field will move inside the webpage as you expand the browser so that it can always be center. So, no, the mouse did not always click in the search box, but it did click at the coordinates that ...
by TheDewd
19 Jun 2015, 15:12
Forum: Ask for Help (v1)
Topic: Always click same relative coordinate no matter window size
Replies: 3
Views: 3689

Re: Always click same relative coordinate no matter window size

Your code works fine for me. The mouse is always clicked at the correct coordinates in relation to browser window. If you are wanting to click a specific part of a webpage, that would be more difficult since a webpage can realign its elements as you resize the browser window.
by TheDewd
19 Jun 2015, 10:51
Forum: Ask for Help (v1)
Topic: move Folder with wildcard in name
Replies: 2
Views: 1279

Re: move Folder with wildcard in name

Tested with AHK_L 1.1.22.02 This code will move the folder from one location to a different location. I hope it will help you. FileRemoveDir, C:\Users\User\Desktop\My stuff\Art Tutorials\Art\Blender Dev, 1 ; Delete directory Loop, Files, C:\Users\User\Desktop\Utility icons\Ketarin-1.7.0\Apps\Art\aa...

Go to advanced search