QuickKey | [release] 2.2 | 29/11/2009 |
Author: |
Message: |
Spunky
Former Super Mod
Posts: 3658 Reputation: 61
36 / /
Joined: Aug 2006
|
RE: QuickKey | [release] 1.5 | 22/11/2009
quote: Originally posted by whiz
I've noticed that, it occurs when OnEvent_Initialize is called and not signed in - it uses the registry functions that use the current user's email address. Fixed now.
Use the user's UserId instead... It's a better way to do it... Also, you say you fixed it, but have all the OnEvent_Initialize stuff happen on the OnEvent_SigninReady event and then, in OnEvent_Initialize, check the user's status to see if they are signed in, if they are, call the OnEvent_SigninReady event from there
<Eljay> "Problems encountered: shit blew up"
|
|
11-24-2009 08:11 PM |
|
|
whiz
Senior Member
Posts: 568 Reputation: 8
– / – /
Joined: Nov 2008
|
O.P. RE: QuickKey | [release] 1.5 | 22/11/2009
quote: Originally posted by matty
quote: Originally posted by whiz
quote: Originally posted by warmth
Bug: After install it.. /checkupdates says a new version is available 1.3! you made a mistake somewhere with builds numbers my friend!
I don't see why... it's set as 1.5, but I do get that as well.
This is how the Screenshot Sender 5 ScriptInfo.xml file looks:
XML code:
<?xml version="1.0" encoding="UTF-16"?>
<ScriptInfo xmlns="urn:msgplus:scripts" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:msgplus:scripts PlusScripts.xsd">
<Information>
<Name>Screenshot Sender</Name>
<Description>Allows you to easily send screenshots to your contacts.</Description>
<Author>matty, Dempsey, Eljay & Mattias</Author>
<AboutUrl>http://beta.screenshotsender.com</AboutUrl>
<Version>5</Version>
<UpdateId>SS5</UpdateId> <Build>46</Build> </Information>
<BuildInfo>
<Major>5</Major>
<Minor>0</Minor>
<Build>0046</Build>
<Tag>Alpha</Tag>
<CompileDate>20091124</CompileDate>
<Debug>1</Debug>
</BuildInfo>
</ScriptInfo>
The two highlighted fields are what you want to be concerned with when using the Plus! internal updater.
Yeah, I was just reading the post about it in the main MP!L forum. Added now.
quote: Originally posted by Spunky
quote: Originally posted by whiz
I've noticed that, it occurs when OnEvent_Initialize is called and not signed in - it uses the registry functions that use the current user's email address. Fixed now.
Use the user's UserId instead... It's a better way to do it... Also, you say you fixed it, but have all the OnEvent_Initialize stuff happen on the OnEvent_SigninReady event and then, in OnEvent_Initialize, check the user's status to see if they are signed in, if they are, call the OnEvent_SigninReady event from there
Again, just did that. Thanks, anyway.
|
|
11-24-2009 08:29 PM |
|
|
warmth
Veteran Member
Electronic Engineer
Posts: 1730 Reputation: 26
39 / /
Joined: Jul 2003
|
RE: QuickKey | [release] 1.5 | 22/11/2009
quote: Originally posted by whiz
quote: Originally posted by warmth
UPDATE 2:
Bug: Right ALT still giving me problems with ALT+Q to get @!
If you can get into the menu, go to Manage QuickKey shortcuts... and pick a different one. If not, start up Registry Editor and locate the key at the following path: HKEY_CURRENT_USER\Software\Patchou\Messenger Plus! Live\GlobalSettings\Scripts\QuickKey\Settings\<email>\Hotkeys. A is 65, B is 66, C is 67 and so on.
Yes I already did that... but there isn't any way you can fix it?
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
|
|
11-24-2009 09:16 PM |
|
|
whiz
Senior Member
Posts: 568 Reputation: 8
– / – /
Joined: Nov 2008
|
O.P. RE: QuickKey | [release] 1.5 | 22/11/2009
quote: Originally posted by warmth
quote: Originally posted by whiz
quote: Originally posted by warmth
UPDATE 2:
Bug: Right ALT still giving me problems with ALT+Q to get @!
If you can get into the menu, go to Manage QuickKey shortcuts... and pick a different one. If not, start up Registry Editor and locate the key at the following path: HKEY_CURRENT_USER\Software\Patchou\Messenger Plus! Live\GlobalSettings\Scripts\QuickKey\Settings\<email>\Hotkeys. A is 65, B is 66, C is 67 and so on.
Yes I already did that... but there isn't any way you can fix it?
Perhaps I should I another hotkey to go straight to the Hotkey Manager...
I did originally want to make hotkeys follow a Shift + Alt + [...] approach, but the Shift key (MOD_SHIFT / 0x4) never worked.
I'll probably add Ctrl + Alt + M (default) to go to the Hotkey Manager.
|
|
11-24-2009 09:29 PM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: QuickKey | [release] 1.5 | 22/11/2009
After looking over your code I have a few suggestions.
- Don't use OnEvent_Signin. Instead use OnEvent_SigninReady. This event is fired once the contactlist is fully received from the servers.
Also I was able to get the shift key to work without a problem.
This post was edited on 11-25-2009 at 02:45 PM by matty.
|
|
11-24-2009 11:51 PM |
|
|
whiz
Senior Member
Posts: 568 Reputation: 8
– / – /
Joined: Nov 2008
|
O.P. RE: QuickKey | [release] 1.5 | 22/11/2009
quote: Originally posted by matty
Don't use OnEvent_Signin. Instead use OnEvent_SigninReady. This event is fired once the contactlist is fully received from the servers.
Done.
quote: Originally posted by matty
Also I was able to get the shift key to work without a problem.
Just tried it, and it seems to work. I wonder why I couldn't originally use it... anyway, adding a new option to pick which keys (Ctrl/Shift/Alt) to use.
|
|
11-25-2009 07:49 PM |
|
|
whiz
Senior Member
Posts: 568 Reputation: 8
– / – /
Joined: Nov 2008
|
O.P. RE: QuickKey | [release] 2.0 | 26/11/2009
Download version 2.0 - now available (see the top post)!
All of the (newer) problems/suggestions in this thread have been fixed/added, except for the "press Esc to close" idea, which I don't really know how to go about doing (the menus do have a close option, though)...
|
|
11-26-2009 08:53 PM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: QuickKey | [release] 2.0 | 26/11/2009
What might be a good idea would be to make your own style menu using a Plus! window. Although you cannot dynamically add controls you could in theory rewrite the XML file as a work around or create a bunch of controls and reposition them as needed.
This post was edited on 11-26-2009 at 10:59 PM by matty.
|
|
11-26-2009 10:59 PM |
|
|
whiz
Senior Member
Posts: 568 Reputation: 8
– / – /
Joined: Nov 2008
|
O.P. RE: QuickKey | [release] 2.0 | 26/11/2009
quote: Originally posted by matty
What might be a good idea would be to make your own style menu using a Plus! window. Although you cannot dynamically add controls you could in theory rewrite the XML file as a work around or create a bunch of controls and reposition them as needed.
Could do - I'd have one window for each menu, but I might have to do list controls and child windows for contact info and stuff. I'll try it...
|
|
11-28-2009 01:04 PM |
|
|
warmth
Veteran Member
Electronic Engineer
Posts: 1730 Reputation: 26
39 / /
Joined: Jul 2003
|
RE: QuickKey | [release] 2.0 | 26/11/2009
Great my friend but there are new bugs:
1. Installing over previous version got me a wrong key combination... when I checked the settings panel... none of the CTRL/ALT/SHIFT were selected... so I deduced that there aren't declared a default settings after installation. So pressing only Q displayed the menu.
2. Clicking over the tittle gave me this result:
code: Messenger Conversations:
> Show group conversations: false
Messenger Information
> Show contact information: false
Messenger Contact List
> Show offline contacts: false
> Show blocked contacts: false
> Use advanced contact menu: false
> Show contact details: false
Messenger Status
> Show sign-out option: false
Global Options
> Disable menus on lock: false
> Show name, not email: false
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
|
|
11-28-2009 05:02 PM |
|
|
Pages: (4):
« First
«
1
2
[ 3 ]
4
»
Last »
|
|