Publishing Path Problem

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

  1. #1

    Default Publishing Path Problem

    Hey friends, I was wondering if anyone has experience working with the
    publishing process built-in to Adobe Flash CS3. I'm having a tricky problem
    that needs some expert diagnosis.

    My site structure looks like this:

    Root

    index.html
    /images

    myimage1.jpg
    myimage2.jpg
    myimage3.jpg
    ...

    /swf

    myFile.fla
    myData.xml

    If I open myFile.fla the project works great. The .fla reads that .xml file in
    the same directory, traverses the folders and gets the images. If I embed the
    same file in index.html it can't find the images.

    The XML

    The xml contains the path to the images. Right now,
    Code:

    imgsrc="../images/myImage1.jpg"

    is the value that works correctly with my .fla when I open it. It does not
    work when I embed that .fla in an HTML file located in the root directory.
    Neither does making the path relative to the site root
    Code:

    imgsrc="images/myImage1.jpg"

    which I had expected to be my problem.

    I believe this to be a problem with AC_RunActiveContent.js and the way the
    flash detection uses JavaScript, but I could be wrong.

    Giga Dre Guest

  2. Similar Questions and Discussions

    1. Publishing Problem
      Hello, i'm kinda new to director, and i was wondering how to export my project so that it will work on a pc and a mac. I am on a pc, and when i...
    2. Another Publishing Problem
      Using Contribute 3.1 When I went to Publish my Page, I get an Error Message saying " Access to C:/Documments and Settings/Application...
    3. FCS Publishing Problem
      Hi to all, I developed a FCS application (its a simple chat application).And i have a server on that server; i use DNS Server, IIS Server and...
    4. Problem while publishing
      hi, In authoring and as a projector, the .xml file loads into the flash movie properly and the text and images displays correctly within the flash...
    5. problem with publishing my web
      Even if I follow what is indicated in the help section I can't publish on the web FTP. And if I want to use an other software as Cute-FTP I don't...
  3. #2

    Default Re: Publishing Path Problem

    Hi

    Where is your .swf file?... your html wrapper won't work without it.
    The Feldkircher 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