From: Robyn Wandzell <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: Help with Flash and Gif embedding...please??! Date: Tue, 24 Aug 1999 17:02:52 -0700 I'm trying to put together a brief presentation. The process should be this: 1. A window appears in the upper left and plays a flash animation ad. 2. a static gif appears below the videoregion playing the ad 3. The RealVideo clip begins playing and links appear. Step 3 works. Steps 1 and 2's regions show up but the flash and the gif don't appear. Can anyone help? Here's my code...right now i'm just running this locally and everything is in the same directory. Thanks!!! <smil> <head> <meta name="title" content="Keynote"/> <meta name="author" content="Alan Cooper"/> <meta name="abstract" content="VBITS"/> <layout> <root-layout background-color="black" width="400" height="300"/> <region id="videoregion" top="15" left="15" width="240" height="100"/> <region id="adregion" top="145" left="25" width="140" height="60" background-color="#c0c0c0"/> <region id="textregion" top="30" left="190" width="200" height="280" background-color="#000000"/> <region id="linkregion" top="235" left="25" width="140" height="50" background-color="#000000"/> </layout> </head> <body> <seq> <animation src="movie6.swf" region="videoregion" fit="fill"/> <par> <image src="asp.gif" region="adregion"/> <video src="cooper.rm" region="videoregion"/> <textstream src="links.rt" region="textregion"/> <textstream src="morelinks.rt" region="linkregion"/> </par> </seq> </body> </smil>
