SlideShare una empresa de Scribd logo
INTEGRANTES : ALEXIS BALSECA
JAIR CRUZ
BYRON COBO
UML

TIPOS DE DIAGRAMAS UML
CONCEPTOS BASICOS DE UML

UML

UML es ante todo un lenguaje. Un lenguaje proporciona un vocabulario
y una reglas para permitir una comunicación. En este caso, este lenguaje
se centra en la representación gráfica de un sistema.
Este lenguaje nos indica cómo crear y leer los modelos, pero no dice
cómo crearlos. Esto último es el objetivo de las metodologías de
desarrollo.
También el Lenguaje de Modelado Unificado es
basado en una notación gráfica la cual permite:
especificar, construir, visualizar y documentar los
objetos de un sistema programado.
Pero que es en si el UML?

UML

Es importante remarcar que UML es un "lenguaje de modelado" para
especificar o para describir métodos o procesos. Se utiliza para definir
un sistema, para detallar los artefactos en el sistema y para documentar
y construir. En otras palabras, es el lenguaje en el que está descrito el
modelo.

El UML no es igual a la programación estructurada, ya que este no
es programación, solo se diagrama la realidad de una utilización en
un requerimiento, sin embargo la programación orientada a
objetos viene siendo un complemento perfecto para UML.
UML

DIAGRAMAS UML
DIAGRAMAS DE CLASE

UML

Un diagrama de clases es un tipo de diagrama estático que describe la
estructura de un sistema mostrando sus clases, atributos y las relaciones
entre ellos.
Los diagramas de clases son utilizados durante el proceso de análisis y
diseño de los sistemas, donde se crea el diseño conceptual de la
información que se manejará en el sistema, y los componentes que se
encargaran del funcionamiento y la relación entre uno y otro.
DIAGRAMA DE OBJETOS:

UML

Los diagramas de objetos son utilizados durante el proceso de Análisis y
Diseño de los sistemas informáticos en la metodología UML.
Los diagramas de objetos UML utilizan una notación similar a
los diagramas de clases y se utilizan para ilustrar una instancia de una
clase en un momento dado. Imagine que desea dibujar un diagrama de
objetos para ilustrar un ejemplo real de una clase y de sus relaciones.
Los diagramas de objetos pueden ayudar a explicar las clases y su
herencia. A veces se dibujan durante el proceso de planificación de
clases o para ayudar a partes interesadas para quienes los diagramas de
clases sean demasiado abstractos.
DIAGRAMA DE COMPONENTES

UML

Un diagrama de componentes representa las dependencias entre estos
componentes. Los componentes físicos incluyen archivos,
cabeceras, bibliotecas compartidas, módulos, ejecutables, o paquetes.
Debido a que los diagramas de componentes son más parecidos a los
diagramas de casos de usos, éstos son utilizados para modelar la vista
estática y dinámica de un sistema. Muestra la organización y las
dependencias entre un conjunto de componentes.
No es necesario que un diagrama incluya todos los componentes del
sistema, normalmente se realizan por partes. Cada diagrama describe
un apartado del sistema.
DIAGRAMA DE ESTRUCTURA COMPUESTA

UML

Muestra la estructura interna de una clase y las colaboraciones que esta
estructura hace posibles.
Una estructura compuesta es un conjunto de elementos
interconectados que colaboran en tiempo de ejecución para lograr
algún propósito. Cada elemento tiene algún rol definido en la
colaboración.
DIAGRAMA DE PAQUETES
Muestra cómo un sistema está dividido en agrupaciones lógicas
mostrando las dependencias entre esas agrupaciones.

UML

Dado que normalmente un paquete está pensado como un directorio,
los diagramas de paquetes suministran una descomposición de la
jerarquía lógica de un sistema.
UML

DIAGRAMA DE DESPLIEGUE
El Diagrama de despliegue es un diagrama estructurado que muestra la
arquitectura del sistema desde el punto de vista del despliegue
(distribución) de los artefactos del software en los destinos de
despliegue.
Los elementos usados por este tipo de diagrama son nodos
(representados como un prisma), componentes (representados como
una caja rectangular con dos protuberancias del lado izquierdo) y
asociaciones
La mayoría de las veces el modelado de la vista de despliegue implica
modelar la topología del hardware sobre el que se ejecuta el sistema
DIAGRAMA DE CASOS DE USO

UML

Los diagramas de casos de uso sirven para especificar la comunicación y
el comportamiento de un sistema mediante su interacción con los
usuarios y/u otros sistemas.
Los diagramas de casos de uso se suelen desarrollar en equipo, con
desarrolladores de software por un lado y otras partes interesadas por
otro, como los usuarios del sistema propuesto, que en realidad no
programarán el sistema.
DIAGRAMA DE ACTIVIDADES

UML

Estos diagramas muestran básicamente actividades, representando la
realización de operaciones y las transiciones son disparadas por la
finalización de estas operaciones.
Estos diagramas utilizan símbolos con significados definidos que
representan los pasos del algoritmo, y representan el flujo de ejecución
mediante flechas que conectan los puntos de inicio y de fin de proceso.
DIAGRAMAS DE ESTADOS

