1000 PAGE PLUS FLASH SITE

Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default 1000 PAGE PLUS FLASH SITE

    I am in the process of creating an enormous on-line magazine/directory which is
    well on the way to becoming 1000 pages. Is it possible to do it all in one
    Flash movie or should I seperate it out over several smaller ones. If so, how
    big should each one be? How to I connect between movies - is it simply the get
    URL command and type in the .swf file name. If it is how can I test that this
    works as the test movie command only opens a blank netscape/explorer page
    saying it cannot find the .swf file on the server.
    The site contains on-line booking forms and shopping trollies.

    Karen Milacic Guest

  2. Similar Questions and Discussions

    1. adding a component to flash site from html page
      Can any one help me figure this out. I want to have a an html page that has a button ( +ADD CHANNEL) when clicked it adds a custom component to a...
    2. the remote site of web page is empty how can I moveeverything over from local site?
      I am new to using this Dreamweaver 3 software and I cannot update my website, due to the remote site being empty. How can I repopulate the remote...
    3. HTML first page linked to preloader/Flash site?
      I would like to put a HTML page like this site www.tamanvanscoy.com to my Flash movie/preloader just like they did. My question is what do I label...
  3. #2

    Default Re: 1000 PAGE PLUS FLASH SITE


    you can have pages in database.. and load them into one SWF... like i d
    on [url]www.geekstinkbreath.ne[/url]


    -
    Duj
    -----------------------------------------------------------------------
    Posted via [url]http://www.forum4designers.co[/url]
    -----------------------------------------------------------------------
    View this thread: [url]http://www.forum4designers.com/message54474.htm[/url]

    Dujo Guest

  4. #3

    Default Re: 1000 PAGE PLUS FLASH SITE

    sorry to be ot - how did you modify the right-click menu options?
    Can you do that with Flash 6 ?

    "Dujo" <Dujo.12oagn@mail.forum4designers.com> wrote in message news:Dujo.12oagn@mail.forum4designers.com...
    >
    > you can have pages in database.. and load them into one SWF... like i do
    > on [url]www.geekstinkbreath.net[/url]
    >
    >
    >
    > --
    > Dujo
    > ------------------------------------------------------------------------
    > Posted via [url]http://www.forum4designers.com[/url]
    > ------------------------------------------------------------------------
    > View this thread: [url]http://www.forum4designers.com/message54474.html[/url]
    >

    noodle doodle Guest

  5. #4

    Default Re: 1000 PAGE PLUS FLASH SITE

    at 1000+ pages, it would take forever for anyone to see it, you should design
    it like a N-teir application (like java), so what you do is this, lets say you
    make a preloader, and name it index.swf, and then attach this code to the
    preloader:

    loadMovieNum("main.swf", 1);
    _root.createTextField("tbox", 1, Stage.width/2, Stage.height/2, 60, 30);
    preloadI = setInterval(preloadF, 100);
    function preloadF() {
    loaded = Math.round(100*_level1.getBytesLoaded()/_level1.getBytesTotal());
    tbox.text = loaded+"% Loaded";
    if (loaded>=100) {
    tbox.removeTextField();
    clearInterval(preloadI);
    }
    }

    my main.swf is an interface on the left hand side, my preloader was offset
    from center 170 pixels so it would show the interface easily, and then the
    proloader was running all the time in the back ground when other pages were
    loaded, make sure all your files are the same size, it makes it easier that
    way, you dont have to worry about things loading at 0,0 , then on my interface,
    it loads up the first page like this:

    loadMovieNum ("homepage.swf", 2) just so that they dont see the preloader
    until they click on a button, but then you make your buttons on the interface
    file, and on each, like my "home button" for example has this attached to it in
    actionscript:

    on (press) {
    unloadMovieNum(2)
    loadMovieNum("homepage.swf", 2);
    }

    the purpose of the unload is that flash can only load 1 movie per level, so
    you remove the movie, then load another, and while it does this, you will see
    the proloader running in the background. if you would care to see what i have
    done, and how fast each pae loads you can look here:

    [url]http://users.1freeworld.net/~ac1/index.swf[/url]

    my problem is i am having trouble loading the text into the boxes, but if it
    were done this way, i could put as many pages on as i wanted with otu slowing
    the user down too much, and they dont have to wait long to see something (the
    preloader is only 6K)

    malspach Guest

  6. #5

    Default Re: 1000 PAGE PLUS FLASH SITE

    Yes you can write the page all in flash and you can use one flash file.

    Presumably the pages will fall into several different formats, ie all the
    pages wont have a unique layout, instead they will fall into one of say 10
    different layout structures. You can develop sub-structures as well for
    minor differences in layout format within a particular layout structure.
    You could write the site to accept content data from a database that will be
    loaded into different template pages.

    The first thing you need to do is to build an expandable dynamic navigation
    architecture with the emphasis on simplicity.
    You will need good actionScript skills too :)

    Good Luck

    Ed

    "Karen Milacic" <webforumsuser@macromedia.com> wrote in message
    news:c2ag8r$ne9$1@forums.macromedia.com...
    > I am in the process of creating an enormous on-line magazine/directory
    which is
    > well on the way to becoming 1000 pages. Is it possible to do it all in one
    > Flash movie or should I seperate it out over several smaller ones. If so,
    how
    > big should each one be? How to I connect between movies - is it simply the
    get
    > URL command and type in the .swf file name. If it is how can I test that
    this
    > works as the test movie command only opens a blank netscape/explorer page
    > saying it cannot find the .swf file on the server.
    > The site contains on-line booking forms and shopping trollies.
    >

    Ed Massey Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139