Please indicate which version of the book you are using when posting questions.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Beginning Dreamweaver MX/MX 2004 MX ISBN: 978-0-7645-4404-0; MX 2004 ISBN: 978-0-7645-5524-4 section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of software programmers and website developers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other developers’ questions, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
hi, I wondered, I dont know a whole lot of HTML and dreamweaver, I just use it to put my flash stuff up, but whenever I create a sort of frame to border my flash file, when the images surround it are loading its obvious that they are images, cause its got that bitmap logo, just wondered if anyone knew of a way of getting the image to come on without seeing the framing beforehand like this border to the flash:
thanks a lot a lot for replying pal, yeah, you got it, do you get what I mean about the imaging while its loading tho?
Kryah.co.uk is like the problem i have where the 2 cd images surrounding the animation have the framing of each individual image there until both images load, how do i get it so that its like wefail.com where both images just come on when they're loaded??
No, I am afraid I don't understand. What exactly is the problem??
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Aftermath by The Tea Party (Track 11 from the album: Transmission) What's This?
kryah's site to the far left has a picture of a cd split into two. and while the two pictures (making up 1picture of a cd) are loading you see the outline and boxes and that 'bitmap' logo in the middle of each two pictures, however this doesnt happen on wefail, is that any clearer?
I still don't fully get it. I don't see a bitmap logo when I request the page. WHat I do see is a large gap between the surrounding images and the Flash animation.
The other site uses CSS to set the background of the table, instead of directly embedding images in the table cells. Maybe that's an option for you too? They use this:
.bottom {
background-image: url(images/bigbackerbaby.jpg);
background-repeat: no-repeat;
background-position: center center;
}
yeah i bin reading in to that CSS thing I think your right,
only how do I get my CSS inside a table?
I've got it so's that the image is on the background but when I adjust the size of the page it dont fit with the flash which is in the table in a separate column
2. Create a table with a width and height of 100% (use CSS to set it) with one cell and set the align and valign properties to center and middle respectively (or better, use CSS)
3. Add the flash animation to the (single) table cell, setting the height and the width through the appropriate attributes.
If all this doesn't work, go for your initial solution with a table with a few rows. Read up on "image slicing" on Google to find out how to avoid the gaps between the images and animation.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Hollow Life by KoRn (Track 4 from the album: Untouchables) What's This?
this is my problem, thanks for help so far by the way, I've created a file called kryah.css and attatched it to the html doc, so it puts it as background to the whole site, fair enough, but how do I get it to attach it to just the table so that when I resize the browser window, it all resizes/moves together like wefail have done????
Did you examine the source of the other site? It's all in there.
Just apply your background image to the (single) table cell of your table. If you set the width and height to 100%, the background will always be centered inside the table cell, just as the Flash animation.
If you look at the HTML source and the CSS file of http://www.wefail.com, you'll see how easy it is.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Hot Pants Explosion by The B-52's (Track 2 from the album: Good Stuff) What's This?