Presentations PowerPoint. Presentation A series of pictures (slides) to present in sequence What is a picture? –An array of graphical elements Lines,

Slides:



Advertisements
Similar presentations
A guide to using PowerPoint
Advertisements

Vocabulary Interactive
How to create a PowerPoint Presentation Where do you start Click on the icon on your screen that resembles the one on the below.
Developing a PowerPoint Presentation
PowerPoint Challenge This is PowerPoint. In the next slides, you will face 5 challenges. If you complete all the challenges, you will get a prize and free.
PowerPoint. First Steps Create your presentation, dividing your thoughts using Insert…New Slide.
PowerPoint Scavenger Hunt Lauren Davis EDTD 3011 A Summer 2007.
PowerPoint Practice Exercise
Chapter 10—Creating Presentations
Starting and Customizing a PowerPoint Slide Show
How to prepare a PowerPoint presentation
Slide Transitions Slide Show, Slide Transition opens Slide Transition task pane Practice each option setting to select the transition style, its speed,
PowerPoint Practice 1.Click SAVE AS and save this file on your network drive. Rename it “powerpoint practice.” 2.Follow the directions on the slides.
FIRST COURSE PowerPoint. XP New Perspectives on Microsoft Office 2007: Windows XP Edition2 What Is PowerPoint? PowerPoint is a powerful presentation graphics.
PowerPoint Animations Making stuff move Possibilities 1.Slide Transitions Affects how slides appear 2.Animation Schemes Preset effects for title.
PowerPoint Animation Training PRESENTED BY RICHARD SNAPP – NOVEMBER 4, 2014.
New Features of Boardmaker Version 6
ESL PowerPoint Demonstration The Effective Use of Presentation Software in the ESL Classroom By Daniel Craig University of Illinois ESL 401 J.
Introduction to PowerPoint 2003 Learning And Research Technical Unit (LARTU)
Learning PowerPoint Starting and Customizing a PowerPoint Slide Show.
A Power Point Presentation For... A Power Point Presentation ( click to advance slides )
Power Point Presentations A Step by Step Guide. Contents The very first step Choosing slide layout Adding text boxes Custom Animation Changing slide design.
IReport Demo Spring 2008 OEDSA Conference. Report Properties.
Power Point Presentations “A how to primer”. Start with a “blank presentation” Instructions 1. Launch (or open) power point. 2. Close the office assistant,
How to embed a YouTube clip into a PowerPoint 2007 presentation By Anastasia Tzortzatos.
By Jennifer 2004 Powerpoint presentation Powerpoint presentation An introduction to using powerpoint.
PowerPoint Practice Exercise 1 1.Save this file in your AV-TECH Folder as PowerPoint Practice Exercise 1. 2.Open this file in PowerPoint. 3.Edit each slide.
Phonics and Fluency w w Word Knowledge Activity /ū/ spelled u /ū/ spelled _ew w.
PowerPoint For teachers, administrators, students, and all others who want to make great presentations by George Pilling, Supervisor of Library Media.
PowerPoint Tutorial Informational Slide n Standard and Format Tool Bars (just like Word and Excel) n With PowerPoint you have different views that you.
How to Make a Power Point. How to Open Power Point Go to the bottom of the screen Click on START PROGRAMS MICROSOFT WORD PROGRAMS MICROSOFT OFFICE POWER.
Begin a new story or edit a Photo Story project that has already been created. Make your selection and click next. 1.
PowerPoint 2007 Basics Review and Practice File. Insert a Shape 1.Insert any shape 2.Change the shape’s color 3.Change the shape’s style and add a bevel.
1 PRESENTER NAME TITLE SUBTITLE Date:. MAIN SECTION (Title Slide)
PowerPoint Practice Exercise 1.Save this file on your computer. 2.Open this file in PowerPoint 3.Edit each slide according to the instructions provided.
Click your mouse for next slide Adding Text Click in any text box Type in your text OR.
Text on a CCR Matrix using the SuperStar Sequence Editor Brian Bruderer.
PowerPoint Lesson 1 and 2--Part 2 Review Make a review sheet by numbering as shown below. The test is timed. You can practice again if needed. Click the.
Inserting Hyperlinks  Purpose : Enables viewers to click the link and move directly to a slide  Directions : Make one link on slide one to move to each.
How to make a PowerPoint using Windows 07? Slide Design/Background Animation Custom Animation Adding a Picture.
Welcome to Power Point! A short tutorial to get you started.
PowerPoint Ch 4 Review. When you point to a hyperlink, the mouse pointer changes to a(n) __________? Hand.
How to Make a Power Point Go to Slide 2. (You can get there by clicking on slide 2 in Normal VIEW.)
Animating Objects in PowerPoint XP/2003 Using Motion Paths and Custom Animations to add interest to your classroom presentations.
Powerpoint for Students What is Powerpoint?  Presentation software  Slides  Graphics  Animations for text  Animations for slides  Sound effects.
PowerPoint – Slide Master and Animation Computer Tech.
PowerPoint Exercise 1. Insert a slide  Slides are added to a presentation by clicking the New slide button in the Slides group under the Home tab. 
>>0 >>1 >> 2 >> 3 >> 4 >>
Introduction to PowerPoint 2003 Professional Development Training for Classroom Teachers.
PowerPoint Practice Exercise 1.Save this file on your H drive in Word folder as Practice. 2.Edit each slide according to the instructions provided in the.
How to Use Microsoft PowerPoint What is PowerPoint? Presentation software that allows you to create slides, handouts, notes, and outlines. Slide.
Cut and Paste PowerPoint Timers
Learning PowerPoint A Tutorial.
Making Templates Accessible
PowerPoint Practice Assignment (Make all changes in this presentation
How To Use PowerPoint A Brief Introduction to Commonly Used Features
How to Make a Power Point
A short tutorial to get you started
Technology ICT Core: PowerPoint.
Making Templates Accessible
Tara Dec Montgomery Lower Middle School Industrial Technology Teacher
How to Make a Power Point
How to Make a Power Point
Introduction to PowerPoint
In the next slides, you will face 5 challenges.
Introduction to PowerPoint
Insert a textbox To insert a new textbox, click on Insert on the top tool bar Look down the list and click on text box. Use your mouse to click once on.
Presentation Software
PowerPoint Practice Exercise
Making figure and Intro
Presentation transcript:

Presentations PowerPoint

Presentation A series of pictures (slides) to present in sequence What is a picture? –An array of graphical elements Lines, rectangles, ovals, text, images, curves What is a presentation?

Presentation is an array of pictures 0) slide 1 0) line(10,20,30,20,black) 1) text(10,35,”Greetings earthlings”) 2) text(10,50,”Alien Enterprise Society”) 1) slide 2 0) image(10,10,”earth.gif”) 1) text(10,100,”Conquest is our goal!”) 2) slide

