> > I have a set of macros that contains an event handler for the
> > WindowBeforeDoubleClick event. This class method has been working fine in
[quoted text clipped - 16 lines]
> PPTools: www.pptools.com
> ================================================
Thanks, Steve.
I'd already thought of that, but I'm using that event for other purposes
(sensing when a new slide is being viewed in Normal mode) and I didn't want
to fool around with that code. I guess I may have to.
However, that leaves unanswered the more basic question: why don't
WindowBeforeDoubleClick and WindowBeforeRightClock fire? I've read the
documentation on events in 2007, and those events are there, and there's no
verbiage saying anything about them behaving differently. Got any insight
on that issue?

Signature
Dave Jenkins
K5KX
Shyam Pillai - 02 Apr 2007 04:08 GMT
> However, that leaves unanswered the more basic question: why don't
> WindowBeforeDoubleClick and WindowBeforeRightClock fire?
Double-click on shapes doesn't really do anything. Right-click menus cannot
be customized anyways, so I think that may have been left out too.

Signature
Regards,
Shyam Pillai
Image Importer Wizard
http://skp.mvps.org/iiw.htm
>> In article <E88793A6-1F62-4946-8619-2AAA34DED179@microsoft.com>, Dave
>> Jenkins
[quoted text clipped - 40 lines]
> insight
> on that issue?
Jens-Olaf Hemprich - 18 Mar 2008 16:24 GMT
Hmm, we've used the right click event to successfully replace the context
menu with our own since Office 2000 in both Word and PowerPoint. Works pretty
well (with the excpetion of PowerPoint 2007). I was really surprised the PP
dev team hadn't fixed that in SP1.
Does anyone know if a fix is in the works?
By the way: Our Add-In is C++, but the right click issue can easily be
reproduced with VBA too.
Cheers, Jens
> > However, that leaves unanswered the more basic question: why don't
> > WindowBeforeDoubleClick and WindowBeforeRightClock fire?
[quoted text clipped - 45 lines]
> > insight
> > on that issue?
> > I have a set of macros that contains an event handler for the
> > WindowBeforeDoubleClick event. This class method has been working fine in
[quoted text clipped - 10 lines]
> SelectionChange should do it, though you might need some extra logic to deal
> with what's been selected.
Do you mean the WindowSelectionChange event? If so, I'm now using that, and
it's identical code to what I had for the WindowBeforeDoubleClick event
handler. I don't think I knew about that event, so many thanks. (I lied in
my previous response - I was thinking about slide change events.)
One more thing: Was WindowSelectionChange an event that could be handled in
2003? I'm worried now about backward compatibility, since most of my users
are on 2003.
Thanks!
Steve Rindsberg - 02 Apr 2007 14:59 GMT
> > SelectionChange should do it, though you might need some extra logic to deal
> > with what's been selected.
>
> Do you mean the WindowSelectionChange event?
Yes ... sorry for the incorrect terminology. Airhead --> Aircode
> If so, I'm now using that, and
> it's identical code to what I had for the WindowBeforeDoubleClick event
[quoted text clipped - 4 lines]
> 2003? I'm worried now about backward compatibility, since most of my users
> are on 2003.
Yep, it works back to 2000, in fact.
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Dave Jenkins - 02 Apr 2007 15:14 GMT
> One more thing: Was WindowSelectionChange an event that could be handled in
> 2003? I'm worried now about backward compatibility, since most of my users
> are on 2003.
For others who may be working in this area, it does appear the
WindowSelectionChange does work in PPT 2003.