
February 15th, 2004, 09:40 PM
|
|
Registered User
|
|
Join Date: Feb 2004
Posts: 29
Time spent in forums: 6 h 5 m 56 sec
Reputation Power: 0
|
|
I'm working on a similar web-site right now, and the way I did this was with the use of IFRAMEs (inline frames). Basically, I created layout table, with 2 other layout tables inside (exactly side by side). One will host the first frame and the second one will host second frame. Then I went into the code view, and inserted this tag between the <td></td> in each table:
Code:
<iframe marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" height="zzz" width="zzz" src="zzz.swf" name="zzz"></iframe>
All you have to modify is "zzz" part in "width", "height" "src" and "name" (don't forget to set the width and height to exact value of width and height of the hosting cell). The IFRAME is very similar to the normal FRAME, but I'm pretty sure there are some incompatibility issues between browsers. Also, I've read that tere are some other methods to accomplish this, but I used this one. If anyone would like to post other methods I'll be happy to check them out.
Cheers!
Last edited by toolbox : February 15th, 2004 at 10:47 PM.
|