UML

Los diagramas de estado muestran el conjunto de estados por los cuales
pasa un objeto durante su vida en una aplicación en respuesta a eventos
(por ejemplo, mensajes recibidos, tiempo rebasado o errores), junto con
sus respuestas y acciones.
También ilustran qué eventos pueden cambiar el estado de los objetos
de la clase. Normalmente contienen: estados y transiciones.
Como los estados y las transiciones incluyen, a su vez, eventos, acciones
y actividades, vamos a ver primero sus definiciones.
DIAGRAMA DE SECUENCIA
En un diagrama de secuencia se indicarán los módulos o clases que
forman parte del programa y las llamadas que se hacen en cada uno de
ellos para realizar una tarea determinada.

UML

Se realizan diagramas de secuencia para definir acciones que se pueden
realizar en la aplicación en cuestión.
Así, en el caso de una aplicación para jugar al ajedrez, se podrían realizar
diagramas de secuencia para “jugar una partida” o bien para acciones
más específicas como “mover pieza”.
DIAGRAMA DE COLABORACIÓN

UML

Un diagrama de colaboración es una forma de representar interacción
entre objetos, alterna al diagrama de secuencia. A diferencia de los
diagramas de secuencia, pueden mostrar el contexto de la operación
(cuáles objetos son atributos, cuáles temporales) y ciclos en la
ejecución.
RESUMEN

UML

El desarrollo de sistemas es una actividad humana. Sin un sistema de notación
fácil de comprender, el
proceso de desarrollo tiene una gran cantidad de errores.

El UML es un sistema de notación que se ha convertido en estándar en el
mundo del desarrollo de sistemas.
Es el resultado del trabajo hecho por Grady Booch, James Rumbaugh e Ivar
Jacobson. El UML está
constituido por un conjunto de diagramas, y proporciona un estándar que
permite al analista de sistemas
generar un anteproyecto de varias facetas que sean comprensibles para los
clientes, desarrolladores y todos
aquellos que estén involucrados en el proceso de desarrollo. Es necesario
contar con todos esos diagramas
dado que cada uno se dirige a cada tipo de persona implicada en el sistema.
Un modelo UML indica qué es lo que supuestamente hará el sistema, mas no
cómo lo hará
BIBLIOGRAFIA
Aprendiendo UML En 24 Horas, Joseph Schmuller (PRENTICE-HALL)
ISBN: 968444463X | Autor: Joseph Schmuller | Spanish | PDF | 14.2 MB | Prentice-Hall | 448
Pages | November 9, 2001

UML

[Larman, 99] Craig Larman. UML y patrones Introducción al análisis y diseño orientado a
objetos. México: Pearson Educación. 1999.
[Lentzsch, 03] Karsten Lentzsch. JGoodies: Java user Interface Design. Otoño 2003.
http://www.jgoodies.com/index.html
[Letelier, 02] Patricio Letelier Torres. Desarrollo de Software Orientado a Objetos usando
UML. Verano 2002. http://www.dsic.upv.es/~uml/
[Martin, 94] James Martin, James J. Odell. Análisis y Diseño Orientado a Objetos. México:
Prentice Hall Hispanoamérica, S.A. 1994.
gracias por su
atención

Más contenido relacionado

La actualidad más candente

Lenguaje de modelado unificado uml
Lenguaje de modelado unificado   umlLenguaje de modelado unificado   uml
Lenguaje de modelado unificado uml
turlahackers
 
Uml
UmlUml
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
Maritza_Tapia
 
Uml lenguaje unificado de modelado
Uml lenguaje unificado de modeladoUml lenguaje unificado de modelado
Uml lenguaje unificado de modeladoMarvin Zumbado
 
13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...
13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...
13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...
Uriel Herrera
 
Uml (lenguaje unificado de modelado)
Uml (lenguaje unificado de modelado)Uml (lenguaje unificado de modelado)
Uml (lenguaje unificado de modelado)
JhensOliver
 
Presentacion power point
Presentacion power pointPresentacion power point
Presentacion power pointguestb747dc
 
Diagramas UML
Diagramas UMLDiagramas UML
Diagramas UML
M'elver Melende'z
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
PRESENTACIONESNANCY
 
Presentacion uml dian1_2003
Presentacion uml dian1_2003Presentacion uml dian1_2003
Presentacion uml dian1_2003
Diana Vásquez
 
Diagramas de UML
Diagramas de UMLDiagramas de UML
Diagramas de UML
Mariana Rodríguez
 
UML
UMLUML
MODELAMIENTO VISUAL Y UML
MODELAMIENTO VISUAL Y UMLMODELAMIENTO VISUAL Y UML
MODELAMIENTO VISUAL Y UML
Kudos S.A.S
 
Uml
UmlUml
UML - Lenguaje de Modelamiento Unificado
UML - Lenguaje de Modelamiento UnificadoUML - Lenguaje de Modelamiento Unificado
UML - Lenguaje de Modelamiento UnificadoEliseo Castro
 
