If you are currently developing portable freeware or planning to do so, use this forum to discuss technical implementation, seek out like-minded developers for partnership, or solicit interested users for beta testing.
-
Leif
- Posts: 65
- Joined: Mon Feb 05, 2007 10:38 am
- Location: Sweden
#661
Post
by Leif » Mon Dec 19, 2011 2:18 pm
Lupo73 wrote:
In a next release I'm considering to remove special actions and integrate them as normal actions, naming them: Shortcut, Playlist, Clipboard.. I'd like to know your opinion about it, also because they are not verbs (as other actions) and could badly sound together.. but on the other hand it may simplifies and extends their use..
In my opinion a very good idea. I didn't know about the playlist feature until I read the Guide. And who reads Guides? So very easy to miss good features if they are "hidden away".
They are not verbs but couldn't you just add a verb in front of them? "Make shortcuts" etc.
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#662
Post
by Lupo73 » Mon Dec 19, 2011 2:37 pm
I'm agree with you.. I could use "Create Shortcut" and "Create Playlist", but I don't like "Copy to the Clipboard" so much..
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#663
Post
by Lupo73 » Tue Dec 20, 2011 6:30 am
Leif is helping me to do minor language corrections and other fixes.. about the password deletion issue, it can be deleted using the backspace key so I think it doesn't need a fix..
-
guinness
- Posts: 4118
- Joined: Mon Aug 27, 2007 2:00 am
-
Contact:
#664
Post
by guinness » Tue Dec 20, 2011 6:58 am
about the password deletion issue, it can be deleted using the backspace key so I think it doesn't need a fix..
OK, though perhaps make it clear that you can't use the DEL key in the password inputs, because as Leif demonstrated users are so used to using the DEL key rather than the backspace.
Added 179 Applications: Portable
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#665
Post
by Lupo73 » Tue Dec 20, 2011 8:09 am
What do you propose? A note in the Guide?
-
Leif
- Posts: 65
- Joined: Mon Feb 05, 2007 10:38 am
- Location: Sweden
#666
Post
by Leif » Tue Dec 20, 2011 9:33 am
[Aside] guinness, please suggest to him that he should fix it instead of e.g. mentioning it in the Guide (who reads guides?

). In ALL the programs I use it says Del and NEVER Backspace to the right of the Delete option in the menus etc.
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#667
Post
by Lupo73 » Tue Dec 20, 2011 11:14 am
Ok ok

..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..
-
Leif
- Posts: 65
- Joined: Mon Feb 05, 2007 10:38 am
- Location: Sweden
#668
Post
by Leif » Wed Dec 21, 2011 12:20 am
Tooltips are great.
-
guinness
- Posts: 4118
- Joined: Mon Aug 27, 2007 2:00 am
-
Contact:
#669
Post
by guinness » Wed Dec 21, 2011 2:44 pm
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: Select all
Func _IsClassicTheme() ; By guinness 2011.
_WinAPI_GetCurrentThemeName()
Return @error
EndFunc ;==>_IsClassicTheme
Or how I use it >>
Code: Select all
Func _IsNotClassicTheme() ; By guinness 2011.
_WinAPI_GetCurrentThemeName()
Return @error = 0
EndFunc ;==>_IsClassicTheme
Added 179 Applications: Portable
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#670
Post
by Lupo73 » Thu Dec 22, 2011 6:33 am
Thanks guinness, I'm going to implement it
A question: does the problem afflict only the main context menu or all menus with images (and tray menu)?
-
guinness
- Posts: 4118
- Joined: Mon Aug 27, 2007 2:00 am
-
Contact:
#671
Post
by guinness » Thu Dec 22, 2011 1:55 pm
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 179 Applications: Portable
-
guinness
- Posts: 4118
- Joined: Mon Aug 27, 2007 2:00 am
-
Contact:
#672
Post
by guinness » Thu Dec 22, 2011 2:06 pm
A snippet of code from the next ProEject. This is how I'm using the Function I posted above.
Code: Select all
If (_IsWindowsVersion() And _IsNotClassicTheme()) Then ; If Windows is greater than XP and doesn't use Classic Theme Mode.
Added 179 Applications: Portable
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#673
Post
by Lupo73 » Thu Dec 22, 2011 3:06 pm
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"?
-
guinness
- Posts: 4118
- Joined: Mon Aug 27, 2007 2:00 am
-
Contact:
#674
Post
by guinness » Thu Dec 22, 2011 3:12 pm
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: Select all
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

Added 179 Applications: Portable
-
Lupo73
- Posts: 1011
- Joined: Mon Mar 19, 2007 8:55 am
- Location: Italy
-
Contact:
#675
Post
by Lupo73 » Fri Dec 23, 2011 7:49 am
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?