MAKING CHANGES DIRECTLY TO THE HTML CODE OF A WEBPAGE - TO MODIFY / ADD MULTIMEDIA

 

If the active sound / video in the webpage is inserted (Dreamweaver, FrontPage) such that it begins in the START mode as soon as the page is called, the HTML parameter: autostart="false" (shown below) can be added to the PLUGIN code, to force it to begin in the STOP mode.

 

TO ADD SOUND & STOP

<embed src="shortmorning.mp3" width="551" height="32" autostart="false"></embed>

 

TO ADD VIDEO & STOP

<embed src="WinMovieMakeSample.wmv" width="395" height="313" autostart="false"></embed>
<embed src="Mouse_final.mpeg" width="395" height="313" autostart="false"></embed>

TO ADD FLASH CONTENT - INTERACTIVE STUDENT ACTIVITIES

<p>
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="550" height="400">
<param name="movie" value="cnt100penniesECC.swf">
<param name="quality" value="High">
<embed src="cnt100penniesECC.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="550" height="400"></object>
</p>