A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Problem Whith Working Invaerment

  1. #1
    Junior Member
    Join Date
    May 2001
    Posts
    16

    Problem Whith Working Invaerment

    i put that code in my Fla file But it nothing are show on the
    screen and nothing are record in the


    nc = new NetConnection(); // create connection object
    nc.connect("rtmp://Balu-server/Flash Communication Server MX/applications/TelChat"); // connect to server
    ns = new NetStream(nc); // open stream within connection
    ns.attachAudio(Microphone.get()); // capture audio
    //ns.attachVideo(Camera.get()); // capture video
    ns.publish("todays_news","record"); // begin broadcasting

    // These lines open a stream to play the video portion of the broadcast
    // inside a Video object named myVideoArea.
    // The audio is played through the standard output device--you don't
    // need to issue a separate command to hear the audio.
    ns2 = new NetStream(nc); // open another stream over the same connection
    myVideoArea.attachVideo(ns2); // specify where to display video
    ns2.play("todays_news"); // pl


    i thnink the problem is whith the way that i put the server name or maybe i have to look at the file thure http
    and not from the folder ???????

  2. #2
    psx = new Moderator();
    Join Date
    Jan 2001
    Posts
    923
    At first glance, it looks like your connection string... the server knows to automatically point you to the applications folder, so you should be able to use:

    connect("rtmp://Balu-server/TelChat");

    psx

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center