Groups | Blog | Home
all groups > flash (macromedia) > november 2003 >

flash (macromedia) : Flash Site (Help)


ShadowSniper
11/4/2003 10:15:55 PM
I'm pretty much a beginner at flash, I know the basics and a little bit of actionscripting. Recently I've seen a Flash website that had a iframe in the middle of it (not appart of the flash). Sorry I lost the link so I have no example to show you. Can someone please tell me how this is done?


squipple
11/4/2003 10:27:18 PM
One way is to build flash pieces in a table surrounding it.

Like a table that's 3X3, has the iframe in the middle, and flash in the other 8 surrounding cells.


aceGreed
11/4/2003 10:29:22 PM
this could be done with a layer floating over a flash movie. it could be done with several flash movies surrounding the iframe. but you could also have a text area in flash that can load html into, it could look like an iframe when it's not. i'm sure there could be other ways to accomplish this.
would help immensely if you had the example.

a


ShadowSniper
11/4/2003 10:50:51 PM
I tried finding the site again but I couldn't, sorry. They probably made a table with many flash movies surrounding it as you both said.

Ace, can the floating layer be done by using HTML coding? I never heard of that before.

squipple
11/4/2003 11:08:02 PM
You can do it using Layers, or DIV tags.
In Dreamweaver, Insert ->Layer, then just position it where you want it.

aceGreed
11/4/2003 11:09:37 PM
just analyse this code, and change it accordingly. the div tag is the layer that will float over the flash movie which is embedded in the page with the object tag.


<div id="Layer1" style="position:absolute; width:222px; height:288px; z-index:1; left: 146px; top: 113px;">
<iframe width="222" height="288" src="http://www.google.com">test iframe</iframe>
</div>


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="500">
<param name="movie" value="test.swf">
<param name="quality" value="high"><param name="BGCOLOR" value="#CCCCCC">
<embed src="test.swf" width="500" height="500" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" bgcolor="#CCCCCC"></embed>
</object>

ShadowSniper
11/5/2003 6:29:14 PM
Thanks guys! You helped out alot! =)

AddThis Social Bookmark Button