Qué es uml, PARA QUE SIRVE, PASOS
Qué es uml, PARA QUE SIRVE, PASOSQué es uml, PARA QUE SIRVE, PASOS
Qué es uml, PARA QUE SIRVE, PASOS
myle22
 

La actualidad más candente (19)

Lenguaje de modelado unificado uml
Lenguaje de modelado unificado   umlLenguaje de modelado unificado   uml
Lenguaje de modelado unificado uml
 
Uml
UmlUml
Uml
 
Uml
UmlUml
Uml
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
 
Uml lenguaje unificado de modelado
Uml lenguaje unificado de modeladoUml lenguaje unificado de modelado
Uml lenguaje unificado de modelado
 
13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...
13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...
13 tipos de diagramas uml, la metodología de desarrollo ágil de software y la...
 
Uml (lenguaje unificado de modelado)
Uml (lenguaje unificado de modelado)Uml (lenguaje unificado de modelado)
Uml (lenguaje unificado de modelado)
 
Presentacion power point
Presentacion power pointPresentacion power point
Presentacion power point
 
Diagramas UML
Diagramas UMLDiagramas UML
Diagramas UML
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
 
Presentacion uml dian1_2003
Presentacion uml dian1_2003Presentacion uml dian1_2003
Presentacion uml dian1_2003
 
Diagramas de UML
Diagramas de UMLDiagramas de UML
Diagramas de UML
 
UML
UMLUML
UML
 
MODELAMIENTO VISUAL Y UML
MODELAMIENTO VISUAL Y UMLMODELAMIENTO VISUAL Y UML
MODELAMIENTO VISUAL Y UML
 
UML
UMLUML
UML
 
Uml
UmlUml
Uml
 
UML - Lenguaje de Modelamiento Unificado
UML - Lenguaje de Modelamiento UnificadoUML - Lenguaje de Modelamiento Unificado
UML - Lenguaje de Modelamiento Unificado
 
Qué es uml, PARA QUE SIRVE, PASOS
Qué es uml, PARA QUE SIRVE, PASOSQué es uml, PARA QUE SIRVE, PASOS
Qué es uml, PARA QUE SIRVE, PASOS
 
Uml
UmlUml
Uml
 

Destacado

CD
CDCD
Introducción a UML
Introducción a UMLIntroducción a UML
Introducción a UML
Sorey García
 
UML_Clase_01
UML_Clase_01UML_Clase_01
UML_Clase_01mgonzalp
 
Curso uml-clase-01-1211931122395265-9
Curso uml-clase-01-1211931122395265-9Curso uml-clase-01-1211931122395265-9
Curso uml-clase-01-1211931122395265-9duberlisg
 
IntroduccióN Uml
IntroduccióN UmlIntroduccióN Uml
Juti introducción a uml
Juti   introducción a umlJuti   introducción a uml
Juti introducción a umlguest109aa7
 
Introducción a UML
Introducción a UMLIntroducción a UML
Introducción a UML
Hermes Romero
 
Uml
UmlUml
Introduccion a Uml
Introduccion a Uml Introduccion a Uml
Introduccion a Uml
José Jiménez Cabrera
 
Conceptos Basicos Uml
Conceptos Basicos UmlConceptos Basicos Uml
Conceptos Basicos Umlfelix17
 

Destacado (12)

CD
CDCD
CD
 
Introducción a UML
Introducción a UMLIntroducción a UML
Introducción a UML
 
UML_Clase_01
UML_Clase_01UML_Clase_01
UML_Clase_01
 
Curso uml-clase-01-1211931122395265-9
Curso uml-clase-01-1211931122395265-9Curso uml-clase-01-1211931122395265-9
Curso uml-clase-01-1211931122395265-9
 
IntroduccióN Uml
IntroduccióN UmlIntroduccióN Uml
IntroduccióN Uml
 
Juti introducción a uml
Juti   introducción a umlJuti   introducción a uml
Juti introducción a uml
 
Diagrama uml
Diagrama umlDiagrama uml
Diagrama uml
 
Introducción a UML
Introducción a UMLIntroducción a UML
Introducción a UML
 
Uml
UmlUml
Uml
 
Introduccion a Uml
Introduccion a Uml Introduccion a Uml
Introduccion a Uml
 
clases
clasesclases
clases
 
Conceptos Basicos Uml
Conceptos Basicos UmlConceptos Basicos Uml
Conceptos Basicos Uml
 

Similar a UML(Lenguaje Unificado de Modelado)

12 UML.pptx
12 UML.pptx12 UML.pptx
12 UML.pptx
MelissaSenz1
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
Alexa Romero
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
Alexa Romero
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
Alexa Romero
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romeroAlexa Romero
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
Adriana Hernandez
 
Investigacion
InvestigacionInvestigacion
Presentación1
Presentación1Presentación1
Presentación1santyago98
 
