| View previous topic :: View next topic |
| Author |
Message |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Sat Sep 02, 2006 9:09 pm Post subject: |
|
|
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 |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Sat Sep 02, 2006 9:22 pm Post subject: |
|
|
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 |
|
 |
userabuser
Joined: 15 Jul 2006 Posts: 29
|
Posted: Sun Sep 03, 2006 5:10 am Post subject: |
|
|
| 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 |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Sun Sep 03, 2006 7:10 am Post subject: |
|
|
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 |
|
 |
Kerry
Joined: 20 Jul 2006 Posts: 146 Location: Los Angeles
|
Posted: Sun Sep 03, 2006 7:48 am Post subject: |
|
|
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 |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1718
|
Posted: Sun Sep 03, 2006 8:51 am Post subject: |
|
|
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 |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Sun Sep 03, 2006 9:17 am Post subject: |
|
|
| 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 |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1718
|
Posted: Sun Sep 03, 2006 8:51 pm Post subject: |
|
|
| 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 |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Sun Sep 03, 2006 10:03 pm Post subject: |
|
|
That's too late, I added tooltips. :) _________________ Ciao
toralf  |
|
| Back to top |
|
 |
Rajat
Joined: 28 Mar 2004 Posts: 1718
|
Posted: Sun Sep 03, 2006 10:08 pm Post subject: |
|
|
 _________________
 |
|
| Back to top |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Sun Sep 03, 2006 10:27 pm Post subject: |
|
|
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 |
|
 |
Kerry
Joined: 20 Jul 2006 Posts: 146 Location: Los Angeles
|
Posted: Sun Sep 03, 2006 10:45 pm Post subject: |
|
|
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
-Kerry |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5130 Location: eth0 ::1
|
Posted: Sun Sep 03, 2006 10:55 pm Post subject: |
|
|
| 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 |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Mon Sep 04, 2006 11:55 am Post subject: |
|
|
| 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 |
|
 |
userabuser
Joined: 15 Jul 2006 Posts: 29
|
Posted: Tue Sep 05, 2006 12:52 pm Post subject: |
|
|
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.
| Code: |
GuiClose:
ExitApp
Return
|
|
|
| Back to top |
|
 |
|