Search found 173 matches

by Learning one
14 Dec 2016, 01:56
Forum: Ask for Help (v1)
Topic: Script to do a series of key inputs?
Replies: 5
Views: 4807

Re: Script to do a series of key inputs?

Then use Window Class. For example: #IfWinActive ahk_class Notepad
by Learning one
09 Dec 2016, 16:14
Forum: Ask for Help (v1)
Topic: Script to do a series of key inputs?
Replies: 5
Views: 4807

Re: Script to do a series of key inputs?

Code: Select all

$+w::			; registers Shift+w hotkey ($  forces keyboard hook)
Send, ^r		; sends Ctrl+r
Send, {Down 5}	; sends down arrow key 5 times
Send, {Enter}	; sends enter
return			; finishes hotkey subrputine
by Learning one
11 Jun 2016, 13:59
Forum: Ask for Help (v1)
Topic: HyperLinks in Auto Hot Key
Replies: 12
Views: 5129

Re: HyperLinks in Auto Hot Key

In which program typing gs has to insert GameSpot hyperlink instead of "http://www.gamespot.com/213/example"
by Learning one
11 Jun 2016, 13:42
Forum: Ask for Help (v1)
Topic: HyperLinks in Auto Hot Key
Replies: 12
Views: 5129

Re: HyperLinks in Auto Hot Key

I hope example script below is what you're looking for; When you type "fb" and press space, if MS Word is active window, and there is a opened document, script will insert Facebook hyperlink. #IfWinActive ahk_class OpusApp ::fb:: MSWordInsertHyperlink("Facebook","http://www.facebook.com/") return #I...
by Learning one
11 Jun 2016, 13:12
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts

@metacognition : ... I just can't promise to check back twice a month to see if you've changed your license ... Yeah, I definitely agree that's to often :) , but maybe that's why Radial menu scripts topic has more than 338000 views on the old forum . :P Just joking. ;) @Dubs : Joefango gave you rea...
by Learning one
09 Jun 2016, 06:45
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts

@metacognition, Dubs : I was planning and still plan to change the license, but until then, if you don't like the license and/or MsgBox-es, simply don't use Radial menu. Long time ago I offered collaborative RM development to the community, which also included possible license change. Others defini...
by Learning one
19 Mar 2016, 07:58
Forum: Off-topic Discussion
Topic: Administrator war
Replies: 22
Views: 9558

Re: Administrator war

I know it's just a game/joke but maybe someone might get offended... :|
by Learning one
15 Mar 2016, 14:30
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts - new: HTML-AHK radial menu examples

