Add Transition to Credits
This exercise will demonstrate how to add transitions to the <group>
elements containing the credits.
To add transition to the credits treat <group> elements the
same way as media objects when adding transitions. Create the transitions
in the <head> section of the document. Then add the appropriate
transIn or transOut attribute to reference the transition.
<xmt-o ...>
<head>
...
<transition id="transSlideWipeFromBottom" type="slideWipe" subtype="fromBottom" dur="2s"/>
<transition id="transSlideWipeFromTop" type="slideWipe" subtype="fromTop" dur="2s"/>
<transition id="transBarWipe" type="barWipe" subtype="leftToRight" dur="2s"/>
...
</head>
<body>
<par>
...
<group ... transIn="transSlideWipeFromBottom">
...
<group ... transOut="transSlideWipeFromTop">
...
</group>
<group ... transIn="transBarWipe">
...
</group>
</group>
</par>
</body>
</xmt-o>
The following is the complete XMT-O file used for this exercise:
IBMSlideShow9.xml
Here is a snap shot of the exercise:
In the next exercise, you will change
the pictures from images to video content.
|