PDA

View Full Version : frames flash 8 and dreamweaver problems


gilmey
08-26-2007, 09:39 PM
ok i have flash 8 and dreamweaver 8
now ive seen that people have asked this question before but i triewd the solution that was given and it still didnt help

i have a webpage that i want to open as a frameset- i saved it as such in dreamweaver with frames at the left and top
i created some buttons in flash and i put then in the left frame in dreamweaver
in flash after the geturl i also selected to open in the window with the same name as my mainframe

but when i open it in explorer or in firefox or in opera it opens the link in a new page without the frames
the weird thing is that when i open it in avant browser it works ok
any idea what is happening and what can i do to make it open in all the browsers ok?

here is my code in dreamweaver for the framesets:
"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<frameset rows="80,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="frame2.html" name="topFrame" scrolling="auto" noresize="noresize" id="topFrame" title="topFrame" />
<frameset rows="*" cols="180,*" framespacing="0" frameborder="no" border="0">
<frame src="frame1.html" name="leftFrame" scrolling="auto" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="navigation.html" name="mainFrame" scrolling="auto" id="mainFrame" title="mainFrame" />
</frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
"
now i dont know if this problem is related to flash or to dreamweaver or to both but i hope u guys can maybe help me

thnx in advance

Skoezie
09-15-2007, 11:45 AM
I had the same problem...
but i fixed it with putting name=".. to the "frame src"-tag.
But this is allready done in you're html.

I'm new into webdesign. Perhaps there is a solution in the header.
So maybe you can help yourself with changing my html-file.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Inter Vendetta Frame Test</title>
</head>

<frameset rows="200,*,160" cols="*" framespacing="0" border="0">
<frame src="menu.html" scrolling="no" noresize="noresize" id="HeadFrame" name="HeadFrame">
<frame src="welkom.html" scrolling="auto" id="MainFrame" name="MainFrame">
<frame src="sponsors.html" frameborder="no" scrolling="no" noresize="noresize" marginheight="0" id="FeetFrame" name="FeetFrame">
</frameset>
<noframes><body>
</body>
</noframes></html>


Good Luck