@joefango : I'm glad you like it - thanks. I hope I'll find some free time to make further improvements... @beeski : Do you mean this: "DoItOrSetup" radial menu ? @ozzii : I forgot ot mention I tested it on Windows 10... You have scrollbars? Try to add this inside html style tags; body { overflow:h...
by Learning one
04 Mar 2016, 07:11
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts

Here are some HTML-AHK radial menus https://dl.dropboxusercontent.com/u/171417982/AHK/Radial%20Menu/HTML-AHK%20radial%20menu%20examples.jpg This technique allows you to use the power of AutoHotkey combined with Javascript, HTML, CSS and GDI+. There are many HTML/CSS/JS based radial menus/circular na...
by Learning one
28 Feb 2016, 20:06
Forum: Scripts and Functions (v1)
Topic: [function] CreateTreeView
Replies: 3
Views: 2929

Re: [function] CreateTreeView

Hi bish01, here's example; TvDefinition= ( Apps Expand Calculator Notepad Folders Expand My Documents Program Files ) Gui, New, +HwndhGui Gui %hGui%:Add, TreeView, gTreeView h200 CreateTreeView(TvDefinition) Gui %hGui%:Show return GuiClose: ExitApp TreeView: if (A_GuiEvent != "DoubleClick") return T...
by Learning one
12 Feb 2016, 13:38
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts - updated 21.12.2015.

@Wickster : RM refines Item action and intentionally turns something like this: Run, %A_ProgramFiles%\Steam\SteamApps\common\Age2HD\Launcher.exe into this Run, Launcher.exe, %A_ProgramFiles%\Steam\SteamApps\common\Age2HD because long time ago there was request to split full path into target and wor...
by Learning one
06 Feb 2016, 03:33
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts - updated 21.12.2015.

@HannibalHotkey : I have XButton1 set to show the menu. I'd like to make that a toggle to hide it as well (if the menu is showing, XButton1 hides it). What is the best way to accomplish that? There's no easy way at the moment - you'll have to modify internal codes. I notice when I launch my menu, a...
by Learning one
25 Jan 2016, 14:21
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts - updated 21.12.2015.

@mikemonk : I somehow missed your post... sorry Is there a function built in that allows to switch profiles from the menu itself? There's no built-in function, but you can make your own; as you did. :) Here's my version which accepts parameters and allows you to change profile and skin; ChangeProfi...
by Learning one
20 Jan 2016, 03:54
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 336
Views: 175192

Re: Radial menu scripts - updated 21.12.2015.

Hi! Radial menu is great! What is the "secret" to unlocking more than 60 items (4 rings) per menu? Hi Kityn. The secret is to change ItemLayoutPerRing . Default value is 6.12.18.24 - it starts with 6 items in 1. ring and gives you ability to have up to 60 items per menu. If you change (increase) th...
by Learning one
20 Jan 2016, 02:58
Forum: Ask for Help (v1)
Topic: [solved] ActiveX: Shell.Explorer vs HtmlFile, border-radius
Replies: 12
Views: 8223

Re: [solved] ActiveX: Shell.Explorer vs HtmlFile, border-radius

Coco, Lexikos, thank you again! :)
I'll use Gui Add, ActiveX, vWB w800 h600, about:<!DOCTYPE html><meta http-equiv="X-UA-Compatible" content="IE=edge">
P.S. wb variable name was left behind after quick copy/paste - it's now corrected; replaced with doc. :shh: ;)
by Learning one
18 Jan 2016, 06:03
Forum: Ask for Help (v1)
Topic: [solved] ActiveX: Shell.Explorer vs HtmlFile, border-radius
Replies: 12
Views: 8223

Re: ActiveX: Shell.Explorer vs HtmlFile, border-radius

I'll have to reopen this topic. When I use Shell.Explorer and navigate to a page which has the following meta-tag; <meta http-equiv="X-UA-Compatible" content="IE=Edge"> , everything is fine - a see rounded borders; Gui, Add, ActiveX, x2 y2 w300 h200 vwb, Shell.Explorer wb.Navigate("https://dl.dropbo...
by Learning one
27 Dec 2015, 14:42
Forum: Ask for Help (v1)
Topic: [solved] ActiveX: Shell.Explorer vs HtmlFile, border-radius
Replies: 12
Views: 8223

Re: ActiveX, Shell.Explorer, style, border-radius

Lexikos, TidbiT, Coco,
thank you for fast and professional help. I'll use X-UA-Compatible meta-tag; <meta http-equiv="X-UA-Compatible" content="IE=Edge">
by Learning one
26 Dec 2015, 19:34
Forum: Ask for Help (v1)
Topic: [solved] ActiveX: Shell.Explorer vs HtmlFile, border-radius
Replies: 12
Views: 8223

[solved] ActiveX: Shell.Explorer vs HtmlFile, border-radius

When I run script below, buttons don't have rounded corners [bad], but when I display the same page in browser they have rounded corners [good]. In other words, border-radius property doesn't have effect when ran from AHK script.. Why is this happening? What am I doing wrong? Tested on Windows 10; M...
by Learning one
26 Dec 2015, 15:26
Forum: Scripts and Functions (v1)
Topic: [functions] More GDI+ functions
Replies: 5
Views: 3497

[functions] More GDI+ functions

Here are more GDI+ functions which are not part of Tic's GDI+ standard library: GraphicsPath usage example:
Image
by Learning one
26 Dec 2015, 15:17
Forum: Scripts and Functions (v1)
Topic: [function] LV_GetSelectedText
Replies: 0
Views: 1112

[function] LV_GetSelectedText

Continued from old [function] LV_GetSelectedText thread.

Go to advanced search