Need help with wierd glitch...

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

  1. #1

    Default Need help with wierd glitch...

    I have some very wierd stuff going on so i need someone who knows their flash
    and (hopefully stuff like FTP severs too) well. I have a huge problem. I am
    making a proffessional website and the point of it is to display photos. i have
    an array of buttons. Once a button is clicked, it moves to a corresponding
    frame which has the code:

    loadMovie("imgs/art/art01.swf", "position");

    It loads an swf that has the image without any code or anything on it. It gets
    more advanced here.

    I made this site once before and have been asked to remake the entire website
    recently, and replace a few of the images with new ones. The new images in swf
    files have the exact same code as the previous ones. The problem is that the
    new ones don't work from first time. The first time that they load, they do not
    appear, but once you refresh and click on the same one again it shows up. I've
    been transferring all of these new files to an FTP server, where the old ones
    were located. could it possibly be a problem with the FTP server? It works
    perfectly on my computer.

    Help would be greately appreciated, thanks!


    LiquefactionStudios Guest

  2. Similar Questions and Discussions

    1. I have a little glitch...
      Hello, I'm going a little crazy here with a problem I have in my flash movie: http://www.mindfuze.com/homeT.html. After the diagonal mask on the...
    2. Is it just me, or is this a glitch in CS?
      When I go to my links palette and I shift select a group of links, say six in a row of the same image, and I hit replace link, it doesn't work right,...
    3. glitch problem!!!please help!!!!
      i got a big problem im making a projector in director were the right part of the movie is a swf were is the navigation bar, with the diferent icons...
    4. Is this a glitch??
      When I first open an Illustrator CS file for the day and click on an object, the entire attributes palette is grayed out. Then, if I close that file...
    5. DAS autostart glitch
      I am running DB2 V8.1 FP2 on Linux. When I turn on autostart with the dasauto command, DAS starts automatically after first reboot but not after...
  3. #2

    Default Re: Need help with wierd glitch...


    "LiquefactionStudios" <webforumsuser@macromedia.com> wrote in message
    news:c52co8$ji$1@forums.macromedia.com...
    > The problem is that the
    > new ones don't work from first time. The first time that they load, they
    do not
    > appear, but once you refresh and click on the same one again it shows up.
    I've

    If the old image appears after you upload a new one, it is because you are
    loading from the cache. Refresh won't help because it only refreshes the
    html page, not the swf file. You must empty the browser's cache to get new
    copies of everything.
    Why are your external images in swf files? Unless you are using an old
    Flash version, Flash MX can load the jpeg itself without it being in an swf
    file.
    tralfaz


    tralfaz Guest

  4. #3

    Default Re: Need help with wierd glitch...

    try and load the external file into a movie clip.

    first create an empty mc and name it. then load the external file into it.

    on (whatever) {
    loadMovie("file.swf", _root.blankMC);
    }

    hth
    wllm 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