using load movie to load to another movie

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

  1. #1

    Default using load movie to load to another movie

    This seems like it should be easy...but I can't figure it out - my action
    scripting skills are pretty basic

    I have a movie(created in MX) that loads another movie which is a photo slide
    show complete with next and previous buttons. That works fine...no problem

    The project is a photo a day and to keep the file sizes reasonable I want to
    break each slide show into a month. So what I need to do is at the last day of
    the month have the previous button load the next movie and replace itself

    And this is where I'm stuck. I need to have this already loaded movie replace
    itself within the main movie with a new .swf

    Help. I can't figure out how or if this is possible

    You can see the show [L=here]http://www.willyurman.com[/L] for what it's worth

    Will Y. Guest

  2. Similar Questions and Discussions

    1. Load Movie help...
      I am pulling double duty with this question as it serves two purposes. I am developing a total flash controlled ad system for myself, but also need...
    2. Newbie: load a movie in a movie
      Hi, This may be very easy but I'm gettinge more and more confused, and I don't get it by myself, so could please somebody give me a hand.: I...
    3. How can I load movie contents into another movie?
      How can I create the following functionality? container1.loadMovie("img1.jpg") container2 = container1; Basically, my problem is that I'm...
    4. Load JPG into a movie
      on (release) { loadMovie("../Images/image1.jpg", "axl"); I'm trying to load an external JPG into my flash movie. I've put the script above on a...
    5. load the movie help!
      I would like to use two different SWF inside 1 HTML page. One SWF will be the main content area and the other swf will be the navigation. How can I...
  3. #2

    Default Re: using load movie to load to another movie

    on the last button of your first month's .swf try to place place the
    script "_root.loadMovie(...)" or "_level0.loadMovie(...)"

    If this should not work (haven't tried, maybe it fails), use the main
    timeline, like you did for loading the first movie:
    Create empty keyframes in the main timeline with "loadMovie(...)", one
    for each month. Now you can jump to these keyframes out of your swf for
    the actual month (_root.gotoAndStop(NAMEOFKEYFRAME) and the scripts on
    them are executed (i.e. the swf for the new month is loaded and replaces
    the old one).
    hope this helps.

    greetings from munich!


    oe



    (by the way, always include your script, makes it easier to help)

    Will Y. wrote:
    > This seems like it should be easy...but I can't figure it out - my action
    > scripting skills are pretty basic
    >
    > I have a movie(created in MX) that loads another movie which is a photo slide
    > show complete with next and previous buttons. That works fine...no problem
    >
    > The project is a photo a day and to keep the file sizes reasonable I want to
    > break each slide show into a month. So what I need to do is at the last day of
    > the month have the previous button load the next movie and replace itself
    >
    > And this is where I'm stuck. I need to have this already loaded movie replace
    > itself within the main movie with a new .swf
    >
    > Help. I can't figure out how or if this is possible
    >
    > You can see the show [L=here]http://www.willyurman.com[/L] for what it's worth
    >
    oe Guest

  4. #3

    Default Re: using load movie to load to another movie

    If it were me, I would keep the next and previous buttons in the main movie
    (i.e. level 0) and load the photos at level 1 or above. If you have some reason
    for not wanting these buttons in the main movie (e.g. it does other things
    besides slide shows), then I would load the buttons as their own movie at level
    1, for example, and then load photos at level 2 or above. If the buttons would
    be covered up by the photos doing this, load the buttons at level 50 for
    example. This would make scripting a lot simpler and always give you control
    over the buttons. Having a movie replace itself is simple enough. Just load the
    new movie at the same level as the existing photo movie.to

    rlc5611 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