Presentación1
Presentación1Presentación1
Presentación1santyago98
 
Uml
UmlUml
Uml
Kattyta
 
Diagramas uml
Diagramas umlDiagramas uml
Lenguaje Unificado De Modelado
Lenguaje Unificado De ModeladoLenguaje Unificado De Modelado
Lenguaje Unificado De Modelado
uleam
 
C:\documents and settings\uleam\mis documentos\lenguaje unificado de modelado
C:\documents and settings\uleam\mis documentos\lenguaje unificado de modeladoC:\documents and settings\uleam\mis documentos\lenguaje unificado de modelado
C:\documents and settings\uleam\mis documentos\lenguaje unificado de modelado
araggg
 
Marifer diapositivas uml roisbel
Marifer diapositivas uml roisbelMarifer diapositivas uml roisbel
Marifer diapositivas uml roisbelnubiafernandez8
 
Diagramas
DiagramasDiagramas
Diagramas
Alina Copado
 
Modelamiento visual-y-uml346
Modelamiento visual-y-uml346Modelamiento visual-y-uml346
Modelamiento visual-y-uml346Mguel
 
ADS - Sesion2
ADS - Sesion2ADS - Sesion2
ADS - Sesion2
willy0303
 

Similar a UML(Lenguaje Unificado de Modelado) (20)

12 UML.pptx
12 UML.pptx12 UML.pptx
12 UML.pptx
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
 
Trabajo uml romero
Trabajo uml romeroTrabajo uml romero
Trabajo uml romero
 
Janio
JanioJanio
Janio
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
 
Diagramas
DiagramasDiagramas
Diagramas
 
Investigacion
InvestigacionInvestigacion
Investigacion
 
Presentación1
Presentación1Presentación1
Presentación1
 
Presentación1
Presentación1Presentación1
Presentación1
 
Uml
UmlUml
Uml
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
 
Diagramas uml
Diagramas umlDiagramas uml
Diagramas uml
 
Lenguaje Unificado De Modelado
Lenguaje Unificado De ModeladoLenguaje Unificado De Modelado
Lenguaje Unificado De Modelado
 
C:\documents and settings\uleam\mis documentos\lenguaje unificado de modelado
C:\documents and settings\uleam\mis documentos\lenguaje unificado de modeladoC:\documents and settings\uleam\mis documentos\lenguaje unificado de modelado
C:\documents and settings\uleam\mis documentos\lenguaje unificado de modelado
 
Marifer diapositivas uml roisbel
Marifer diapositivas uml roisbelMarifer diapositivas uml roisbel
Marifer diapositivas uml roisbel
 
Diagramas
DiagramasDiagramas
Diagramas
 
Modelamiento visual-y-uml346
Modelamiento visual-y-uml346Modelamiento visual-y-uml346
Modelamiento visual-y-uml346
 
ADS - Sesion2
ADS - Sesion2ADS - Sesion2
ADS - Sesion2
 

Último

Testimonio Paco Z PATRONATO_Valencia_24.pdf
Testimonio Paco Z PATRONATO_Valencia_24.pdfTestimonio Paco Z PATRONATO_Valencia_24.pdf
Testimonio Paco Z PATRONATO_Valencia_24.pdf
Txema Gs
 
El Liberalismo económico en la sociedad y en el mundo
El Liberalismo económico en la sociedad y en el mundoEl Liberalismo económico en la sociedad y en el mundo
El Liberalismo económico en la sociedad y en el mundo
SandraBenitez52
 
Sesión: El fundamento del gobierno de Dios.pdf
Sesión: El fundamento del gobierno de Dios.pdfSesión: El fundamento del gobierno de Dios.pdf
Sesión: El fundamento del gobierno de Dios.pdf
https://gramadal.wordpress.com/
 
Presentación Revistas y Periódicos Digitales
Presentación Revistas y Periódicos DigitalesPresentación Revistas y Periódicos Digitales
Presentación Revistas y Periódicos Digitales
nievesjiesc03
 
CAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCION
CAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCIONCAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCION
CAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCION
MasielPMP
 
CALENDARIZACION DEL MES DE JUNIO - JULIO 24
CALENDARIZACION DEL MES DE JUNIO - JULIO 24CALENDARIZACION DEL MES DE JUNIO - JULIO 24
CALENDARIZACION DEL MES DE JUNIO - JULIO 24
auxsoporte
 
Horarios Exámenes EVAU Ordinaria 2024 de Madrid
Horarios Exámenes EVAU Ordinaria 2024 de MadridHorarios Exámenes EVAU Ordinaria 2024 de Madrid
Horarios Exámenes EVAU Ordinaria 2024 de Madrid
20minutos
 
ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...
ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...
ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...
JAVIER SOLIS NOYOLA
 
Texto_de_Aprendizaje-1ro_secundaria-2024.pdf
Texto_de_Aprendizaje-1ro_secundaria-2024.pdfTexto_de_Aprendizaje-1ro_secundaria-2024.pdf
Texto_de_Aprendizaje-1ro_secundaria-2024.pdf
ClaudiaAlcondeViadez
 
