AutoHotkey Community

It is currently May 27th, 2012, 9:34 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 146 posts ]  Go to page Previous  1 ... 6, 7, 8, 9, 10  Next
Author Message
 Post subject:
PostPosted: September 2nd, 2006, 9:09 pm 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 2nd, 2006, 9:22 pm 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 5:10 am 
Offline

Joined: July 15th, 2006, 7:36 pm
Posts: 31
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.
*/


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 7:10 am 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 7:48 am 
Offline

Joined: July 20th, 2006, 6:41 pm
Posts: 144
Location: Los Angeles
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 8:51 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
I think instead of cluttering the GUI with long text labels, Statusbar messages or Tooltip help might be more intuitive. just my opinion though.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 9:17 am 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 8:51 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
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.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 10:03 pm 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
That's too late, I added tooltips. :)

_________________
Ciao
toralf
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 10:08 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
:)

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 10:27 pm 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 10:45 pm 
Offline

Joined: July 20th, 2006, 6:41 pm
Posts: 144
Location: Los Angeles
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2006, 10:55 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
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.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 4th, 2006, 11:55 am 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 5th, 2006, 12:52 pm 
Offline

Joined: July 15th, 2006, 7:36 pm
Posts: 31
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 146 posts ]  Go to page Previous  1 ... 6, 7, 8, 9, 10  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Google Feedfetcher, nomissenrojb, Stigg and 19 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