PDA

View Full Version : Fireworks -> Dreamweaver


Kolja
12-29-2003, 10:01 AM
OK, here it is... I would like to design my page similar to this one on this picture (http://users.teol.net/~kolja/web.jpg)... I draw this in Fireworks MX... Fields on the left would have somethng in them... Some picture maybe... Now, every page would be the same, with one difference: text in marked field would be different and the height of that field would be also different. Can someone explain to me how to export that from Fireworks in Dreamweaver?

Puppet Master
12-29-2003, 07:29 PM
I am not sure if this will work, but did you try to export it as an html document? Just a suggestion.:)

Kolja
12-29-2003, 09:46 PM
Yes, but it exports just a single picture...

Puppet Master
12-30-2003, 11:17 AM
Does fireworks have the 'save entire as' feature may be that'll work?

Kolja
12-30-2003, 03:47 PM
Nah... Maybe I could do something by hotspots or slices... I'll see...

(-Guardian-)
01-01-2004, 02:09 AM
Have you tryed opening it with Adobbe Photoshop?
I don't know if this will solve your problem but it worth trying i guess
GOOD LUCK

Lafa
01-01-2004, 09:00 AM
you need to creat frames...
the top frame,left frame and a main frame
this is a simpel frame code but you need to edit it for your page:

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="125,*" frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" scrolling="NO" noresize src="Header" >
<frameset cols="150,*" frameborder="NO" border="0" framespacing="0" rows="*">
<frame name="leftFrame" scrolling="NO" noresize src="Menu">
<frame name="mainFrame" src="mainframe">
</frameset>
</frameset>
<noframes>
<body bgcolor="#000000" text="#FFFFFF">
</noframes>
</body>
</html>

Kolja
01-01-2004, 06:26 PM
I got it! There's no need for this! It should be exported as HTML, with slices where text is going to be... When it's imported in Dreamweaver, those slices should be deleted, and then the text can be written in those fields...
Thank you all for your help...