1º GRADO CONCLUSIONES DESCRIPTIVAS PRIMARIA.docx
1º GRADO CONCLUSIONES DESCRIPTIVAS  PRIMARIA.docx1º GRADO CONCLUSIONES DESCRIPTIVAS  PRIMARIA.docx
1º GRADO CONCLUSIONES DESCRIPTIVAS PRIMARIA.docx
FelixCamachoGuzman
 
SESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docx
SESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docxSESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docx
SESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docx
QuispeJimenezDyuy
 
FORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdf
FORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdfFORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdf
FORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdf
El Fortí
 
Fase 3; Estudio de la Geometría Analítica
Fase 3; Estudio de la Geometría AnalíticaFase 3; Estudio de la Geometría Analítica
Fase 3; Estudio de la Geometría Analítica
YasneidyGonzalez
 
PRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernández
PRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernándezPRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernández
PRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernández
Ruben53283
 
c3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptx
c3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptxc3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptx
c3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptx
Martín Ramírez
 
Portafolio de servicios Centro de Educación Continua EPN
Portafolio de servicios Centro de Educación Continua EPNPortafolio de servicios Centro de Educación Continua EPN
Portafolio de servicios Centro de Educación Continua EPN
jmorales40
 
Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.
Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.
Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.
20minutos
 
Automatización de proceso de producción de la empresa Gloria SA (1).pptx
Automatización de proceso de producción de la empresa Gloria SA (1).pptxAutomatización de proceso de producción de la empresa Gloria SA (1).pptx
Automatización de proceso de producción de la empresa Gloria SA (1).pptx
GallardoJahse
 
El fundamento del gobierno de Dios. El amor
El fundamento del gobierno de Dios. El amorEl fundamento del gobierno de Dios. El amor
El fundamento del gobierno de Dios. El amor
Alejandrino Halire Ccahuana
 
Educar por Competencias GS2 Ccesa007.pdf
Educar por Competencias GS2 Ccesa007.pdfEducar por Competencias GS2 Ccesa007.pdf
Educar por Competencias GS2 Ccesa007.pdf
Demetrio Ccesa Rayme
 

Último (20)

Testimonio Paco Z PATRONATO_Valencia_24.pdf
Testimonio Paco Z PATRONATO_Valencia_24.pdfTestimonio Paco Z PATRONATO_Valencia_24.pdf
Testimonio Paco Z PATRONATO_Valencia_24.pdf
 
El Liberalismo económico en la sociedad y en el mundo
El Liberalismo económico en la sociedad y en el mundoEl Liberalismo económico en la sociedad y en el mundo
El Liberalismo económico en la sociedad y en el mundo
 
Sesión: El fundamento del gobierno de Dios.pdf
Sesión: El fundamento del gobierno de Dios.pdfSesión: El fundamento del gobierno de Dios.pdf
Sesión: El fundamento del gobierno de Dios.pdf
 
Presentación Revistas y Periódicos Digitales
Presentación Revistas y Periódicos DigitalesPresentación Revistas y Periódicos Digitales
Presentación Revistas y Periódicos Digitales
 
CAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCION
CAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCIONCAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCION
CAPACIDADES SOCIOMOTRICES LENGUAJE, INTROYECCIÓN, INTROSPECCION
 
CALENDARIZACION DEL MES DE JUNIO - JULIO 24
CALENDARIZACION DEL MES DE JUNIO - JULIO 24CALENDARIZACION DEL MES DE JUNIO - JULIO 24
CALENDARIZACION DEL MES DE JUNIO - JULIO 24
 
Horarios Exámenes EVAU Ordinaria 2024 de Madrid
Horarios Exámenes EVAU Ordinaria 2024 de MadridHorarios Exámenes EVAU Ordinaria 2024 de Madrid
Horarios Exámenes EVAU Ordinaria 2024 de Madrid
 
ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...
ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...
ROMPECABEZAS DE ECUACIONES DE PRIMER GRADO OLIMPIADA DE PARÍS 2024. Por JAVIE...
 
Texto_de_Aprendizaje-1ro_secundaria-2024.pdf
Texto_de_Aprendizaje-1ro_secundaria-2024.pdfTexto_de_Aprendizaje-1ro_secundaria-2024.pdf
Texto_de_Aprendizaje-1ro_secundaria-2024.pdf
 
1º GRADO CONCLUSIONES DESCRIPTIVAS PRIMARIA.docx
1º GRADO CONCLUSIONES DESCRIPTIVAS  PRIMARIA.docx1º GRADO CONCLUSIONES DESCRIPTIVAS  PRIMARIA.docx
1º GRADO CONCLUSIONES DESCRIPTIVAS PRIMARIA.docx
 
SESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docx
SESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docxSESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docx
SESION ORDENAMOS NÚMEROS EN FORMA ASCENDENTE Y DESCENDENTE 20 DE MAYO.docx
 
FORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdf
FORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdfFORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdf
FORTI-JUNIO 2024. CIENCIA, EDUCACION, CULTURA,pdf
 
Fase 3; Estudio de la Geometría Analítica
Fase 3; Estudio de la Geometría AnalíticaFase 3; Estudio de la Geometría Analítica
Fase 3; Estudio de la Geometría Analítica
 
PRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernández
PRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernándezPRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernández
PRÁCTICAS PEDAGOGÍA.pdf_Educación Y Sociedad_AnaFernández
 
c3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptx
c3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptxc3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptx
c3.hu3.p3.p2.Superioridad e inferioridad en la sociedad.pptx
 
Portafolio de servicios Centro de Educación Continua EPN
Portafolio de servicios Centro de Educación Continua EPNPortafolio de servicios Centro de Educación Continua EPN
Portafolio de servicios Centro de Educación Continua EPN
 
Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.
Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.
Horarios y fechas de la PAU 2024 en la Comunidad Valenciana.
 
Automatización de proceso de producción de la empresa Gloria SA (1).pptx
Automatización de proceso de producción de la empresa Gloria SA (1).pptxAutomatización de proceso de producción de la empresa Gloria SA (1).pptx
Automatización de proceso de producción de la empresa Gloria SA (1).pptx
 
El fundamento del gobierno de Dios. El amor
El fundamento del gobierno de Dios. El amorEl fundamento del gobierno de Dios. El amor
El fundamento del gobierno de Dios. El amor
 
Educar por Competencias GS2 Ccesa007.pdf
Educar por Competencias GS2 Ccesa007.pdfEducar por Competencias GS2 Ccesa007.pdf
Educar por Competencias GS2 Ccesa007.pdf
 

