~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to kpresenter/scripts/automate_presentation.sh

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#
10
10
# Open the presentation in kpresenter, then launch this script
11
11
#
12
 
actionname=`dcop kpresenter qt objects | grep screen_start$ | grep KAction`
13
 
dcop kpresenter "$actionname" activate
 
12
appname=`dcop | grep ^kpresenter`
 
13
#echo $appname
 
14
 
 
15
viewname=`dcop $appname | grep ^View`
 
16
#echo $viewname
 
17
 
 
18
dcop $appname $viewname screenStart
14
19
 
15
20
sleep 5;
16
21
 
17
 
actionname=`dcop kpresenter qt objects | grep screen_next$ | grep KAction`
18
22
while true; do
19
23
 sleep 10;
20
 
 dcop kpresenter "$actionname" activate
 
24
 dcop $appname $viewname screenNext
21
25
done