Web Design Web Design Forum
Registration is free! Here you can view your subscribed threads, work with private messages and edit your profile and preferences Calendar Find other members Frequently Asked Questions Search
Home Web Design

Convenient web based access to our favorite web design Usenet groups

web design reviews

This is Interesting: Free Magazines for Graphics designers and webmasters  





  Last Thread  Next Thread
Author
Thread Post New Thread   

Newbie needing some site building guidance - how to
 

melissa_v




quote this post edit post

IP Loged report this post

Old Post  01-10-07 - 11:39 PM  
I need a little help - I am designing an art portfolio in Flash, and so I ne
ed
it to be a site that has a few different pages that are linked between each
other - you know, common sense. I really have no idea how to go about
structuring that. I've been doing well at animations and buttons and
ActionScript and all kinds of things in Flash, but I just don't understand h
ow
to make several pages that are part of the same document. Do you use scenes,
 or
different "projects" within the document, or what? And then how do you link 
to
them - just like it was any other URL?

I GUESS I mean, how do you design in Flash using a home page and then other
pages to navigate to?



Post Follow-Up to this message ]
Re: Newbie needing some site building guidance - how to
 

aniebel




quote this post edit post

IP Loged report this post

Old Post  01-10-07 - 11:39 PM  
Try to stay away from using Scenes. Instead, I use keyframes but there are
other ways to tackle it too.

Get in the habit of using your top layer for your actionscript as it's prett
y
standard and will keep things organized and easy to get to. Also, try to kee
p
as much of your code there as possible instead of inside movieclip and butto
n
timelines.

You can use frame labels on keyframes for your "pages". For instance, set yo
ur
home "page" up on frame 20 with a frame label of "home", about page on frame
40, etc.. Then you can reference those labels in your button events.

For instance:


home_btn.onRelease = function() {
_root.gotoAndStop("home");
};
about_btn.onRelease = function() {
_root.gotoAndStop("about");
};



Post Follow-Up to this message ]
Re: Newbie needing some site building guidance - how to
 

melissa_v




quote this post edit post

IP Loged report this post

Old Post  01-10-07 - 11:39 PM  
Thanks - I would have never thought to use keyframes for it. I'm still getti
ng
ActionScript under control but that's just a matter of time. Do you have any
tips for keeping animations out of the movie clip timelines and on the main
timeline? I've been used to doing it within each symbol.



Post Follow-Up to this message ]
Re: Newbie needing some site building guidance - how to
 

beliy333




quote this post edit post

IP Loged report this post

Old Post  01-10-07 - 11:39 PM  
Doing it within each symbal is good. it helps to keep organized. Just keep t
he
different pages in each keyfram on the main timeline, get what im saying?



Oh and Aniabel. I see on your site you have the high lite of white drawing
itself. Like a line drawing but you cant see the pencil itself , u know? How
 do
you o that?



Post Follow-Up to this message ]
Re: Newbie needing some site building guidance - how to
 

aniebel




quote this post edit post

IP Loged report this post

Old Post  01-10-07 - 11:39 PM  
Animations in mc's is how it's supposed to work. You're good there. It's the
Actionscript you should try to keep on the main timeline. By that I mean but
ton
events (like the one I recommended), mouse events, etc. Lookup "Handling
Events" in your Help menu in Flash for a good description on that because
chances are, you'll use them frequently.

Also, make sure you put a stop(); on each keyframe that you set as a "page".
If you don't, the SWF will just keep going to the next one without stopping.

Let me know if you have any other questions.



Post Follow-Up to this message ]
Re: Newbie needing some site building guidance - how to
 

aniebel




quote this post edit post

IP Loged report this post

Old Post  01-10-07 - 11:39 PM  
Geez, I don't know why I've posted my site.... it's soooo not finished yet.
Anyway! If you're talking about the tree "growing" bit on the work section,
it's a mask made from a circle that's tweened to reveal all the image.



Post Follow-Up to this message ]
Re: Newbie needing some site building guidance - how to
 

Tetraktys




quote this post edit post

IP Loged report this post

Old Post  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 ]
Sponsored Links
 





All times are GMT. The time now is 09:11 PM. Post New Thread   
  Previous Last Thread   Next Thread next
Flash Site Design archive | Show Printable Version | Email this Page | Subscribe to this Thread

Popular forums

Adobe Photoshop forum Macromedia Flash Web Site Design
Dreamweaver FrontPage forum
JavaScript Forum XML forum
Style Sheets VRML
Forum Jump:
Rate This Thread:

 

XML RSS Feed web design latest articles Syndicate our forum via XML or simple JavaScript

Web Design archive  Database administration help  


Top Home  -  Register  -  Control Panel   -  Memberlist  -  Calendar  -  Faq  -  Search Top