UML(Lenguaje Unificado de Modelado)

  • 1. INTEGRANTES : ALEXIS BALSECA JAIR CRUZ BYRON COBO
  • 3. CONCEPTOS BASICOS DE UML UML UML es ante todo un lenguaje. Un lenguaje proporciona un vocabulario y una reglas para permitir una comunicación. En este caso, este lenguaje se centra en la representación gráfica de un sistema. Este lenguaje nos indica cómo crear y leer los modelos, pero no dice cómo crearlos. Esto último es el objetivo de las metodologías de desarrollo. También el Lenguaje de Modelado Unificado es basado en una notación gráfica la cual permite: especificar, construir, visualizar y documentar los objetos de un sistema programado.
  • 4. Pero que es en si el UML? UML Es importante remarcar que UML es un "lenguaje de modelado" para especificar o para describir métodos o procesos. Se utiliza para definir un sistema, para detallar los artefactos en el sistema y para documentar y construir. En otras palabras, es el lenguaje en el que está descrito el modelo. El UML no es igual a la programación estructurada, ya que este no es programación, solo se diagrama la realidad de una utilización en un requerimiento, sin embargo la programación orientada a objetos viene siendo un complemento perfecto para UML.
  • 6. DIAGRAMAS DE CLASE UML Un diagrama de clases es un tipo de diagrama estático que describe la estructura de un sistema mostrando sus clases, atributos y las relaciones entre ellos. Los diagramas de clases son utilizados durante el proceso de análisis y diseño de los sistemas, donde se crea el diseño conceptual de la información que se manejará en el sistema, y los componentes que se encargaran del funcionamiento y la relación entre uno y otro.
  • 7. DIAGRAMA DE OBJETOS: UML Los diagramas de objetos son utilizados durante el proceso de Análisis y Diseño de los sistemas informáticos en la metodología UML. Los diagramas de objetos UML utilizan una notación similar a los diagramas de clases y se utilizan para ilustrar una instancia de una clase en un momento dado. Imagine que desea dibujar un diagrama de objetos para ilustrar un ejemplo real de una clase y de sus relaciones. Los diagramas de objetos pueden ayudar a explicar las clases y su herencia. A veces se dibujan durante el proceso de planificación de clases o para ayudar a partes interesadas para quienes los diagramas de clases sean demasiado abstractos.
  • 8. DIAGRAMA DE COMPONENTES UML Un diagrama de componentes representa las dependencias entre estos componentes. Los componentes físicos incluyen archivos, cabeceras, bibliotecas compartidas, módulos, ejecutables, o paquetes. Debido a que los diagramas de componentes son más parecidos a los diagramas de casos de usos, éstos son utilizados para modelar la vista estática y dinámica de un sistema. Muestra la organización y las dependencias entre un conjunto de componentes. No es necesario que un diagrama incluya todos los componentes del sistema, normalmente se realizan por partes. Cada diagrama describe un apartado del sistema.
  • 9. DIAGRAMA DE ESTRUCTURA COMPUESTA UML Muestra la estructura interna de una clase y las colaboraciones que esta estructura hace posibles. Una estructura compuesta es un conjunto de elementos interconectados que colaboran en tiempo de ejecución para lograr algún propósito. Cada elemento tiene algún rol definido en la colaboración.
  • 10. DIAGRAMA DE PAQUETES Muestra cómo un sistema está dividido en agrupaciones lógicas mostrando las dependencias entre esas agrupaciones. UML Dado que normalmente un paquete está pensado como un directorio, los diagramas de paquetes suministran una descomposición de la jerarquía lógica de un sistema.
  • 11. UML DIAGRAMA DE DESPLIEGUE El Diagrama de despliegue es un diagrama estructurado que muestra la arquitectura del sistema desde el punto de vista del despliegue (distribución) de los artefactos del software en los destinos de despliegue. Los elementos usados por este tipo de diagrama son nodos (representados como un prisma), componentes (representados como una caja rectangular con dos protuberancias del lado izquierdo) y asociaciones La mayoría de las veces el modelado de la vista de despliegue implica modelar la topología del hardware sobre el que se ejecuta el sistema
  • 12. DIAGRAMA DE CASOS DE USO UML Los diagramas de casos de uso sirven para especificar la comunicación y el comportamiento de un sistema mediante su interacción con los usuarios y/u otros sistemas. Los diagramas de casos de uso se suelen desarrollar en equipo, con desarrolladores de software por un lado y otras partes interesadas por otro, como los usuarios del sistema propuesto, que en realidad no programarán el sistema.
  • 13. DIAGRAMA DE ACTIVIDADES UML Estos diagramas muestran básicamente actividades, representando la realización de operaciones y las transiciones son disparadas por la finalización de estas operaciones. Estos diagramas utilizan símbolos con significados definidos que representan los pasos del algoritmo, y representan el flujo de ejecución mediante flechas que conectan los puntos de inicio y de fin de proceso.
  • 14. DIAGRAMAS DE ESTADOS UML Los diagramas de estado muestran el conjunto de estados por los cuales pasa un objeto durante su vida en una aplicación en respuesta a eventos (por ejemplo, mensajes recibidos, tiempo rebasado o errores), junto con sus respuestas y acciones. También ilustran qué eventos pueden cambiar el estado de los objetos de la clase. Normalmente contienen: estados y transiciones. Como los estados y las transiciones incluyen, a su vez, eventos, acciones y actividades, vamos a ver primero sus definiciones.
  • 15. DIAGRAMA DE SECUENCIA En un diagrama de secuencia se indicarán los módulos o clases que forman parte del programa y las llamadas que se hacen en cada uno de ellos para realizar una tarea determinada. UML Se realizan diagramas de secuencia para definir acciones que se pueden realizar en la aplicación en cuestión. Así, en el caso de una aplicación para jugar al ajedrez, se podrían realizar diagramas de secuencia para “jugar una partida” o bien para acciones más específicas como “mover pieza”.
  • 16. DIAGRAMA DE COLABORACIÓN UML Un diagrama de colaboración es una forma de representar interacción entre objetos, alterna al diagrama de secuencia. A diferencia de los diagramas de secuencia, pueden mostrar el contexto de la operación (cuáles objetos son atributos, cuáles temporales) y ciclos en la ejecución.
  • 17. RESUMEN UML El desarrollo de sistemas es una actividad humana. Sin un sistema de notación fácil de comprender, el proceso de desarrollo tiene una gran cantidad de errores. El UML es un sistema de notación que se ha convertido en estándar en el mundo del desarrollo de sistemas. Es el resultado del trabajo hecho por Grady Booch, James Rumbaugh e Ivar Jacobson. El UML está constituido por un conjunto de diagramas, y proporciona un estándar que permite al analista de sistemas generar un anteproyecto de varias facetas que sean comprensibles para los clientes, desarrolladores y todos aquellos que estén involucrados en el proceso de desarrollo. Es necesario contar con todos esos diagramas dado que cada uno se dirige a cada tipo de persona implicada en el sistema. Un modelo UML indica qué es lo que supuestamente hará el sistema, mas no cómo lo hará
  • 18. BIBLIOGRAFIA Aprendiendo UML En 24 Horas, Joseph Schmuller (PRENTICE-HALL) ISBN: 968444463X | Autor: Joseph Schmuller | Spanish | PDF | 14.2 MB | Prentice-Hall | 448 Pages | November 9, 2001 UML [Larman, 99] Craig Larman. UML y patrones Introducción al análisis y diseño orientado a objetos. México: Pearson Educación. 1999. [Lentzsch, 03] Karsten Lentzsch. JGoodies: Java user Interface Design. Otoño 2003. http://www.jgoodies.com/index.html [Letelier, 02] Patricio Letelier Torres. Desarrollo de Software Orientado a Objetos usando UML. Verano 2002. http://www.dsic.upv.es/~uml/ [Martin, 94] James Martin, James J. Odell. Análisis y Diseño Orientado a Objetos. México: Prentice Hall Hispanoamérica, S.A. 1994.

