AutoHotkey Community

It is currently May 27th, 2012, 6:33 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 816 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6 ... 55  Next
Author Message
 Post subject:
PostPosted: September 8th, 2004, 7:51 pm 
Offline

Joined: August 21st, 2004, 12:43 am
Posts: 104
I really don't mean to be a pest but ...

Quote:
Mayhem, get latest download of ahk and read 1st page posts below my post.


I've read these 2 pages over and over and i see nothing pertaining to how to impliment the GUI to our AHK scripts.

I am using the latest version 1.0.18.

Could someone point out the post he's talking about? (I apologize in advance for being blind)

Thanks!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 8th, 2004, 7:56 pm 
Offline

Joined: September 2nd, 2004, 1:08 am
Posts: 124
Location: Sunnyvale
Mayhem wrote:
I really don't mean to be a pest but ...

Quote:
Mayhem, get latest download of ahk and read 1st page posts below my post.


I've read these 2 pages over and over and i see nothing pertaining to how to impliment the GUI to our AHK scripts.

I am using the latest version 1.0.18.

Could someone point out the post he's talking about? (I apologize in advance for being blind)

Thanks!


http://www.autohotkey.com/forum/viewtopic.php?t=748

_________________
I am he of whom he speaks!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 8th, 2004, 9:48 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
Sweeeeeeeeeeeeet!

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 9th, 2004, 6:33 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
Download updated. Due to addition of the custom hotkey feature, a li'l bug crept in that prevented basic form resize... now fixed.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 9th, 2004, 6:35 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
Quote:
I've read these 2 pages over and over and i see nothing pertaining to how to impliment the GUI to our AHK scripts.


mayhem, if u need help on gui functions then u'll have to see the 2 scripts Chris added in the gui version of ahk's .zip file.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 8:31 am 
Offline

Joined: March 2nd, 2004, 10:10 pm
Posts: 443
Location: SLC, Utah
I'm sure you are already working on it, but is there going to be a new version to go along with the latest gui changes?

thanks,
beardboy


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 8:33 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
there'll be. soon. and a BIG one! 8)

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 3:00 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
Release 2.0 - Guyz This one is BIG!
( i skipped a few releases because the last release candidate broke due to recent changes in GUI feature, and with all these major changes it virtually became a new application ...winamp 5.0 logic? ; )


Changes:
-The biggie 'Edit existing GUI scripts' is here!!!! yes now its possible!!! (my earlier plan and beardboy's suggestion too)

-And the awesome 'Move Group'!!... select a group of controls and move all of them together!... try it! its even sexy to look at!!

-MicroEditing. This stops controls from snapping to 10 pixel gaps and allows controls to be moved one pixel at a time.

-Constant Target Control and SmartGUI Window statistics display.

-Very stable control placement fix. the earlier version placed all controls about 2-3 pixels up (not a mojor difference...but its fixed now).


To move group of controls:
just select 'Move Group' from menu and drag mouse left button to completely cover all the controls that you want to be included in the group, and then move them to your hearts content using the control panel !
I remember Chris mentioned more than once that creating a GUI maker in some programming language is better than doing it in AHK, as maybe there one can select group of controls, while here it can't be done. so its basically his idea.
-well who says there are limits?! : )


Things to take care of while editing existing GUI scripts:
-No same line comments on 'Gui, add' statements
-For now, Font and Color are not supported.
-For now, it'll not work with GUIs having relative placing. The placing must be absolute (x30 y40 w130 h20)

you can understand it like this:
If you create a GUI using SmartGUI, u can edit it with SmartGUI... if you create one yourself (using auto-sizing etc.), u have to edit it yourself! :)


known issues:
combobox (and dropdownlist which is also combobox) is still a bit troublesome. apart from flashing, i'd to do a fix for the combobox control (i don't like control-specific fixes as that ain't elegant coding). and sometimes dropdownlist doesn't stick to its upper left corner (atleast on my PC) when mouse is clicked. the errors are not due to some problem with SmartGUI (afaik) but something else, which i'd like to track down.


do let me know if and what u like / dislike, bug reports and any feature requests... your constant interest will keep the project going.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 3:34 pm 
Offline

Joined: August 19th, 2004, 10:53 pm
Posts: 326
Just gave the new one a try and did a combo box and when it was done and tried to run it got this error .
---------------------------
Generated.ahk
---------------------------
Error: Parameter #2 is not a valid GUI control type.

Specifically: ComboBox

Line#
---> 003: Gui,Add,ComboBox,x27 y31 w220 h30


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 4:02 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
bobheart, u need to have the latest gui version download:
http://www.autohotkey.com/download/
or
http://www.autohotkey.com/misc/GuiAlphaTest.zip

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 4:13 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The latest SG looks grrreat! I have only one tiny suggestion. Instead of generating this:
WinWaitClose, Generated using SmartGUI

I think it would be nicer (since scripts are now auto-persistent and because it gets people in the right habit) to generate:
Code:
return

GuiClose:
ExitApp

Thanks.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 6:40 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
Chris,
it was easily done so did it right away.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 10th, 2004, 6:46 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Thanks!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 11th, 2004, 12:24 am 
Offline

Joined: August 19th, 2004, 10:53 pm
Posts: 326
I'm going to some upgrades on the server in a few min's so the smartgui will be off line for about maybe 1/2 hour . I will post back when it is on line .


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 11th, 2004, 12:43 am 
Offline

Joined: August 19th, 2004, 10:53 pm
Posts: 326
Should be back on line now .


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 816 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6 ... 55  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo and 20 guests


You can 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