AutoHotkey Community

It is currently May 27th, 2012, 12:44 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 30 posts ]  Go to page Previous  1, 2
Author Message
 Post subject:
PostPosted: March 19th, 2010, 5:31 pm 
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}]

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\InprocServer32]
"ThreadingModel"="Apartment"
@="C:\\Program Files\\Messenger\\msgsc.dll"

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\LocalServer32]
"ThreadingModel"="Apartment"
@="C:\\Program Files\\Messenger\\Msmsgs.exe"

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\ProgID]
@="Messenger.UIAutomation.1"

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\Programmable]
@=""

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\TypeLib]
@="{E02AD29E-80F5-46C6-B416-9B3EBDDF057E}"

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\Version]
@="1.0"

[HKEY_CLASSES_ROOT\CLSID\{B69003B3-C55E-4b48-836C-BC5946FC3B28}\VersionIndependentProgID]
@="Messenger.UIAutomation"


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 5:31 pm 
Offline

Joined: April 20th, 2009, 1:10 pm
Posts: 817
Location: North Dakota, USA
Sean wrote:
BTW, I'm suspecting Communicator disables/replaces Messenger or its derivatives, so creating Messenger.UIAutomation will be failed once Communicator is installed.

I'm not sure what you mean here, but I run both Communicator and WLM on my computer at work.

@ sinkfaze

Code:
#Include COM.ahk
stat = 4
obj=Messenger.UIAutomation

COM_Init()
MsgBox % msn := COM_CreateObject(obj,"",stat)
 . "`n"  msn1 := COM_CreateObject( obj ".1","",stat)
COM_Release(msn1),  COM_Release(msn),  COM_Term()
Return


I ran this and came up with these numbers...

2547108
2547252

I'm really sorry if I'm not helping out at all here guys. Feel free to tell me to shut it. I just figured since I have Communicator too I can test this stuff too, and hey... it might come in handy for me.

_________________
-Jeremiah


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 5:34 pm 
Quote:
I ran this and came up with these numbers...

2547108
2547252
which I've already mentioned (what might get overseen as I've stated it at the prevoius page) for me it's:
0
0


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 5:37 pm 
Offline
User avatar

Joined: March 19th, 2008, 12:43 am
Posts: 5482
Location: the tunnel(?=light)
Jeremiah wrote:
I'm really sorry if I'm not helping out at all here guys.


Actually running that is very helpful since it proves to a point that Communicator is not (or should not be) interfering with Windows Messenger.

_________________
Image
Try Quick Search for Autohotkey or see the tutorial for newbies.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 5:52 pm 
Offline

Joined: April 20th, 2009, 1:10 pm
Posts: 817
Location: North Dakota, USA
sinkfaze wrote:
Actually running that is very helpful since it proves to a point that Communicator is not (or should not be) interfering with Windows Messenger.


Well. That's great! :) Let me know if you need me to test anything else. I do have a question here though. Forgive me if it's a stupid one... What are we trying to accomplish? lol.

_________________
-Jeremiah


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 6:03 pm 
Offline
User avatar

Joined: March 19th, 2008, 12:43 am
Posts: 5482
Location: the tunnel(?=light)
Well we're trying to accomplish how to get the COM script working for Murx using Windows Messenger. Sean hypothesized that Communicator superseded Windows Messenger in such a way that it would not connect, I figured the easiest way to test that was to see if he could get a pointer to Windows Messenger. He couldn't, but you also run Communicator and Windows Messenger on your PC and you can get a pointer, so there's likely something else in play.

_________________
Image
Try Quick Search for Autohotkey or see the tutorial for newbies.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 7:32 pm 
Offline

Joined: February 12th, 2007, 7:54 am
Posts: 2462
Nothing too unusual. What happens if you directly run msmsgs.exe.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 19th, 2010, 7:43 pm 
Offline

Joined: April 20th, 2009, 1:10 pm
Posts: 817
Location: North Dakota, USA
Sean wrote:
Nothing too unusual. What happens if you directly run msmsgs.exe.


"Windows cannot find 'msmsgs.exe'. Make sure you typed the name correctly, and then try again."

_________________
-Jeremiah


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 20th, 2010, 1:58 am 
Offline

Joined: February 12th, 2007, 7:54 am
Posts: 2462
What I meant was: go to the Messenger directory in Explorer, and then double click msmsgs.exe if found. BTW, I don't think you'll meet a problem as you can COM_CreateObject for it.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 20th, 2010, 10:57 pm 
Quote:
C:\Program Files\Messenger\Msmsgs.exe

This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.

---------------------------
OK
---------------------------
Executable is available but is responding with that error :?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 22nd, 2010, 5:49 pm 
Any chance to get a code snippet for communicator users like we've got it for the "messengers" ? :(


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 25th, 2010, 3:15 pm 
Offline

Joined: April 20th, 2009, 1:10 pm
Posts: 817
Location: North Dakota, USA
@Murx
Were you able to get this working?

_________________
-Jeremiah


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 25th, 2010, 3:26 pm 
Quote:
Were you able to get this working?
No :?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 25th, 2010, 3:27 pm 
Offline

Joined: April 20th, 2009, 1:10 pm
Posts: 817
Location: North Dakota, USA
What exactly were you trying to do? Make a hotkey for automatically sending an IM? Through Communicator or WLM?

_________________
-Jeremiah


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 26th, 2010, 6:26 am 
Offline

Joined: February 12th, 2007, 7:54 am
Posts: 2462
You should've been able to figure it out yourself. When you meet a problem, the first thing you have to do is to consult the documentation.
http://msdn.microsoft.com/en-us/library/bb758719.aspx

Change Messenger.UIAutomation to Communicator.UIAutomation.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 30 posts ]  Go to page Previous  1, 2

All times are UTC [ DST ]


Who is online

Users browsing this forum: chaosad, jrav, MSN [Bot] and 24 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