Two functions function drawPicture( picture ) {image = new array(screenWidth, screenHeight); for (each index, i, in picture) {draw picture[i] into image } return image; } function show(image) {show image on the screen; }

Events CurrentSlide –index of the slide we are currently showing onLeftClick - click the left mouse button CurrentSlide=CurrentSlide + 1; image = drawPicture(Presentation[CurrentSlide]); show(image); What happens if currentSlide >= Presentation.length?

Events onLeftClick - click the left mouse button if (CurrentSlide < Presentation.length) {CurrentSlide = CurrentSlide + 1; image = drawPicture(Presentation[CurrentSlide]); show(image); } else {show end of show image }

Events onRightClick - right mouse button clicked CurrentSlide = CurrentSlide - 1; image = drawPicture(Presentation[CurrentSlide]); show(image); What if CurrentSlide is already zero?

Events onRightClick - right mouse button clicked if (CurrentSlide > 0) {CurrentSlide = CurrentSlide - 1; image = drawPicture(Presentation[CurrentSlide]); show(image); } else {do nothing and stay at slide zero; }

The Presentation Tree PowerPoint SlideShow 1 mySlideShowyourSlideShow 0)Intro 1)Body2)End 0)line1)rect2)oval3)text Program File (slide show) Slides Graphics

Attributes in the tree Where is the Font? –graphic Color –graphic Bold –graphic Color Scheme –slide Default Color Scheme (color scheme for a new slide) –file (slideshow) Program - PowerPoint File - slideshow Slide Graphic

Animations Appear from Left Magically appear Drop from top Dissolve

Adding Animations Right Click on object to animate

Magically Appear To each graphic add a “visible” boolean field

Magically Appear function drawPicture( picture ) {image = new array(screenWidth, screenHeight); for (each index, i, in picture) {if (picture[i].visible) {draw picture[i] into image } } return image; }

Magically Appear A = index of the graphic to animate; picture[A].visible = true; image = drawPicture(picture); show(image);

Blend function B - blend value that varies from 0.0 to 1.0 Start - value we want to start with End - value we want to end with val = (1.0-B)*Start + B*End; B==0.0 then val==Start B==1.0 then val==End B==0.5 then val == average of Start and End

Appear from Left StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); }

Appear from Left StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); } B = 0.0

Appear from Left B = 0.1 StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); }

Appear from Left B = 0.3 StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); }

Appear from Left B = 0.5 StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); }

Appear from Left B = 0.7 StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); }

Appear from Left B = 1.0 StartX = value of X way off the left of the screen EndX = value of X where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].X = (1.0-B)*StartX+B*EndX; image = drawPicture(picture); show(image); }

Drop from Top StartY = value of Y way above the top of the screen EndY = value of Y where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].Y = (1.0-B)*StartY+B*EndY; image = drawPicture(picture); show(image); }

Rise from Bottom StartY = value of Y way below the bottom of the screen EndY = value of Y where we want the graphic Steps = number of steps in animation sequence A = index of the graphic to animate; for (each blend value, B, between 0.0 and 1.0) {picture[A].Y = (1.0-B)*StartY+B*EndY; image = drawPicture(picture); show(image); }

Dissolve newImage - image after the dissolve oldImage - image before the dissolve start with oldImage copy every 20th pixel from newImage copy every 19th pixel from newImage copy every 18th pixel from newImage.. copy every pixel from newImage