AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Plug'n'Play GUI Settings Editor for your scripts (Version 6)
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sat Sep 02, 2006 9:09 pm    Post subject: Reply with quote

No, they are not.

1) It is pipe delimited
2) say you want to limit the amount of characters for an text field to 5. Then you specify "Limit5" in the Field Optiens. Basicaly you can add all options available in AHK for the type of control you choosed. Rajat decided not to list all possible options but to give the user free choice. Which I think was y good decision, since it will also work in the future when new options arise.

I hope your questions are answered. If you know where I could improve the code/gui so that it is more obvious how to use, please let me know.

If more question come up, please post them. With this feedback I also get an idea where problemy may be. Or Ideas for improvements. Thanks

Happy scripting
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sat Sep 02, 2006 9:22 pm    Post subject: Reply with quote

In the next release the Text above the Format field, will have this text:
"List of Choices (pipe-delimited)" for dropdownlist type
"Format (e.g. dddd MMMM d, yyyy hh:mm:ss)" for datetime type

At least one of your questions should be answered to new users in the future. As for the Field Options I do not know how to make it more clear.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
userabuser



Joined: 15 Jul 2006
Posts: 29

PostPosted: Sun Sep 03, 2006 5:10 am    Post subject: Reply with quote

toralf wrote:
In the next release the Text above the Format field, will have this text:
"List of Choices (pipe-delimited)" for dropdownlist type
"Format (e.g. dddd MMMM d, yyyy hh:mm:ss)" for datetime type

At least one of your questions should be answered to new users in the future. As for the Field Options I do not know how to make it more clear.


Thank You. I see what you mean on the Field Options. I wasn't even considering that it may be refering to ahk ControlType Options and other ahk options.

If you called it "KeyType Options"? and maybe you could just stick something in the .ahk file like this?

/*Usage Notes:
When you run the program, most options are self explanatory.

KeyType Options
These are options for the "Key Type" menu item.
You may insert any options you would normally use in ahk for that "key type"
Example, If you choose "text" for your "key type" you can put Limit5 in the "KeyType
Options" to limit the amount of characters for the text to 5.
*/
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sun Sep 03, 2006 7:10 am    Post subject: Reply with quote

Thanks,
I added the text to the ahk file (but didn't upload it to the first post yet).

I do not know if I should rename the text in the gui from "field options" to "keytype options". What do other users think of this? Which is more clear?
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Kerry



Joined: 20 Jul 2006
Posts: 146
Location: Los Angeles

PostPosted: Sun Sep 03, 2006 7:48 am    Post subject: Reply with quote

Wow, that was a bit of reading. I got busy with a few other cycles for about a month and stopped reading this, just read the last 2 1/2 pages.

Anyways, either one is fine I think, but I think it would be useful to add that to see the list of controls to go to AHK Help file and look for "GUI Control Types" so people know where to see them.

Sincerely,
Kerry

P.S. I'm reading the header for Ini File Creator 7, and a couple confusing lines:

- for integer key type nothing and integer numbers are allowed as value
- for float key type nothing, a dot ("."), integer and float numbers are allowed as value

"key type nothing"

I think it should be

- for integer key, type nothing and integer numbers are allowed as value
- for float key, type nothing, a dot ("."), integer and float numbers are allowed as value

Unless i'm getting the whole idea wrong
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Sep 03, 2006 8:51 am    Post subject: Reply with quote

I think instead of cluttering the GUI with long text labels, Statusbar messages or Tooltip help might be more intuitive. just my opinion though.
_________________
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sun Sep 03, 2006 9:17 am    Post subject: Reply with quote

Kerry wrote:
- for integer key type nothing and integer numbers are allowed as value
- for float key type nothing, a dot ("."), integer and float numbers are allowed as value
[...]
Unless i'm getting the whole idea wrong
Sorry for not being clear:

For integer key type:
- nothing and integer numbers are allowed as value

For float key type:
- nothing, a dot ("."), integer and float numbers are allowed as value

If someone could please advice me on better and clear wording.

@Rajat: you are right, as always. I guess statusbar is better since it doesn't distract the user from work too much. Or by default tooltips are shown and via context menu it can be turned off (saved between sessions). The later would be easier to add I think. But which is the best in respect to usability?
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Sep 03, 2006 8:51 pm    Post subject: Reply with quote

toralf wrote:
I guess statusbar is better since it doesn't distract the user from work too much. Or by default tooltips are shown and via context menu it can be turned off (saved between sessions). The later would be easier to add I think. But which is the best in respect to usability?

sorry for being late, i think statusbar is fine. also it's in line with the function as well.
_________________
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sun Sep 03, 2006 10:03 pm    Post subject: Reply with quote

That's too late, I added tooltips. :)
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Sep 03, 2006 10:08 pm    Post subject: Reply with quote

Smile
_________________
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sun Sep 03, 2006 10:27 pm    Post subject: Reply with quote

I updated the screenshots and the code of the INI file creator. It is now version 8:
Quote:
changes since version 7
- requires "../Anchor/Anchor_v3.3.ahk" => http://www.autohotkey.com/forum/viewtopic.php?t=4348
- added context menu to change resize behavior (needs restart)
- changed text above the format field to be more descriptive
- added tooltips (default on)
- added context menu to turn tooltips on/off (saved between sessions)
- improved handling of IniFileNeedsSave, but not solved completely (sometimes wrong warning even that nothing changed)

_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Kerry



Joined: 20 Jul 2006
Posts: 146
Location: Los Angeles

PostPosted: Sun Sep 03, 2006 10:45 pm    Post subject: Reply with quote

Hey, just an idea, but would it be possible to download the anchor code from the internet? I think keeping dependencies away from programs are a good idea Smile

-Kerry
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Titan



Joined: 11 Aug 2004
Posts: 5130
Location: eth0 ::1

PostPosted: Sun Sep 03, 2006 10:55 pm    Post subject: Reply with quote

Kerry wrote:
Hey, just an idea, but would it be possible to download the anchor code from the internet?
Sure, visit the site or the forum topic.
_________________

RegExReplace("irc.freenode.net/ahk", "^(?=(.(?=[\0-r\[]*((?<=\.).))))(?:[c-\x73]{2,8}(\S))+((2)|\b[^\2-]){2}\D++$", "$u3$1$3$4$2")
Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger MSN Messenger
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Mon Sep 04, 2006 11:55 am    Post subject: Reply with quote

Kerry wrote:
I think keeping dependencies away from programs are a good idea
yes, but I do not like redundant code. I have to update otherwise too much.

Please wait for the new AHK Toolbar. It has all the scripts and installs them automatically. So you do not have to worry. :) But it might take another week before that version gets out. I just post the individual scripts so people can use them now.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
userabuser



Joined: 15 Jul 2006
Posts: 29

PostPosted: Tue Sep 05, 2006 12:52 pm    Post subject: Reply with quote

May want to turn tooltips off when you move off the control.


Code:

    If (A_GuiControl <> ToolTipPrevControl) {
        ToolTip  ; Turn off tooltip if you moved off control
        ToolTipPrevControl := A_GuiControl



And of course a close. Smile


Code:

 GuiClose:
   ExitApp
  Return
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
Page 9 of 10

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group