Search found 428 matches

by Alguimist
08 Nov 2015, 11:53
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 423967

Re: AutoGUI - GUI Designer and Script Editor

Exaskryz wrote:You may have other ways to access the properties that weren't documented in this post...
The properties dialog can be accessed from the Control menu (which is also the context menu), from the toolbar, or by pressing F10.
by Alguimist
05 Nov 2015, 15:15
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 423967

AutoGUI - Script Editor, GUI Designer, Debugger and Tools

AutoGUI is an Integrated Development Environment for AutoHotkey which combines a script editor with a GUI designer, debugger and tools. https://s8.postimg.cc/je3mkkwzp/Auto_GUI_v2.0.1.png :arrow: Download Script Editor Features: Multi-tabbed editor Syntax highlighting Autocompletion Code tooltips (c...
by Alguimist
28 Oct 2015, 14:05
Forum: Ask for Help (v1)
Topic: Multi lines
Replies: 4
Views: 1594

Re: Multi lines

Code: Select all

#a::
Send, Henry Knoll`n10081 103rd St. N.`nStillwater, MN 55082
Return
or

Code: Select all

#a::
Send,
(
Henry Knoll
10081 103rd St. N.
Stillwater, MN 55082
)
Return
by Alguimist
27 Oct 2015, 09:58
Forum: Ask for Help (v1)
Topic: ListBox resizing problem NO FULL HEIGHT
Replies: 4
Views: 1837

Re: ListBox resizing problem NO FULL HEIGHT

Add +0x100 (LBS_NOINTEGRALHEIGHT) to the ListBox options.
by Alguimist
14 Oct 2015, 00:53
Forum: Scripts and Functions (v1)
Topic: Alternative Font Dialog
Replies: 5
Views: 2682

Re: Alternative Font Dialog

Here is an example that demonstrates how to integrate this dialog with another script: a fake Notepad (go to Format > Font...): #NoEnv #Warn #SingleInstance Force #NoTrayIcon SendMode Input SetWorkingDir %A_ScriptDir% Global hFontDlg := 0 , FontName := "Segoe UI" , FontOptions := "s12 c0x003399" Men...
by Alguimist
11 Oct 2015, 08:58
Forum: Scripts and Functions (v1)
Topic: Alternative Font Dialog
Replies: 5
Views: 2682

Alternative Font Dialog

I'm using this dialog in a project I've been working on. Thought it might be useful to someone else.

The font list has only the most common typefaces, some of them not included on Windows XP.

Image
AltFontDlg.ahk
(10.56 KiB) Downloaded 214 times
by Alguimist
06 Oct 2015, 14:40
Forum: Announcements
Topic: Obsolete test build - Tab3 control with autosizing, SetTimer improvements
Replies: 78
Views: 63466

Re: New test builds - Tab3 control, Menu improvements, LoadPicture, new vars

With the advent of Tab3, the Tab2 will not be deprecated though, because it allows controls to be created outside the tab control, which can be very useful in some cases, for example, in a settings dialog, as follows:

Image
FileZilla Settings.ahk
(39.97 KiB) Downloaded 486 times
by Alguimist
05 Oct 2015, 17:20
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 245203

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

Not exactly an example of non-standard GUI: http://i.imgur.com/7S09mgE.png #NoEnv #Warn #SingleInstance Force SetWorkingDir %A_ScriptDir% SetBatchLines -1 Menu Tray, Icon, shell32.dll, 131 Gui Body: New, LabelBody hWndhBody Gui Color, White Gui Add, Edit, x-1 y-1 w0 h0 ; Focus Gui Font, s8 w700 cBla...

Go to advanced search