Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Want my Website to load faster

Explorer ,
Jun 01, 2013 Jun 01, 2013

Hello everyone,

I used AS3 to create a website with some animaiton and motion graphics. It takes roughly 2 minutes for the site to load. Can anyone give me some advice on how to make it load faster or what I might be doing wrong that is causing it to be so slow?

Thank you

TOPICS
ActionScript
578
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 01, 2013 Jun 01, 2013

you can delay the loading of anything that's not immediately (in frame 1) needed.  but whether that will be a significant help to you is unclear.  it depends on a number of specifics related to your website.

you may just want to create a preloader that displays something entertaining and informative while your site is loading.  that would not require any specifics.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Jun 02, 2013 Jun 02, 2013

show your website firstly. May be you have huge amount of images?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 03, 2013 Jun 03, 2013
LATEST

Single large file downloads can be throttled. If you have one giant SWF with all your assets in it, consider breaking it into separate SWFs by type. Load the most vital first to get "something" to display (preloader as kglad mentioned or startup animation graphics) and back-load anything that isn't immediately loaded later. This is just a standard tactic, flash or not. The biggest speed bump in loading complex non-flash sites is actually limiting the number of http requests as well as using CDNs. Flash is the opposite. Too much crammed in a single downloaded file isn't desirable.

Make sure the quality of the graphics and especially sound is actually required for your users experience. Most people can't tell the difference between 112kbit stereo and 192kbit stereo but the file size difference is very noticable. Same with graphics. I almost never export a web JPG over 60 quality using photoshops save for web and to any standard user the graphic looks clean and crisp. Same for video..

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines