Problems with link to mpg file

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

  1. #1

    Default Problems with link to mpg file

    Hello,
    I have created a simple Director file that includes a link to a mpeg file.
    This file should open in Media Player (or any other default installed program that plays mpeg).

    On 7 out of the 8 computers I have tested - the cd works - On one it doesn't

    Problem: If I click on the link (to the mpeg) - it does absolutely NOTHING...

    I have used the Task Manager to check for programs that try to open and there is no ''movement".

    If I click directly on the file... it opens with no problem in Media Player.

    It is easy to say that it is a problem with the computer (and it could be) but what would be the cause? I must be sure before I print 500 copies of the cd!

    Please help!



    capid webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Export inx interchange file, link images big problems
      We have over 500 pages inx (Indesing Interchange) files which converted from QK 6. ITs a big job to relink (one by one) with all the images in...
    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. Link problems
      Hi there. I'm starting a web project in the middle, with no one for reference, and I'm having a bit of trouble. I updated a .pdf on the site,...
    4. Help needed with ASP form browse for file, create link to file and insert in access database
      I have a form where a user enters their name, date etc. i also want them to be able to click on a browse button and select a file which will then...
    5. csv file imbed into IE browser when click the csv file link
      I have the following code. When click the link of myfile.csv, the file imbed into IE browser. How can I have a window popup to ask if I want to...
  3. #2

    Default Re: Problems with link to mpg file

    Hi...

    Maybe that one particular computer does not have the required codec to decompress the MPEG stream. Instead of MPEG, can't you try WMV ?...cuz WMV is supported by all Window Media Players...

    Vj
    vij010 Guest

  4. #3

    Default Re: Problems with link to mpg file

    First of all, if you have a link to an MPEG file that uses the "open" command (which is teh only way I know of to link to a file externally with a link) , you have been very lucky so far, because the open command requires an application to run the file.

    If you just want the file to open externally with whatever the default app is, try using BuddyAPI - it's "Open" command uses whatever program is default on the system.

    If you want to continue using the "open" command, you will need your app to first find the default application then use:

    OPEN mpegfile WITH path2program



    ============================
    Glen Palmer
    SafariTECH
    Cold Fusion Specialist
    [url]www.safaritech.com[/url]
    ============================
    SafariTECH Guest

  5. #4

    Default Re: Problems with link to mpg file

    You can launch the MPEG's with the free FileXtra4:

    [url]http://www.kblab.net/xtras[/url]

    on mouseUp
    -- mpg in same folder as movie
    pathToFile = the moviepath & "whatever.mpg"
    pathToFile = QUOTE & pathToFile & QUOTE
    instance = new(xtra "filextra4")
    pathToParentApp = fxFileGetAppPath(instance,"mpg")
    fx_FileRunApp(instance,pathToParentApp & " " & pathToFile)
    end

    Gretchen Macdowall
    [url]http://www.updatestage.com/[/url]
    Gretchen Macdowall 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