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

  1. #1

    Default problems on server

    hi
    Iīve a extern linked w3d file with an animation. i pause the animation on prepareMovie and control it with script at runtime. in Addition Iīve some other extern linked w3dīs from where I load models (cloneModelfromCastmember..) into the main scene.
    All the files that are used (w3d, dcr, htm) are in a dswmedia folder.
    When i test the movie local in the browser it works fine, but when i copy the dswmedia folder to the server it doesnīt. The mainScene is shown but the animation doesnīt stop.
    What can be the reason for that?
    Are there other security restrictions I havenīt thougth of?
    Should I load the files with preloadnetthing..?

    please help me!
    Thanks
    muzi


    muzikathzi webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. MX 7 Search Server Problems
      Is there some bug with the verity merge utility and MX 7 Search Server? We recently upgraded to MX 7 and ever since then the Search Server has...
    2. ftp server problems
      Hi, I'm trying to set up a server on my G4, OS X 10.2.6 and I'm having trouble doing so... :-( I'm using CrushFtp and sitting in a small...
    3. Problems! WinNT Client -> WinXP Web Server -> Win2000 File Server
      Hi everyone, I have an WinXP Server and an ASP.NET application that access files in a third machine, Win2000 Server. I am using Windows...
    4. SQL Server SP3 problems
      Hi Which version of SQL Server are you trying to update? Only apply the files needed. a.. Sql2ksp3.exe. Updates for database components. b.....
    5. Real problems in compiling Apache Web Server with Open Server 5.0.6
      Since a few days i've trialed to compile the Apache Web-Server 1.3.27 with SCO Open Server 5.0.6. Unfortunately with almost no success. 1.) I...
  3. #2

    Default Re: problems on server

    Iīve now realised, that the problem ist that the Member that includes the MainScene has state 3 and doesnīt change to 4.
    Seems as if there is a problem with decompression..?
    Can i force the member to be decompressed bevor itīs shown?
    my new code:
    on prepareMovie
    [..]
    world3d = member(1,2)
    world3d.preload()
    repeat while (world3d.state <4)

    end repeat

    defaultCamera = world3d.camera("DefaultView")
    defaultCamera.transform.position = vector(0,0,0)
    [..]

    this causes a never ending loading..

    ...need help!


    muzikathzi webforumsuser@macromedia.com 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