Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default path problem

    I've looked through these forums and tried out some things mentioned here, but
    I cant seem to get this to work. Heres the problem: In my Director file I
    have .mov files, but i cant set a relative path for them. I want to export
    the director file as dcr, but when i move the files or burn them to a disk the
    ..mov files dont show up b/c its looking for them on a directory on my computer..

    I tried using this example

    on preparemovi
    member("video1").filename = the moviepath & "dswmedia/video1.mov
    en

    but it didnt work...any suggestions


    stargazer424 Guest

  2. Similar Questions and Discussions

    1. Problem with file path.
      Hi, I have a plug-in implemented on visual C++ platform, in that I am creating backup file for PDF to be processed before applying any changes, am...
    2. Help Files Path Problem
      OleLena wrote: I'd check to ensure that you have the latest versions of the WebAssist extensions as this may have been fixed. I seem to recall...
    3. 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...
    4. Offset path problem
      I have some customer supplied ai files, some saved in v 3, some in v9. Selecting an object I go to the menu object >path > offset path which is...
    5. virtual path problem
      hi, I have a script in a folder which simply creates a file in another dump folder /myscript/script.php /myscript/dumpfolder/ but then i...
  3. #2

    Default Re: path problem

    I think the correct windows path delimiter is backslas

    But the best way to get the coorect pathdelimiter for any system is to store
    the last char of the moviePat
    on preparemovi
    pathDelimiter = the last char of the moviePat
    member("video1").filename = the moviepath & "dswmedia" & pathDelimiter &
    "video1.mov
    en


    johnAq Guest

  4. #3

    Default Re: path problem

    You need to build the application using a Directory structure that is
    exactly like it will be on deployment. So you need to start with a dswmedia
    folder where you store your QT assets, then you won't need to worry about
    relative paths. As John mentioned, the path delimiter for windows is a
    backslash.

    hth,
    Doug
    "stargazer424" <stargazer424@aol.com> wrote in message
    news:c09d72$hfg$1@forums.macromedia.com...
    > I've looked through these forums and tried out some things mentioned here,
    but
    > I cant seem to get this to work. Heres the problem: In my Director file
    I
    > have .mov files, but i cant set a relative path for them. I want to
    export
    > the director file as dcr, but when i move the files or burn them to a disk
    the
    > .mov files dont show up b/c its looking for them on a directory on my
    computer..
    >
    > I tried using this example
    >
    > on preparemovi
    > member("video1").filename = the moviepath & "dswmedia/video1.mov
    > en
    >
    > but it didnt work...any suggestions
    >
    >

    Doug Golenski Guest

  5. #4

    Default path problem

    Hi, I have downloaded newest version of debug standalone Flash player 9.0.r28 and I can load images whose begin with " ./". When that part of url is deleted URL is readable. Plese correct this.
    stolex 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