windows media player launch?

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

  1. #1

    Default windows media player launch?

    I've been habving tons of problems getting windows media files to embed correctly, so I've decided to offer the cheap and easy option.

    What's the best way to launch a .wmv file from a projector movie in WMP? (using MX)



    ptvsavant webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Windows Media player and flash player conflicting
      Hello, I have a problem with watching streams (television programs) on the internet. I think this is caused by conflicting roles of windows media...
    2. Windows Media Player
      when i try to play a movie i have downloaded from kazaa the player gives me the message that follows"error downlaoding codec" what can i do to play...
    3. Flash in Windows Media Player
      Has anyone tried to play Flash content on Windows Media Player 10?
    4. USING WINDOWS MEDIA PLAYER!!!!
      have just installed Director MX 2004 on my mac (OSX.3) and although it looks lovely etc...i have so far been unable to import windows media player...
    5. Detect Windows Media Player and Divx player
      I haven't used Director in a really long time and have forgotten how to run a detection script. I remember using Buddy API, I think it was baFindApp...
  3. #2

    Default Re: windows media player launch?

    In article <bhqrir$g1r$1@forums.macromedia.com>, "ptvsavant"
    [email]webforumsuser@macromedia.com[/email] wrote:
    > I've been habving tons of problems getting windows media files to embed
    correctly, so I've decided to offer the cheap and easy option.
    >
    > What's the best way to launch a .wmv file from a projector movie in WMP?
    (using MX)

    You can do it pretty painlessly with Kent Kersten's free FileXtra3:

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

    on mouseUp
    pathToFile = "C:\Desktop Folder\whatever.wmv"
    -- line below builds path at runtime relative to dir movie
    -- pathToFile = the moviepath & "videos\whatever.wmv"
    pathToFile = QUOTE & pathToMovie & QUOTE
    instance = new(xtra "filextra3")
    pathToParentApp = fxFileGetAppPath(instance,"wmv")
    fx_FileRunApp(pathToParentApp & " " & pathToFile)
    end

    Gretchen Macdowall
    [url]http://www.updatestage.com/[/url]
    Gretchen Macdowall Guest

  4. #3

    Default Re: windows media player launch?

    The quick and easy way would be to use BuddyAPI to open the file ... it will automatically choose the default registered application for that file type.

    You can use 2 commands for free.

    If you don't want to use BuddyAPI then you have to first find out the user's pathway to their WMP and then use : OPEN file WITH path2WMP

    The only way to embed a WMV file in Director is with an Xtra like Tabuleiro's Streaming Media Xtra (since WMV is a streaming media file)


    If you decide to go with one of the first 2 options, you should realize that Win95, NT4, nor Win98 have WMP by default - chances are most have upgraded and installed it by now, but you will likely come across a few that have not, so you will have to offer the installers to those people.



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

  5. #4

    Default Re: windows media player launch?

    Thanks for your help everyone! I actually found a real easy way to do it. I just used gotoNetPage. Since it is on a CD, I just left off the drive letter and it launches it immediately. Whodda thunk it?

    Again, I appreciate all the help!



    ptvsavant 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