110 likes | 216 Views
HOW TO ENHANCE YOUR ONLINE MATERIALS WITH FLASH. Phil Marston Learning Technology Unit. What will I be talking about?. What do people already know about Flash? Some examples of general Flash movies How Flash could be used in your Teaching Materials How to embed Flash in Powerpoint Slides
E N D
HOW TO ENHANCE YOUR ONLINE MATERIALS WITH FLASH Phil Marston Learning Technology Unit
What will I be talking about? • What do people already know about Flash? • Some examples of general Flash movies • How Flash could be used in your Teaching Materials • How to embed Flash in • Powerpoint Slides • Web-pages
What will I be talking about? • What do people already know about Flash? • Some examples of general Flash movies • How Flash could be used in your Teaching Materials (more examples) • How to embed Flash in • Powerpoint Slides • Web-pages
What will I be talking about? • What do people already know about Flash? • Some examples of general Flash movies • How Flash could be used in your Teaching Materials (more examples) • How to embed Flash in • Powerpoint Slides • Web-pages
What will I be talking about? • What do people already know about Flash? • Some examples of general Flash movies • How Flash could be used in your Teaching Materials (more examples) • How to embed Flash in • Powerpoint Slides • Web-pages
What will I be talking about? • What do people already know about Flash? • Some examples of general Flash movies • How Flash could be used in your Teaching Materials (more examples) • How to embed Flash in • Powerpoint Slides • Web-pages
What will I be talking about? • What do people already know about Flash? • Some examples of general Flash movies • How Flash could be used in your Teaching Materials (more examples) • How to embed Flash in • Powerpoint Slides • Web-pages
<!–- I’m sure we’re all familiar with the standard image tag --> <IMG SRC="ltulogo5.jpg" WIDTH=“156" HEIGHT=“110" BORDER="0"> <!–- Let’s see it in a way that is more readable --> <IMG SRC="ltulogo5.jpg“ WIDTH=“156“ HEIGHT=“110“ BORDER="0“ > <!–- This is very similar to embedding multimedia --> <!–- Let’s look at the OBJECT and EMBED tags -->
<!–- I’m sure we’re all familiar with the standard image tag --> <IMG SRC="ltulogo5.jpg" WIDTH=“156" HEIGHT=“110" BORDER="0"> <!–- 1st the EMBED tag --> <!-- EMBED tag for Netscape Plugin --> <EMBED PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" TYPE="application/x-shockwave-flash“ SRC="ltulogo5.swf“ WIDTH="156“ HEIGHT="110“ QUALITY=high> </EMBED> <!–- Next the OBJECT tag --> <!-- OBJECT tag for Internet Explorer Active-X Plugin --> <OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000“ CODEBASE=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 WIDTH="156“HEIGHT="110"> <PARAM NAME=movie VALUE="ltulogo5.swf"> <PARAM NAME=quality VALUE=high> </OBJECT>
<!–- And now both together --> <!-- OBJECT tag for Internet Explorer Active-X Plugin --> <OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000“ CODEBASE=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 WIDTH="156“HEIGHT="110"> <PARAM NAME=movie VALUE="ltulogo5.swf"> <PARAM NAME=quality VALUE=high> <!-- EMBED tag for Netscape Plugin (NOTE: it is inside the OBJECT tags) --> <EMBED SRC="ltulogo5.swf“ QUALITY=high PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" TYPE="application/x-shockwave-flash“ WIDTH="156“ HEIGHT="110"> </EMBED> </OBJECT>