Stupid Newbie need help

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default Stupid Newbie need help

    Good Day ..
    I've installed FMS2 ... copied application(ion) into the application folder ..
    but any attempt to connect fails .. the uri I'm using is ..
    [url]http://192.168.0.10/ion/SharedFiles/Precautions.flv[/url]
    any ideas ???



    hisheirs Guest

  2. Similar Questions and Discussions

    1. Newbie Stupid Problem
      Hi All, I'm an expirienced developer in Flash, but recently I was forced to deal with Flash Media Server. I'm quite excited but I have one...
    2. Im really stupid so please help me
      how do i make a loading animation for my site and make it appear when i a page is loading?
    3. Stupid dreamweaver
      Does anyone have the same problem with rollovers as I have? When you put buttons on a page and attach the behaviors, the rollovers stay open, or they...
    4. Stupid newbie question re website hit counting
      Once a month, I run a (mostly perl) script that reads my all my webserver log files and tallies hits to several webpages. However, I have always...
    5. Stupid Question, but need heLp
      I can't insert a background into my fLash form, how do I do it?
  3. #2

    Default Re: Stupid Newbie need help

    You need to create a Flash swf from where you will access the Video(.flv) file. The url you will be using in the fla will look like rtmp://<IP of FMS>/<appliaction>/<instance>/<stream name>
    newtoflashcom Guest

  4. #3

    Default Re: Stupid Newbie need help

    THANKS for the response ..
    That's exactly what I have .. a swf w/ a embedded flv player ..
    the flv plays fine if I reference it locally .. but for some reason I can not connect to FMS ...
    hisheirs Guest

  5. #4

    Default Re: Stupid Newbie need help

    I'm missing something very basic here ...
    my client side code is ...

    theVid = "rtmp://192.168.0.10/ion/SharedFiles/Precautions.flv"

    NetCon = new NetConnection();
    NetCon.connect(null);
    NetStrm = new NetStream(NetCon);
    VidWin.attachVideo(NetStrm);
    NetStrm.play(theVid)

    if I bypass FMS e.g. theVid = "P:/Program Files/Macromedia/Flash Media Server
    2/applications/ion/SharedFiles/Precautions.flv"

    it works ...
    the FMS management console sees the server .. the application instance .. but
    I cannot get the client to connect .. ???

    hisheirs Guest

  6. #5

    Default Re: Stupid Newbie need help

    Put the following mapping in your Vhost file and try again

    <VirtualDirectory>
    <Streams>SharedFiles;P:/Program Files/Macromedia/Flash Media Server
    2/applications/ion/SharedFiles</Streams>
    </VirtualDirectory>




    newtoflashcom Guest

  7. #6

    Default Re: Stupid Newbie need help

    [Q]I'm missing something very basic here ...
    my client side code is ...

    theVid = "rtmp://192.168.0.10/ion/SharedFiles/Precautions.flv"

    NetCon = new NetConnection();
    NetCon.connect(null);
    NetStrm = new NetStream(NetCon);
    VidWin.attachVideo(NetStrm);
    NetStrm.play(theVid)

    if I bypass FMS e.g. theVid = "P:/Program Files/Macromedia/Flash Media Server
    2/applications/ion/SharedFiles/Precautions.flv"

    it works ...
    the FMS management console sees the server .. the application instance .. but
    I cannot get the client to connect .. ???[/Q]

    Take a look man...

    if using FMS...
    the var "thevid" has incorrect parameters...
    in your case that sould be set as "Precautions" (w/o .flv)
    the NetCon.connect(null); should be
    NetCon.connect("rtmp://192.168.0.10/appName");

    but if it's not using FMS you should not use RTMP on the vid variable, but use
    HTTP instead!

    good luck!

    Vinicius Hacebe 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