To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54710
Issue #:|54710
Summary:|slide advance ...
Component:|Drawing
Version:|680m125
Platform:|All
URL:|
OS/Version:|All
Status:|NEW
Status whiteboard:|
Keywords:|
Resolution:|
Issue type:|PATCH
Priority:|P3
Subcomponent:|ui
Assigned to:|wg
Reported by:|mmeeks
------- Additional comments from [EMAIL PROTECTED] Fri Sep 16 09:27:20 -0700
2005 -------
So, I was knobbled by a lovely chap from HP at Brainshare about this. It turns
out that a load of hand-held slide flipping consoles actually emulate the 'right
cursor key' effect instead of left;right click for slide next/previous effect.
Unfortunately in OO.o 2.0 this flips to the next slide without advancing through
any of the effects (which is a pain). Of course - we have no 'previousEffect'
method in the IDL/impl. (which I spent 10 minutes trying to unwind without great
success - too many asynchronous events & not enough understanding of them ;-)
So - this fixes only the right arrow key - at least some way to fixing it fully:
--- sd/source/ui/slideshow/slideshowimpl.cxx
+++ sd/source/ui/slideshow/slideshowimpl.cxx
@@ -1834,6 +1834,7 @@
// advance show
case KEY_SPACE:
+ case KEY_RIGHT:
mxShow->nextEffect();
update();
break;
@@ -1873,7 +1874,6 @@
break;
case KEY_PAGEDOWN:
- case KEY_RIGHT:
case KEY_DOWN:
case KEY_N:
gotoNextSlide();
HTH.
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]