AutoHotkey Community

It is currently May 27th, 2012, 8:45 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: v1.0.21 released
PostPosted: October 12th, 2004, 8:50 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Here are the changes for v1.0.21: http://www.autohotkey.com/changelog/

Since I tried to focus on enhancing the existing controls and styles, there are no new control types this time (unless you count multi-select ListBox). New control types should be coming in the next version.

For anyone interested in designing data entry forms or custom user interface windows:

Rajat has released SmartGUI Creator, an entirely visual layout editor. It will automatically generate a working prototype GUI script according to your specifications.

It is free and can be downloaded from http://www.autohotkey.com/docs/SmartGUI/

Misc. Tip: URLs in the forum are automatically clickable, there is no need to use the URL tags or do any special formatting.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 13th, 2004, 1:15 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
just read the changelist Chris, thanx for the style and exstyle possibilities. Congrats on another cool ahk release!

_________________
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 13th, 2004, 1:54 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Thanks. I hope you're able to use the style and exstyle words to make "GUI Stealer" even better. Here is a working example that might help (you probably already planned this):
Code:
#Persistent
SetTimer, WatchCursor, 100
return

WatchCursor:
MouseGetPos,,, MouseWin, MouseControl
ControlGet, Style, Style,, %MouseControl%, ahk_id %MouseWin%
ControlGet, ExStyle, ExStyle,, %MouseControl%, ahk_id %MouseWin%
ButtonType =  ; Set default to be blank.
IfInString, MouseControl, Button
{
   Transform, ButtonType, BitAnd, %style%, 0xF  ; Get the last four bits.
   if ButtonType in 2,3,5,6  ; check, autocheck, 3state, auto3state (respectively)
      ButtonType = Checkbox
   else if ButtonType in 4,9  ; radio, autoradio (respectively)
      ButtonType = Radio
   else if ButtonType = 7  ; GroupBox
      ButtonType = GroupBox
   else ; Normal button, default button, picture button, etc.
      ButtonType = Pushbutton
}
ToolTip %MouseControl%`nStyle:`t`t%Style%`nExStyle:`t%ExStyle%`nButton Type:`t%ButtonType%
return


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 14th, 2004, 3:25 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
though i'd planned the same, the li'l button function of yours is certainly better than something i'd have done. thanx! :)

_________________
Image


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group