Local Shockwave file problem

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

  1. #1

    Default Local Shockwave file problem

    Hi,

    I am trying to set up a kiosk pc to load a external web page with a link to
    a local (kiosk pc only) shockwave file but I'm running into a few problems.
    This is the link I am using on the external web page to call the shockwave
    file;-

    <a href="file:///C|/dsmedia/directions console mx.dcr"><img
    src="images/directions.gif" alt="directions" width="140" height="24"
    border="0">

    But when I click onto the link nothing happens.

    Any ideas?

    --

    Dan
    --------------------------------------
    [url]http://www.fast-trak.net[/url]
    [url]http://www.hosting.fast-trak.net[/url]
    [url]http://www.design.fast-trak.net[/url]
    [url]http://www.training.fast-trak.net[/url]



    Dan Guest

  2. Similar Questions and Discussions

    1. Problem with local file and local link
      Hi to everybody, I have installed a new version of flash player (9,0,28,0) and when I open a local file like: c:\test\index.html When I click...
    2. Linked file uploaded - link still points to local file
      Hi, We are faced with a strange problem in one of your Contribute sites: 2 users reported problems when linking and uploading files: user...
    3. LWP - multipart/form-data file upload from scalar rather than local file
      I'm looking to do an HTTP upload, preferably with HTTP::Request::Common, but get the file data from either a filehandle or a scalar rather than...
    4. publishing Shockwave: problem writing file
      When publishing a DirectorMX movie with linked castlibs as a Shockwave, I get this Director error: Problem writing file: 'c:\myFolder\myDirFile':...
    5. Shockwave script to obtain shockwave when opening file
      When you create the .dcr (Publish settings...) there is an option to include Shockwave detection in the html page, if that helps. Presumably you...
  3. #2

    Default Re: Local Shockwave file problem

    Try changing the spaces in the path to %20. Change the link to point to an html
    page. You can get Director to create the correct tags for the dcr as it needs
    object and embed tags something like this:

    <object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#vers
    ion=7,0,2,0" width="320" height="256">
    <param name="src" value="eyes.dcr">
    <embed src="eyes.dcr"
    pluginspage="http://www.macromedia.com/shockwave/download/" width="320"
    height="256"></embed>
    </object>

    If you change the #version section to be the version of Shockwave installed
    already then I think it will avoid it trying to connect to MM to check the
    version.

    Andrew

    Andrew Morton Guest

  4. #3

    Default Re: Local Shockwave file problem

    Hi Andrew,

    Thanks for the reply. I tried without the spaces to begin with amongst a
    lot of other things but all worked fine with referencing [url]http://loclahost[/url].

    Thanks for the reply.

    --

    Dan
    --------------------------------------
    [url]http://www.fast-trak.net[/url]
    [url]http://www.hosting.fast-trak.net[/url]
    [url]http://www.design.fast-trak.net[/url]
    [url]http://www.training.fast-trak.net[/url]


    "Andrew Morton" <akm@in-press.co.uk.invalid> wrote in message
    news:bdp1t4$q5d$1@forums.macromedia.com...
    > Try changing the spaces in the path to %20. Change the link to point to an
    html
    > page. You can get Director to create the correct tags for the dcr as it
    needs
    > object and embed tags something like this:
    >
    > <object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000"
    >
    codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#
    vers
    > ion=7,0,2,0" width="320" height="256">
    > <param name="src" value="eyes.dcr">
    > <embed src="eyes.dcr"
    > pluginspage="http://www.macromedia.com/shockwave/download/" width="320"
    > height="256"></embed>
    > </object>
    >
    > If you change the #version section to be the version of Shockwave
    installed
    > already then I think it will avoid it trying to connect to MM to check the
    > version.
    >
    > Andrew
    >

    Dan 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