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   

site/concept check & question
 

Charmaine99




quote this post edit post

IP Loged report this post

Old Post  06-23-04 - 12:14 PM  
Hi all,

What you think? this is more so just an idea i am testing out.

http://melonsite.port5.com

question: does anyone know why it takes so long for the preloading to appear
?
- it only seems to appear when the movie is like 90% loaded anyway?

this is a bit of a wip, so any comments & suggestions are much appreciated.

Thanks all.






Post Follow-Up to this message ]
Re: site/concept check & question
 

ladyluna




quote this post edit post

IP Loged report this post

Old Post  06-23-04 - 05:17 PM  
Hi,
I am not really sure what the site is for. I guess if a user goes there they
will have a purpose to be there, but if I just ran into the site, I wouldn't
understand what Melon is. I like the navigation, although it did become hard
 on
the eyes pretty quickly. Could just be me...
As far as your preloader, how did you build it? What is your code? It may no
t
be functioning, but rather just playing once the movie is loaded. Without
knowing how it is built, it is hard to tell.
Luna



Post Follow-Up to this message ]
Re: site/concept check & question
 

Laiverd.COM




quote this post edit post

IP Loged report this post

Old Post  06-23-04 - 05:17 PM  
That website 'eats' and average of 75% !! of my processor capacity (PIV 2.6
Ghz with 1Gb RAM); that cannot be good. Other than that I find the
navigation counter intuitive, which may be the purpose, but its irritating
to me. Other than that: simple concepts are good ;-)

John

--
----------------------------------------------------------------------------
-----------
RESOURCES
http://groups.google.com/advanced_g...s_ugroup=*flash
----------------------------------------------------------------------------
-----------
TUTORIALS at
www.laiverd.com
Flash & PHP Emailform
Using textfiles in Flash
----------------------------------------------------------------------------
-----------




Post Follow-Up to this message ]
Re: site/concept check & question
 

Charmaine99




quote this post edit post

IP Loged report this post

Old Post  06-23-04 - 05:17 PM  
Thankyou for your posts ladyluna and lavierd.

The code i have got on the preloader is:

onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)*100))*.25;
per = int(percent);
percentage = per+"%";
if (percent>99) {
_parent.gotoAndPlay(2);
}
}

melon isn't really anything, the site was just a bit of experimentation
really. maybe something i could use in the future for an advert or something
.

yeh, I don't know why it eats so much... i know it really makes the flash
player work for sure. it's attaching mc's from the library at random and the
n
i've got the clip that the library items are attached being duplicated and
placed randomly on the stage.  any ideas how i could improve the amount of
processing required?  I am not really any good at actionscript, still a newb
ie,
so any pointers into improving that area would b good.

Thanks again for your posts.




Post Follow-Up to this message ]
Re: site/concept check & question
 

Laiverd.COM




quote this post edit post

IP Loged report this post

Old Post  06-24-04 - 12:16 AM  
Well, I'll tell you what eats that much: it's the continuous fading in and
out of movies ;-)

John

--
----------------------------------------------------------------------------
-----------
RESOURCES
http://groups.google.com/advanced_g...s_ugroup=*flash
----------------------------------------------------------------------------
-----------
TUTORIALS at
www.laiverd.com
Flash & PHP Emailform
Using textfiles in Flash
----------------------------------------------------------------------------
-----------




Post Follow-Up to this message ]
Re: site/concept check & question
 

Laiverd.COM




quote this post edit post

IP Loged report this post

Old Post  06-24-04 - 12:16 AM  
read 'movies' as 'pictures'

--
----------------------------------------------------------------------------
-----------
RESOURCES
http://groups.google.com/advanced_g...s_ugroup=*flash
----------------------------------------------------------------------------
-----------
TUTORIALS at
www.laiverd.com
Flash & PHP Emailform
Using textfiles in Flash
----------------------------------------------------------------------------
-----------




Post Follow-Up to this message ]
Re: site/concept check & question
 

tralfaz




quote this post edit post

IP Loged report this post

Old Post  06-24-04 - 04:15 AM  
"Charmaine99" <webforumsuser@macromedia.com> wrote in message
news:cbbk5m$236$1@forums.macromedia.com...
> Hi all,
>
>  What you think? this is more so just an idea i am testing out.
>
>  http://melonsite.port5.com
>
>  question: does anyone know why it takes so long for the preloading to
appear?
> - it only seems to appear when the movie is like 90% loaded anyway?
>
>  this is a bit of a wip, so any comments & suggestions are much
appreciated.
>
>  Thanks all.

It's a very common complaint.  It amazes me that so many experienced people
still don't know about the late starting pre-loader problem.
It is caused because of this approximate order of loading...

1) Load all the library stuff that will be needed in frame 1
2) Load components
3) Load any library item that has a linkage name
4) Start playing at frame 1 (the preloader)

Because of this loading sequence the preloader in frame 1 can't even start
to play until a whole bunch of library stuff is loaded first.
Sometimes you can fix it by making the preloader on level 0  and load
everything else into another level.

If you move all content off of frame 1 (all movieclips etc) and inside the
library don't export anything in frame 1, then the preloader can start much
sooner.
Sometimes, because of the way the project is made it is necessary to make
the preloader a separate swf file that loads the main swf file.  That way,
the preloader can start right after loading only it's own pieces.  Done that
way it can also be a modular preloader that can be used for all your
projects.  This is my preferred method.

good luck,
tralfaz




Post Follow-Up to this message ]
Re: site/concept check & question
 

Charmaine99




quote this post edit post

IP Loged report this post

Old Post  06-24-04 - 09:14 AM  
so it's the alpha that eats? I think i may revert back to the no alpha versi
on
then.  Thanks John.

Thankyou so much for your detailed info tralfaz, so loading the movie in as 
an
external one from the preloader is the best way to go? can you still load
external movies into the main external one then too?

I'm still a newbie, just under six months learning flash so really appreciat
e
the info you guys have to offer.

Thanks again.



Post Follow-Up to this message ]
Re: site/concept check & question
 

tralfaz




quote this post edit post

IP Loged report this post

Old Post  06-25-04 - 12:16 AM  
"Charmaine99" <webforumsuser@macromedia.com> wrote in message
news:cbdg3i$gl3$1@forums.macromedia.com...
> so it's the alpha that eats? I think i may revert back to the no alpha
version
> then.  Thanks John.
>
>  Thankyou so much for your detailed info tralfaz, so loading the movie in
as an
> external one from the preloader is the best way to go? can you still load
> external movies into the main external one then too?
>
>  I'm still a newbie, just under six months learning flash so really
appreciate
> the info you guys have to offer.
>
>  Thanks again.

Very welcome.   Yes, any loaded clip can load another one.  The thing is
that if the preloader loads main.swf and main.swf is just a shell for
loading external files, the preloader will only show the loading progress of
main.swf before it loads any external file.  Then when main starts playing
and loading it will need it's own preloader for the elements that are
loading into it.
tralfaz




Post Follow-Up to this message ]
Sponsored Links
 





All times are GMT. The time now is 04:20 AM. 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