It is currently Sun May 19, 2013 8:58 pm

All times are UTC - 8 hours




Post new topic Reply to topic  [ 1091 posts ]  Go to page Previous  1 ... 42, 43, 44, 45, 46, 47, 48 ... 73  Next
Author Message
 Post subject: Re: DropIt
PostPosted: Tue Dec 20, 2011 8:09 am 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
What do you propose? A note in the Guide?

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Tue Dec 20, 2011 9:33 am 
Offline
User avatar

Joined: Mon Feb 05, 2007 10:38 am
Posts: 66
Location: Sweden
[Aside] guinness, please suggest to him that he should fix it instead of e.g. mentioning it in the Guide (who reads guides? :shock: ). In ALL the programs I use it says Del and NEVER Backspace to the right of the Delete option in the menus etc.

_________________
Get Screamer!


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Tue Dec 20, 2011 11:14 am 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
Ok ok :mrgreen: ..I fixed it..now to remove a monitored folder the hotkey is Ctrl+R..

An idea: to make the interface more user-friendly, what do you think if I report the hotkeys in button tooltips? In this way the user can read it simply moving the mouse over a button, without needs to check the Guide..

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Wed Dec 21, 2011 12:20 am 
Offline
User avatar

Joined: Mon Feb 05, 2007 10:38 am
Posts: 66
Location: Sweden
Tooltips are great.

_________________
Get Screamer!


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Wed Dec 21, 2011 2:44 pm 
Offline
User avatar

Joined: Mon Aug 27, 2007 2:00 am
Posts: 3720
I haven't done much research since Ruby pointed out the Registry Keys to see when in Classic Theme Mode, but I came up with this small UDF and it seems to work. You need WinAPIEx.au3 of course >>

Code:
Func _IsClassicTheme() ; By guinness 2011.
   _WinAPI_GetCurrentThemeName()
   Return @error
EndFunc   ;==>_IsClassicTheme

Or how I use it >>

Code:
Func _IsNotClassicTheme() ; By guinness 2011.
   _WinAPI_GetCurrentThemeName()
   Return @error = 0
EndFunc   ;==>_IsClassicTheme

_________________
Added 177 Applications: Portable and an AutoIt MVP
SoftwareSpot - Portable Apps


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Thu Dec 22, 2011 6:33 am 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
Thanks guinness, I'm going to implement it :wink:

A question: does the problem afflict only the main context menu or all menus with images (and tray menu)?

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Thu Dec 22, 2011 1:55 pm 
Offline
User avatar

Joined: Mon Aug 27, 2007 2:00 am
Posts: 3720
As far as I'm aware (without testing) it's only a problem with ContextMenus. Which function are you going to use? Are you going to keep the header i.e. By guinness 2011?

_________________
Added 177 Applications: Portable and an AutoIt MVP
SoftwareSpot - Portable Apps


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Thu Dec 22, 2011 2:06 pm 
Offline
User avatar

Joined: Mon Aug 27, 2007 2:00 am
Posts: 3720
A snippet of code from the next ProEject. This is how I'm using the Function I posted above.

Code:
If (_IsWindowsVersion() And _IsNotClassicTheme()) Then ; If Windows is greater than XP and doesn't use Classic Theme Mode.

_________________
Added 177 Applications: Portable and an AutoIt MVP
SoftwareSpot - Portable Apps


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Thu Dec 22, 2011 3:06 pm 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
I kept that header, do you prefer another one?

Thanks about code example.. but I thought to use it adding a space if classic theme is used, why do you use the "if not classic theme"?

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Thu Dec 22, 2011 3:12 pm 
Offline
User avatar

Joined: Mon Aug 27, 2007 2:00 am
Posts: 3720
The space addition doesn't work, treat it as though it was like Windows XP where Context images are disabled. Also I use the NOT for easy reading as well as the NOT version returning True. If I were to use the initial Function I provided I would have to do this >>

Code:
If (_IsWindowsVersion() And _IsClassicTheme() = 0) Then ; Takes a couple of ms longer to parse!

Couple of AutoIt tips: If $sTest Then is quicker than If $sTest = 1 Then...

Everything I do is for a reason, whether it be right or wrong :mrgreen:

_________________
Added 177 Applications: Portable and an AutoIt MVP
SoftwareSpot - Portable Apps


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Fri Dec 23, 2011 7:49 am 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
I'm confused: if the space addition doesn't work, what do you recommend for the theme problem? And does not the tray menu need to be fixed?

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Fri Dec 23, 2011 8:52 am 
Offline
User avatar

Joined: Mon Aug 27, 2007 2:00 am
Posts: 3720
You know how we check if the user is using Windows XP [_IsWindowsVersion() = 0] it's exactly the same, icons should be disabled (not showed) when using Classic Mode too.

My advice to test by adding whitespace to the start of the string and you'll understand more of why it won't work.

Image
See the separating line between the icon and text, this is the reason why.

_________________
Added 177 Applications: Portable and an AutoIt MVP
SoftwareSpot - Portable Apps


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Sat Dec 24, 2011 1:03 am 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
OK, thanks!

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Sat Dec 24, 2011 1:34 am 
Offline
User avatar

Joined: Mon Aug 27, 2007 2:00 am
Posts: 3720
Does it make sense though?

_________________
Added 177 Applications: Portable and an AutoIt MVP
SoftwareSpot - Portable Apps


Top
 Profile  
 
 Post subject: Re: DropIt
PostPosted: Sat Dec 24, 2011 4:58 am 
Offline
User avatar

Joined: Mon Mar 19, 2007 8:55 am
Posts: 899
Location: Italy
I could directly modify __SetItemImage() and don't add icons in that case.. do you think is a good solution?

_________________
Lupo PenSuite: all-in-one and completely free selection of portable programs and games.
DropIt: application to process your files with a drop.
ArcThemALL!: application to multi-archive your files and folders.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1091 posts ]  Go to page Previous  1 ... 42, 43, 44, 45, 46, 47, 48 ... 73  Next

All times are UTC - 8 hours


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot 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:
Jump to:  

Protected by Anti-Spam ACP Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group