Notas del editor

  1. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  2. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  3. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  4. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  5. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  6. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  7. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  8. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  9. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  10. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  11. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  12. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  13. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  14. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  15. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  16. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  17. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.
  18. SmartArt custom animation effects: continuous picture list(Basic)To reproduce the SmartArt effects on this slide, do the following:On the Home tab, in the Slides group, click Layout, and then clickBlank. On the Insert tab, in the Illustrations group, click SmartArt. In the Choose a SmartArt Graphic dialog box, in the left pane, click List. In the List pane, double-click Continuous Picture List (third row, fourth option from the left) to insert the graphic into the slide.On the slide, select the graphic. Under SmartArt Tools, on the Format tab, click Size, and then do the following:In the Height box, enter 5.05”.In the Width box, enter 7.57”.Under SmartArt Tools, on the Format tab, click Arrange, click Align, and then do the following:Click Align to Slide.Click Align Middle. Click Align Center. Select the graphic, and then click one of the arrows on the left border. In the Type your text here dialog box, enter text.Select the graphic. Under SmartArtTools, on the Design tab, in the SmartArtStyles group, click More, and then under Best Match for Document clickselect Moderate Effect (fourth option from the left).Click each of the three picture placeholders in the SmartArt graphic, and then in the Insert Picture dialog box, select a picture and click Insert.Press and hold CTRL, and then select the three circle pictures on the slide.Under PictureTools, on theFormat tab, in the PictureStyles group, click PictureEffects, point toGlow, and then do the following:Under Glow Variations, click Accent color 1, 8 pt glow(second row, first option from the left).Point to MoreGlowColors,and then under Theme Colors click Orange, Accent 6, Lighter 80% (second row, 10th option from the left).Select the left-right arrow at the bottom of the SmartArt graphic. Under SmartArtTools, on the Format tab, in the ShapeStyles group, click the arrow next to ShapeFill, point to Gradient, and then click MoreGradients. In the Format Shape dialog box, click Fill in the left pane,select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then select Linear Right (first row, fourth option from the left).Under Gradient stops, click Add or Remove until three stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Select Stop 2 from the list, and then do the following: In the Stop position box, enter 50%.Click the button next to Color, and then click MoreColors. In the Colors dialog box,on theCustom tab, enter values for Red: 255, Green: 192, Blue: 0.Select Stop 3 from the list, and then do the following: In the Stop position box, enter 100%.Click the button next to Color, and then under Theme ColorsclickOrange, Accent 6, Darker 25% (fifth row, 10th option from the left).Press and hold CTRL, and then select the three rounded rectangles on the slide. On the Home tab, in the Font group, select Gill Sans MT from the Font list, enter 30 pt in the Font Size box, click the arrow next to Font Color, and then click White, Background 1 (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Effects, point to Reflection, and then under ReflectionVariations click Tight reflection, touching (first row, first option from the left).Under SmartArtTools, on the Format tab, in the ShapeStyles group, click Shape Fill, point to Gradient, and then click More Gradients. In the Format Shape dialog box, in the left pane, click Fill, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.In the Direction list, select Linear Down (first row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 19%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1 (first row, second option from the left). Select Stop 2 from the list, and then do the following: In the Stop position box, enter100%.Click the button next to Color, and then under Theme ColorsclickBlack, Text 1, Lighter 50% (second row, second option from the left).To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Animations group, click CustomAnimation.On the slide, select the graphic. In the Custom Animation task pane, do the following:Click Add Effect, point to Entrance, and then clickMoreEffects. In the Add Entrance Effect dialog box, underModerate, clickStretch. Under Modify: Stretch, in the Speed list, selectFast.Also in the CustomAnimation task pane, click the arrow to the right of the animation effect, and then click Effect Options. In the Stretch dialog box, on the SmartArtAnimation tab, in the Group graphic list, select One by One.Also in the CustomAnimation task pane, click the double arrows under the animation effect to expand the list of effects. Press and hold CTRL, and then select all of the animation effects in the Custom Animation task pane. Under Modify: Stretch, in the Start list, selectWith Previous.Select the first animation effect (stretch effect for the left-right arrow) in the CustomAnimation task pane. Under Modify: Stretch, click the arrow to the right of the effect, and then click Timing. In the Stretch dialog box, on the Timing tab, do the following: In the Delay box, enter 0.5.In the Speed box, enter 1.5 seconds.Press and hold CTRL, and then select the second and third animation effects (stretch effects for the left panel) in the CustomAnimation task pane. Under Modify: Stretch, in the Direction list, select From Right. Also in the Custom Animation task pane, with the second and third animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1, and then click OK.Press and hold CTRL, and then select the sixth and seventh animation effects (stretch effects for the right panel) in the Custom Animation task pane. Under Modify: Stretch, in the Direction list, select From Left. Also in the Custom Animation task pane, with the sixth and seventh animation effects still selected, click the arrow to the right of one of those effects, and then click Timing. In the Stretch dialog box, on the Timing tab, in the Delay box, enter 1.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Center(third option from the left). Under Gradient stops, click Add or Remove until two stops appear in the drop-down list.Also under Gradient stops, customize the gradient stops as follows:Select Stop 1 from the list, and then do the following:In the Stop position box, enter 0%.