office2010 PowerPoint 动画里面怎么没有打字机效果?不是打字机声音,是效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了office2010 PowerPoint 动画里面怎么没有打字机效果?不是打字机声音,是效果相关的知识,希望对你有一定的参考价值。
您好!很高兴为你回复。如果没有您可以参照以下方法:
1.在“动画——动画窗格”中看看有没有更多您需要的动画效果;
2.如果没有“颜色打字机”效果,您可以用其它效果来“仿造”一个这样的效果,具体方法如下:
(1)选一个其它的效果(最好选“淡出”,做出来的效果比较细致),选定于你需要的项目上。
(2)双击右框中的这个效果,“动画”——“动画文本”——按字词、按字母都可以——延迟随便(最好不低于10%)
(3)也就差不多了,效果确实要比“颜色打字机”细腻呢!
谢谢采纳!
参考资料:自己打的,在此感谢屁屁踢团的全力支持!
参考技术A 1、先选择自定义动画任务2、选中要设置打字效果的文本
3、点任务窗格“添加效果”
4、几种效果及其它效果任你选。 参考技术B 消失了
楼下的几位,指的是“颜色打字机”效果…… 参考技术C 我刚刚试了一下,有啊!打字机声音!!!
.Net 使用 Office 互操作打印 PowerPoint 文档
【中文标题】.Net 使用 Office 互操作打印 PowerPoint 文档【英文标题】:.Net Print PowerPoint Document using Office interops 【发布时间】:2015-04-15 05:45:44 【问题描述】:我正在做一个小项目,该项目可以使用一些打印机选项打印办公室文档。
MS Word interop 与 word docs 配合得很好,但是当我尝试使用 powerpoint interop 进行类似的操作时,它就不起作用了。
我用于打印 Word 文档的代码,使用缩放在一张纸上打印 4 页。
public void test5()
try
// Declaring the object variables we will need later
object varFileName = filePath;
object varFalseValue = false;
object varTrueValue = true;
object varMissing = Type.Missing;
Microsoft.Office.Interop.Word.Application varWord =
new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.PowerPoint.Application varPPT = new Microsoft.Office.Interop.PowerPoint.Application();
Microsoft.Office.Interop.Word.Document varDoc =
varWord.Documents.Open(ref varFileName, ref varMissing,
true,
ref varMissing, ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing);
varDoc.Activate();
varDoc.PrintOut(PrintZoomColumn: 2, PrintZoomRow: 2);
catch (Exception varE)
MessageBox.Show("Error:\n" + varE.Message, "Error message");
很简单。我需要做的是在 PrintOut 方法上添加 PrintZoomColumn、PrintZoomRow 选项。但是,根据 MSDN,PowerPoint 缺少这样的选项。 PrintZoomColunm 和 PrintZoomRow 甚至都不存在。但是,我在Presentation类下找到了一个叫做PrintOptions的方法,但是这并没有显示任何效果。
这是我打印 PPT 文件的代码。
public void test6()
try
// Declaring the object variables we will need later
object varFileName = filePath;
object varFalseValue = false;
object varTrueValue = true;
object varMissing = Type.Missing;
Microsoft.Office.Interop.PowerPoint.Application varPPT = new Microsoft.Office.Interop.PowerPoint.Application();
Microsoft.Office.Interop.PowerPoint.Presentation varPre = varPPT.Presentations.Open(filePath, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse);
varPre.PrintOptions.HandoutOrder =Microsoft.Office.Interop.PowerPoint.PpPrintHandoutOrder.ppPrintHandoutHorizontalFirst;
varPre.PrintOut();
catch (Exception varE)
MessageBox.Show("Error:\n" + varE.Message, "Error message");
在上面的代码中,改变 printoptions 的 handoutorder 的值没有任何效果。在一页上打印多张幻灯片需要什么?
【问题讨论】:
【参考方案1】:我认为您还需要设置 OutputType 属性。 HandoutOrder 只是告诉 powerpoint 如何在页面上布置幻灯片如果一页中有多个幻灯片
presentation.PrintOptions.OutputType = Microsoft.Office.Interop.PowerPoint.PpPrintOutputType.ppPrintOutputFourSlideHandouts;
每页应该给你 4 张幻灯片
【讨论】:
以上是关于office2010 PowerPoint 动画里面怎么没有打字机效果?不是打字机声音,是效果的主要内容,如果未能解决你的问题,请参考以下文章
office2010版打开PPT文件时总是弹出“microsoft Powerpoint 遇到问题需要关闭。我们对此引起的不便表示道
电脑中powerpoint界面是英文,版本是office2016
使用Microsoft Office 2010 PIA将PPT转换为SVG