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 

GUI ideas
Goto page Previous  1, 2, 3 ... 8, 9, 10, 11, 12, 13  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> General Chat
View previous topic :: View next topic  
Author Message
beardboy



Joined: 02 Mar 2004
Posts: 444
Location: SLC, Utah

PostPosted: Mon Sep 13, 2004 7:43 pm    Post subject: Reply with quote

Quote:
does the last letter get cut a little on your system too?

It does on my laptop (Windows 2000).

thanks,
beardboy
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Mon Sep 13, 2004 8:20 pm    Post subject: Reply with quote

Quote:
does the last letter get cut a little on your system too?
Yes, I suspect it's because Tahoma doesn't have a built-in italic variant... or maybe some other reason. Switching to another typeface seems to fix it. I found a couple of confirming clues on the newsgroups:
Quote:
It is normal not to have an italic tahoma font. Word simply changes the shape of the font to achieve italics.

Using Tahoma Italic is not a good idea usually. There is no actual font file for Tahoma Italic so the windows rasteriser synthesises one on the fly. The regular version is simply slanted. There can be legibility problems.


Quote:
I'd like those Built-In Windows Colour thingy dialogue
I'll probably give the font dialog higher priority, since it includes a color selector inside it (though perhaps not as good as the color dialog's).
Back to top
View user's profile Send private message Send e-mail
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Mon Sep 13, 2004 10:40 pm    Post subject: Reply with quote

and alongwith password mode for editbox, u might also consider a 'noedit' mode.

sounds a bit absurd?... let me explain... there're some apps that want their output copiable right away (u don't need to use kleptomania!) ..but there's no need to edit/change the output, not even accidentally. then they use non-editable edit fields.
_________________
Back to top
View user's profile Send private message
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Tue Sep 14, 2004 12:04 am    Post subject: Reply with quote

did somebody noticed that one can't press buttons on ahk gui repeatedly as quickly as on some other interfaces (eg. windows calculator).
_________________
Back to top
View user's profile Send private message
beardboy



Joined: 02 Mar 2004
Posts: 444
Location: SLC, Utah

PostPosted: Tue Sep 14, 2004 12:23 am    Post subject: Reply with quote

I noticed, but thought it might have something to do with SetBatchLines, SetWinDelay, or SetControlDelay, but didn't play with any of them yet.

thanks,
beardboy
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Tue Sep 14, 2004 12:31 am    Post subject: Reply with quote

Quote:
consider a 'noedit' mode
Definitely on the list, thanks.

Quote:
one can't press buttons on ahk gui repeatedly as quickly as on some other interfaces
Nice catch! That's a bug related to the fact that double-click messages were being ignored (only the first click of a true double-click was being processed). It will be fixed in the next release.
Back to top
View user's profile Send private message Send e-mail
Nemroth



Joined: 07 Sep 2004
Posts: 262
Location: France

PostPosted: Tue Sep 14, 2004 4:21 am    Post subject: Reply with quote

Appologies, Chris and Beardboy.

Before I put a g option in an edit box but it was to use beardboy's way of control the input in an edit box !!! I didn't read his solution as well as I must !!! I tried it without reading it well !!! I must change of eyes....

So appologies Chris and Beardboy !!!
Back to top
View user's profile Send private message
Nemroth



Joined: 07 Sep 2004
Posts: 262
Location: France

PostPosted: Tue Sep 14, 2004 4:26 am    Post subject: Reply with quote

and Re appologies I answered in the wrong forum !!! I'm tired...
Back to top
View user's profile Send private message
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Thu Sep 16, 2004 5:03 pm    Post subject: Reply with quote

Congrats Chris on first major GUI-supported release!

and thanx a lot for making radio buttons the way u've done it... any other cmd format wud've reqd major changes to sgui code! Smile

here're some peculiarities i noticed:

-for some reason though the buttons take a dbl click as a dbl click, they don't show it... it seems to get pressed only once.

-in sgui the newly created controls are not accessible (in sgui main window)...buttons don't press, edit isn't editable etc. (it wasn't so till Release 2.0)

-if i create a button over a text control:
earlier it was accessible and visible, now its just visible

-if i create a text control over a button
in sgui it is not visible nor accessible
in test script its visible & accessible after first click at its position.
_________________
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Thu Sep 16, 2004 7:18 pm    Post subject: Reply with quote

Quote:
for some reason though the buttons take a dbl click as a dbl click, they don't show it... it seems to get pressed only once.
If a button's subroutine is already running, subsequent attempts to launch it will be ignored. Could this be what you're seeing? I did a test with rapid button clicks showing a counter in SplashText: the count captured the clicks as fast as I could make them.

Quote:
-in sgui the newly created controls are not accessible (in sgui main window)...buttons don't press, edit isn't editable etc. (it wasn't so till Release 2.0)
-if i create a button over a text control:
earlier it was accessible and visible, now its just visible
-if i create a text control over a button
in sgui it is not visible nor accessible
in test script its visible & accessible after first click at its position.
Should I be investigating these things on my end, or do you think it's something you changed?
Back to top
View user's profile Send private message Send e-mail
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Thu Sep 16, 2004 7:28 pm    Post subject: Reply with quote

Quote:
I did a test with rapid button clicks showing a counter in SplashText: the count captured the clicks as fast as I could make them.


sorry, i should have clarified... i meant that the button takes all clicks..process them well... but the button itself doesn't 'look' like being pressed twice by 2 quick presses. (compare with win calc to see)

Quote:
Should I be investigating these things on my end, or do you think it's something you changed?

i don't think i changed anything regarding these, so most probably its some ahk change.
_________________
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Thu Sep 16, 2004 7:33 pm    Post subject: Reply with quote

Quote:
I meant that the button takes all clicks..process them well... but the button itself doesn't 'look' like being pressed twice by 2 quick presses. (compare with win calc to see)
Thanks for the clarification. I'll try to fix that.

Quote:
i don't think i changed anything regarding these, so most probably its some ahk change.
I'm not doing anything unusual when creating the controls. Perhaps if you later have time to construct a short test script that can reproduce unwanted behavior, I can try to isolate it from that.
Back to top
View user's profile Send private message Send e-mail
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Thu Sep 16, 2004 7:59 pm    Post subject: Reply with quote

and Chris, do u have some idea how can different mouse cursors be implemented? ...like if a script is doing some processing, we present the hourglass cursor... or for precision, the crosshair one?
_________________
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Thu Sep 16, 2004 8:52 pm    Post subject: Reply with quote

I think cursors are pretty straight-forward; I've added it to the list. Thanks for the idea.
Back to top
View user's profile Send private message Send e-mail
beardboy



Joined: 02 Mar 2004
Posts: 444
Location: SLC, Utah

PostPosted: Thu Sep 16, 2004 9:01 pm    Post subject: Reply with quote

With Edit controls can ctrl+a be built in to select all? Or at least have it be an option?

thanks,
beardboy
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> General Chat All times are GMT
Goto page Previous  1, 2, 3 ... 8, 9, 10, 11, 12, 13  Next
Page 9 of 13

 
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