|
Convenient web based access to our favorite web design Usenet groups
|
 |
This is Interesting: Free Magazines for Graphics designers and webmasters
| Author |
| Thread |
 |
|
|
|
|
|
 |
 |
|
|
 |
|
|
 |
|
|
 |
|
|
 |
|
|
 |
 |
Re: Newbie needing some site building guidance - how to |
 |
|
 |
|
|
|
  01-28-07 - 03:29 AM
|
Another way to structure your pages, which is nice because you can keep your
file to one frame, is to create your pages as movieclips, and load them
dynamically from the library as needed into the same depth. If you load a
movieclip into a depth already occupied by another movieclip, the new one wi
ll
overwrite the old one. So for example, you could have something like this:
contactButton.onRelease = function(){
_root.attachMovie("contactPage","contactPage,1)
}
bioButton.onRelease = function(){
_root.attachMovie("bioPage","bioPage",1)
}
so any button that is pressed attaches it's related movieclip into the same
depth, overwriting whichever one was there before. It's a nice method I use
alot, which avoids keyframes, frame labels, or frames at all.
|
|
|
| [
Post Follow-Up to this message ]
|
|
|
|
|
 |
| All times are GMT. The time now is 09:11 PM. |
 |
|
|
|
|
|  |
|