Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Problems With Video Record/playback And Text Chat


(communication server but the script needs help before i fix server issues)
ok heres the problem;
i've been going through this over and over for hours and nothing seams
to be going right. In the code i am posting now The chat does not work
at all (unable to see others) and apparently i am not record because it
cannot playback. When recording it should create a folder on the server
automatically and stop the FLV but i have no idea if its working or
not, i am assuming it is not. First i had the live video feed working
along with the text chat but the record and playback weren't but that
was ok. but now the only thing i am getting is the live feed please
help. i don't know if it my code or what.





thanks in advance!



oh also, im not sure about this but i am on a lan; so in creating the
folder should i have "rtmp://zIIT410Mid/james/" or
"rtmp://192.168.0.10/zIIT410Mid/james"??



---------------------------------------

//CHAT

var hookup_nc:NetConnection = new NetConnection();

var rtmpGo:String = new String();

rtmpGo = "rtmp://zShared/IIT/Folder";

hookup_nc.connect(rtmpGo);

hookup_nc.onStatus = function(info) {

trace("Level: "+info.level+" Code: "+info.code);

};

type_txt.text = "";

var text_so:SharedObject = SharedObject.getRemote("sharedtext",

hookup_nc.uri, false);

text_so.connect(hookup_nc);

text_so.onSync = function(list) {

for (var i = 0; i

if (list[i].name == "textValue" && list[i].code != "success") {

_level0.type_txt.text += text_so.data.textValue;

break;

}

}

};

send_button.label = "Send";

var sender:Object = new Object();

sender.click = function() {

text_so.data.textValue = message_txt.text+newline;

_level0.type_txt.text += message_txt.text+newline;

message_txt.text="";

};

send_button.addEventListener("click", sender);



// LOCAL VIDEO

my_cam = Camera.get();

live_video.attachVideo (my_cam);





// RECORD VIDEO

//Camera and Microphone

var local_cam:Camera = new Camera();

local_cam = Camera.get();

var local_mic:Microphone = new Microphone();

local_mic = Microphone.get();

//Set Microphone and Camera;

local_mic.setGain(50); //0-100

local_mic.setRate(8); //5, 8

local_mic.setSilenceLevel(30,2000);

local_mic.setUseEchoSuppression(true);

//

live_video.attachVideo(local_cam);

//Record Video

var rtmpNow:String = new String();

rtmpNow = "rtmp://zIIT410Mid/james/";



var hookup_nc:NetConnection = new NetConnection();

hookup_nc.connect(rtmpNow);

//NetStream

var recordStream_ns:NetStream = new NetStream(hookup_nc);

recordStream_ns.attachVideo(local_cam);

recordStream_ns.attachAudio(local_mic);

//Recording Control

record_button.label = "Record";

var flvName:String = new String();

var recordNow:Object = new Object();

recordNow.click = function() {

if (record_button.label == "Record") {

record_button.label = "Stop";

flvName = flv_ti.text;

recordStream_ns.publish(flvName, "record");

} else {

record_button.label = "Record";

recordStream_ns.publish(false);

}

};

record_button.addEventListener("click", recordNow);



//Playback Stream

var hookup_nc:NetConnection = new NetConnection();

hookup_nc.connect("rtmp://zIIT410Mid/james");

var flvStream_ns:NetStream = new NetStream(hookup_nc);

var flvFile:String = new String();

playback_button.label = "Play";

//Add a name

var fileName:Object = new Object();

fileName.click = function() {

if (playback_button.label == "Play") {

playback_button.label = "Stop";

flvFile = flv_ti.text;

recorded_video.flv_video.attachVideo(flvStream_ns) ;

flvStream_ns.play(flvFile);

updateAfterEvent();

} else {

playback_button.label = "Play";

flvStream_ns.close();

recorded_video.flv_video.clear(this);

updateAfterEvent();

}

};

playback_button.addEventListener("click", fileName);




KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 03-15-2005, 09:55 PM


View Complete Forum Thread with Replies

Sponsored Links:

Problems With Video Record/playback And Text Chat
(communication server but the script needs help before i fix server issues)
ok heres the problem;
i've been going through this over and over for hours and nothing seams
to be going right. In the code i am posting now The chat does not work
at all (unable to see others) and apparently i am not record because it
cannot playback. When recording it should create a folder on the server
automatically and stop the FLV but i have no idea if its working or
not, i am assuming it is not. First i had the live video feed working
along with the text chat but the record and playback weren't but that
was ok. but now the only thing i am getting is the live feed please
help. i don't know if it my code or what.





thanks in advance!



oh also, im not sure about this but i am on a lan; so in creating the
folder should i have "rtmp://zIIT410Mid/james/" or
"rtmp://192.168.0.10/zIIT410Mid/james"??



---------------------------------------

//CHAT

var hookup_nc:NetConnection = new NetConnection();

var rtmpGo:String = new String();

rtmpGo = "rtmp://zShared/IIT/Folder";

hookup_nc.connect(rtmpGo);

hookup_nc.onStatus = function(info) {

trace("Level: "+info.level+" Code: "+info.code);

};

type_txt.text = "";

var text_so:SharedObject = SharedObject.getRemote("sharedtext",

hookup_nc.uri, false);

text_so.connect(hookup_nc);

text_so.onSync = function(list) {

for (var i = 0; i

if (list[i].name == "textValue" && list[i].code != "success") {

_level0.type_txt.text += text_so.data.textValue;

break;

}

}

};

send_button.label = "Send";

var sender:Object = new Object();

sender.click = function() {

text_so.data.textValue = message_txt.text+newline;

_level0.type_txt.text += message_txt.text+newline;

message_txt.text="";

};

send_button.addEventListener("click", sender);



// LOCAL VIDEO

my_cam = Camera.get();

live_video.attachVideo (my_cam);





// RECORD VIDEO

//Camera and Microphone

var local_cam:Camera = new Camera();

local_cam = Camera.get();

var local_mic:Microphone = new Microphone();

local_mic = Microphone.get();

//Set Microphone and Camera;

local_mic.setGain(50); //0-100

local_mic.setRate(8); //5, 8

local_mic.setSilenceLevel(30,2000);

local_mic.setUseEchoSuppression(true);

//

live_video.attachVideo(local_cam);

//Record Video

var rtmpNow:String = new String();

rtmpNow = "rtmp://zIIT410Mid/james/";



var hookup_nc:NetConnection = new NetConnection();

hookup_nc.connect(rtmpNow);

//NetStream

var recordStream_ns:NetStream = new NetStream(hookup_nc);

recordStream_ns.attachVideo(local_cam);

recordStream_ns.attachAudio(local_mic);

//Recording Control

record_button.label = "Record";

var flvName:String = new String();

var recordNow:Object = new Object();

recordNow.click = function() {

if (record_button.label == "Record") {

record_button.label = "Stop";

flvName = flv_ti.text;

recordStream_ns.publish(flvName, "record");

} else {

record_button.label = "Record";

recordStream_ns.publish(false);

}

};

record_button.addEventListener("click", recordNow);



//Playback Stream

var hookup_nc:NetConnection = new NetConnection();

hookup_nc.connect("rtmp://zIIT410Mid/james");

var flvStream_ns:NetStream = new NetStream(hookup_nc);

var flvFile:String = new String();

playback_button.label = "Play";

//Add a name

var fileName:Object = new Object();

fileName.click = function() {

if (playback_button.label == "Play") {

playback_button.label = "Stop";

flvFile = flv_ti.text;

recorded_video.flv_video.attachVideo(flvStream_ns) ;

flvStream_ns.play(flvFile);

updateAfterEvent();

} else {

playback_button.label = "Play";

flvStream_ns.close();

recorded_video.flv_video.clear(this);

updateAfterEvent();

}

};

playback_button.addEventListener("click", fileName);

View Replies !    View Related
Record A Full Screen Video Flash Chat Session
---
Where : Whole session can be recorded and saved for future viewing
---
Hello to all,

I was wondering if you guys know how to do this[message title]?
I tried the mouse recorder but basically that only records the movements of the mouse.
It doesn't record the messages in the textarea and the video feeds as well

Please help on this.

View Replies !    View Related
Record And Export Video From Flash During Playback
I'm writing in to seek help for a plug-in/3rd party software that records/ exports the playback of a swf file...online, during runtime..while the swf. file is playing.

In other words, visitors to the flash website - record the playback of the swf and have the end-product exported onto their desktop as an .mov file.

Another example would be something that works like FlashFletcher, but user do not have to download nor install any application.

http://www.geovid.com/FlashFetcher/
http://www.geovid.com/Flash_to_Video_Encoder_PRO/

There is currently similar 3rd party applications but still not quite what we're looking for. Understand that there are constraints on the server regarding multiple users trying to record and export their own video...but it is doable...has any one heard of an server application like that?

View Replies !    View Related
Record And Export Video From Flash During Playback
I'm writing in to seek help for a plug-in/3rd party software that records/ exports the playback of a swf file...online, during runtime..while the swf. file is playing.

In other words, visitors to the flash website - record the playback of the swf and have the end-product exported onto their desktop as an .mov file.

Another example would be something that works like FlashFletcher, but user do not have to download nor install any application.

http://www.geovid.com/FlashFetcher/
http://www.geovid.com/Flash_to_Video_Encoder_PRO/

There is currently similar 3rd party applications but still not quite what we're looking for. Understand that there are constraints on the server regarding multiple users trying to record and export their own video...but it is doable...has any one heard of an server application like that?

Will appreciate any replies or alternative suggestions on this. Thanks

View Replies !    View Related
Record/Playback Audio
Has anyone figured out how to script a way to allow a user to record an audio message and play it back? I am using a program called Toolbook at work, and it allows this feature (which was scripted seperately), however I prefer to do it in flash if possible. This would be used for educational interactive multimedia purposes.

If anyone has any ideas, I would appreciate any help....

TIA

View Replies !    View Related
Record & Playback Sound
Hi,

I'm looking into enabling a user to record a voice in the flash player and play it back to them. I have no need to save this file, it's simply a speak and playback feature. The only methods I've seen utilise the Flash Media Server, which seems a bit overkill for my requirements. Is is possible to capture sound and play it back or is FMS the only way?

Cheers,
Scott

View Replies !    View Related
Record & Playback Events
H i am a student who is new to flash and was wondering whether it is possible to code flash
to remember a sequence of interactions e.g. button presses by the user and play them back.

For example if a user touches three buttons in a particular order with sounds loaded to the buttons down state, is it possible to code a record and playback function so flash could record and then playback the users actions?

Any thoughts or advice would be greatly appreciated?

View Replies !    View Related
Record Playback Progress
Hello,

I am trying to find if there is a better way to record (to db) playback progress of a video that does not require polling (hitting scripts every x seconds). Any feedback or suggestions welcome. Is there anyway for flash to do an action on close, etc? The problem mainly comes into play when a user closes the browser vs performing another action.

TIA,
Carn

View Replies !    View Related
Temporary Record Microphone And Playback
Hello,
I'm trying to record microphone input and play it back. I don't need to save it to a file, just record and hit a play button to hear it.
I didn't find any documentation for it.
I tried loading a Microphone instance into Sound instance but no luck.
I will appreciate any help.

Thanks,
Or.

View Replies !    View Related
Temporary Record Microphone And Playback
Hello,
I'm trying to record microphone input and play it back. I don't need to save it to a file, just record and hit a play button to hear it.
I didn't find any documentation for it.
I tried loading a Microphone instance into Sound instance but no luck.
I will appreciate any help.

Thanks,
Or.

View Replies !    View Related
Record And Playback Audio From A Microphone
In the project i am creating i am wanting to allow the user to press a button and record their voice using a microphone. Once they have recorded what they are saying i then want to be able to play it back by pressing another button. The project is made up of several levels but i do not require the sould to be carried over from one level to the next. I am using Flash MX 2004.

I would appreciate any help as I am fairly new to Flash.

Cheers

View Replies !    View Related
Temporary Record Microphone And Playback
Hello,
I'm trying to record microphone input and play it back. I don't need to save it to a file, just record and hit a play button to hear it.
I didn't find any documentation for it.
I tried loading a Microphone instance into Sound instance but no luck.
I will appreciate any help.

Thanks,
Or.

View Replies !    View Related
How To Record A Windows Application To Flash Playback?
Originally posted in newbies forum, but is probably better here:

Hi all,

I'm very new to flash (but a very long in the tooth programmer).

I've spent a good part of the day hunting for tools to be able to record actions on a Windows application visually and to be able to play them back (much like the way WebEx can record sessions), however in a more open format.

I then thought about flash and was eventually led to this site where I found an article http://www.flashkit.com/board/showth...plication+demo which lists ScreenFlash tool.

I d/l the demo and the style of functionality is exactly what I want (i.e. records my actions on a window and is able to create a flash file for viewing oevr the web) BUT the tool is very crude and gets the colors all wrong.

The thread notes that there are better tools out there, but I can't find them - does anyone have any urls?

Many thanks,

Paul.

View Replies !    View Related
Interactive Record/playback Sound For Website
Want to make a "game" where kids can record their own songs on a website. Basically they will have 12 or so graphics that play sound on mouseover but will also have the option of recording a series of sounds and then playing them back. I'm sure there is a very simple solution?? Any ideas or helpful hints would be greatly appreciated! Thanks in advance.

View Replies !    View Related
Private Video/Text Chat With Document Sharing
Hi,

I need to set up an online video chat system for an insurance broker which enables users to visit their website and choose to chat to a broker, using text or video if available. (Brokers will always have video). It should only allow a broker to chat to one person at a time and if a broker is in a conversation, they are not contactable by any other user.

It would also be useful for the broker to be able to send documents (PDF and Word) to the user and vice versa.

I have scoured the net and not found anything like this - all sample chat scripts allow multiple users to chat or multiple private chats.

Any ideas how i would do this - i have good experience with flash and action script but am not too familiar with FCS.

View Replies !    View Related
Record/playback User Input For Testing And Use Pattern Observation
We'd like to be able to journal key and mouse input from our beta testers, and then later replay this to reproduce issues they've encountered, and to also observe how they naturally tend to interact with the game.

Just thought I'd check to see if anyone had attempted a framework for this kind of thing, or something similar. I'm also open to alternative suggestions.

Thanks.

View Replies !    View Related
Synchronize Video Playback With Image Playback
Hey guys, I was wondering how can we synchronize a video playback with an image slideshow, what I would like to achieve is to have the image slideshow playback follow the sequence of a video playlist, so supposing I have item 1(a video) playing I would want the item 1(image) show up for the duration of the video and change to the following image when item 2(video) starts playing.
Any ideas? Should I have one playlist for both videos and images or two seperate playlists, one for video and one for images?

I'm open to suggestions as long as i can get the image playback to follow the video playback.

Thanks in advance.

View Replies !    View Related
Record Video
Hi,

Can we record a video with flash without using flash media server
Also suggest other options.


Thanks

View Replies !    View Related
Record From A Swf To Video On The Fly?
Hi,

This is giving me headache

What I want to do is to create a flashmovie which the user can interact with and then record the flashvideo and save it as a video file like mov/mpeg on the server. So the user makes his or hers own video.

Is this possible at all? I just cant find a way to solve this. I know there are some programs which allows you to convert swf to video but none of these seems to be advanced enough....

Any help is very very much appreciated

View Replies !    View Related
Video Record Using Flash ?
I'm try to record video using DScap.exe using flash interface...

Video Record using Handycam and Dscap.exe..
in DScap.exe, there is button to record and stop recording.

I try to make "record" and "stop record" in DSCap.exe can be access using flash, if possible record and stop record activate using keyboard,

example :
button 1 --> open dscap.exe and begin recording
button 2 --> stop recording

anybody can help me.

Thanks in Advance

View Replies !    View Related
Component, Video Record
Hi.
I'm new to flash Video Streaming. I have to change an existing application that actually allow my client to :

- broadcast live video form a emiter page
- client can se the live video with an reciever page

Both pages have been made by a non developper, so He used nothing else than FlashComm Components like AVConferences etc ...

My work is to change some features :

- create an archive video file into FlashComm server
- allow to broadcast a second sound Stream, in order to allow client to switch between the Video's sound track & the other sound Stream

I've seen this can be done throught code easylly ( record mode ), but my question is :

Can I adpat these components via parameters to change the Video mode, to record mode, or in client part, via code to put sound off ( sound of the video display component ? )

or

Should I right now destroy all the actual application and recreate it all with actionscript ? this means recreate also the simple login component, chat, presence etc component ?

thanks for your fast reponse ...

View Replies !    View Related
Record Audio Or Video In AS2
I'm looking to record audio with a microphone and/or video/audio with the webcam and save the MP3/FLV locally. Can it be done? If so, how? Are there any tutorials?

View Replies !    View Related
Set Quality For Video Record
How can I set quality for video record?

View Replies !    View Related
Can Not Record A Video To Server
I set FMS3.0 dev up and running on Windows server 2003. Then I wrote a little flash app which publishing the video to server for recording using "ns.publish(video_message_1100285, "record");". I am using "live" application.

On server's live log:
it reads "Application doesn't have permissions for server-side record/append of streams; access denied to stream video_message_1100285."
The working dir is default config: LIVE_DIR = C:Program FilesAdobeFlash Media Server 3applicationslive
I double checked it, everyone has the write access to this dir.

Anyone can help for this issue?

Many thanks!

Alex

View Replies !    View Related
Record Video + Add Metadata
can I publish a video and add some metadata fields to that file?

View Replies !    View Related
Can You Please Record A Video From A Web Cam With Inital Setting
Can you please record a video from a web cam that has the following specs

fps: 20
bitrate: 1000
Size: 500*400

can we configure that in code or is it a webcam specs?

View Replies !    View Related
Record Video With Flash, Store On Server
I am trying to figure out the best way to use Flash to record video and then upload to Youtube using their API or capture directly to their servers.

I am finding no documentation on directly recording to Youtube, so I am thinking that FMS may be the only way to store a recorded video, then do server-side processing to upload it.

Does anyone have any advice on this?

Thanks so much.

View Replies !    View Related
Flash Local Video Record - NEED EXPERT
Hello. I need to record video from a webcam locally, then allow a user to SAVE abd then upload to the server. I have heard that this is possible, but most people's first reaction is that Flash only allows saving direct to the server. Any help out there?

View Replies !    View Related
Flash Local Video Record - NEED EXPERT
Hello. I need to record video from a webcam locally, then allow a user to SAVE and then upload to the server. I have heard that this is possible, but most people's first reaction is that Flash only allows saving direct to the server. Any help out there?

View Replies !    View Related
Flash Local Video Record - NEED EXPERT
Hello. I need to record video from a webcam locally, then allow a
user to SAVE abd then upload to the server. I have heard that this is possible,
but most people's first reaction is that Flash only allows saving direct to the
server. Any help out there?

View Replies !    View Related
Record Video With Flash, Store On Server
I am trying to figure out the best way to use Flash to record video and then upload to Youtube using their API or capture directly to their servers.

I am finding no documentation on directly recording to Youtube, so I am thinking that FMS may be the only way to store a recorded video, then do server-side processing to upload it.

Does anyone have any advice on this?

Thanks so much.

View Replies !    View Related
Record / Playback Problems / Textchat Problems Help
ok heres the problem; i've been going through this over and over for hours and nothing seams to be going right. In the code i am posting now The chat does not work at all (unable to see others) and apparently i am not record because it cannot playback. When recording it should create a folder on the server automatically and stop the FLV but i have no idea if its working or not, i am assuming it is not. First i had the live video feed working along with the text chat but the record and playback weren't but that was ok. but now the only thing i am getting is the live feed :-/ please help. i don't know if it my code or what.


thanks in advance!



---------------------------------------
//CHAT
var hookup_nc:NetConnection = new NetConnection();
var rtmpGo:String = new String();
rtmpGo = "rtmp://zShared/IIT/Folder";
hookup_nc.connect(rtmpGo);
hookup_nc.onStatus = function(info) {
trace("Level: "+info.level+" Code: "+info.code);
};
type_txt.text = "";
var text_so:SharedObject = SharedObject.getRemote("sharedtext",
hookup_nc.uri, false);
text_so.connect(hookup_nc);
text_so.onSync = function(list) {
for (var i = 0; i
if (list[i].name == "textValue" && list[i].code != "success") {
_level0.type_txt.text += text_so.data.textValue;
break;
}
}
};
send_button.label = "Send";
var sender:Object = new Object();
sender.click = function() {
text_so.data.textValue = message_txt.text+newline;
_level0.type_txt.text += message_txt.text+newline;
message_txt.text="";
};
send_button.addEventListener("click", sender);

// LOCAL VIDEO
my_cam = Camera.get();
live_video.attachVideo (my_cam);


// RECORD VIDEO
//Camera and Microphone
var local_cam:Camera = new Camera();
local_cam = Camera.get();
var local_mic:Microphone = new Microphone();
local_mic = Microphone.get();
//Set Microphone and Camera;
local_mic.setGain(50); //0-100
local_mic.setRate(8); //5, 8
local_mic.setSilenceLevel(30,2000);
local_mic.setUseEchoSuppression(true);
//
live_video.attachVideo(local_cam);
//Record Video
var rtmpNow:String = new String();
rtmpNow = "rtmp://zIIT410Mid/james/";

var hookup_nc:NetConnection = new NetConnection();
hookup_nc.connect(rtmpNow);
//NetStream
var recordStream_ns:NetStream = new NetStream(hookup_nc);
recordStream_ns.attachVideo(local_cam);
recordStream_ns.attachAudio(local_mic);
//Recording Control
record_button.label = "Record";
var flvName:String = new String();
var recordNow:Object = new Object();
recordNow.click = function() {
if (record_button.label == "Record") {
record_button.label = "Stop";
flvName = flv_ti.text;
recordStream_ns.publish(flvName, "record");
} else {
record_button.label = "Record";
recordStream_ns.publish(false);
}
};
record_button.addEventListener("click", recordNow);

//Playback Stream
var hookup_nc:NetConnection = new NetConnection();
hookup_nc.connect("rtmp://zIIT410Mid/james");
var flvStream_ns:NetStream = new NetStream(hookup_nc);
var flvFile:String = new String();
playback_button.label = "Play";
//Add a name
var fileName:Object = new Object();
fileName.click = function() {
if (playback_button.label == "Play") {
playback_button.label = "Stop";
flvFile = flv_ti.text;
recorded_video.flv_video.attachVideo(flvStream_ns) ;
flvStream_ns.play(flvFile);
updateAfterEvent();
} else {
playback_button.label = "Play";
flvStream_ns.close();
recorded_video.flv_video.clear(this);
updateAfterEvent();
}
};
playback_button.addEventListener("click", fileName);

View Replies !    View Related
Video Chat Help
hi guys.
i was wondering if you can recommend me web p2p flash videochat that is highly customizable (design video, screen size, quality maybe). A simple but powerfull videochat no rooms or file sharing. If someone could help it will be greatly appreciated.

Thanks in advance.

View Replies !    View Related
Video Chat
Hi,

Is it possible to stream webcam video between two swf files?
How can I stream webcam video from a swf file to a server e.g. a java server?

Thanks,

View Replies !    View Related
Video Chat Bow
can some one tell me were I can get a free video chatbox for my website Ive looked all over the web but cant find any. PLEASE HELP

View Replies !    View Related
Video-chat
hi

does anybody know where i can find a tutorial which explains how i can create my own flash video chat app. for flash comm server or do you know any resources ?

thanks in advance for your kind help !

best regards

cuba

View Replies !    View Related
Video Chat
Hi,
I've create a video-chat (with 5 video-users) with Flash MX 2004 and Flash Communication Flash Developer http://www.macromedia.com/devnet/cen...les/vchat.html . In locale is ok and it's work good. The hosting-society (www.aruba.it), where there is my site (www.jepart.com), haven't a Flash Communication Server. Well, can I configure my video chat on line (with 5 video-users)? What do I setting?

Excuse me, to my English

Thanks

View Replies !    View Related
Video Chat
Hi all
i am new to adobe and want to develop two chat programs one is audio chat and other is video chat
i want to confirm either Adobe Flash Media Streaming Server 3 supports the audio or video chat or not
If it does't support please suggest me the right solution for audio and video chat

Thanks

View Replies !    View Related
Video Chat
I want to be able to set up a video chat with flash, if it can be done. I looked over the tutorial on making a chat room and didn't understand it. I probably won't understand it but if someone could explain how to make a video chat room to me thanks.

:co ol:

View Replies !    View Related
Audio/Video Chat
Good afternoon everyone. I'm in the process of creating a chatroom with Audio/Video capabilities for my website http://www.macromedia.com/devnet/mx/flashcom/articles/first_comm_app.html ) and I was wondering if you might be able to help me out through the process. The model is something like www.collab.nl , but I was wondering if you know whether or not the components that are in FlashMX can be edited or customized at all, such as the text on the buttons. I have tried something as simple as editing the attached component's button color but it doesn't seem like very easy task.

Kelly

View Replies !    View Related
How To Build Video Chat ?
Does any one have any experience on building video chats in flash? Im looking for tips and tricks for a beginner!

View Replies !    View Related
Video Chat Application
ok... i'm growing a little frustrated that i can't find any tutorials or examples or anything on how to make a one on one video chat application. If anyone could direct me to a site or help me with some code or anything at all would be greatly apreciated!...

thanks beforehand

View Replies !    View Related
Flash Video Chat
Not so much an actionscript question, but I figured someone on here might have knowledge on the subject. What I'm looking for is a Flash based video chat server I can embed onto a web page. I want it to behave exactly like camfrog without the active X. Any suggestions on a good server out there? Thanks muchly

View Replies !    View Related
HELP 4 Second Latency On Video Chat App
hey guys,

I've got a simple video chat application that uses the default settings on the AVPresence component.

It works but, I'm getting a latency of like 4 seconds. It really doesn't look pro.

How can I get optimal performance from this video chat app? What are the best settings for the AVPresence component? What is the best configuration?

Thanks alot,

artane

View Replies !    View Related
Video Chat Like Www.livejasmin.com
hello flash developers, help me , desire to make a video chat similar www.livejasmin.com and I need an example or where it could be able the code to make it
thanks

View Replies !    View Related
Video Chat Tutorial Help
Im doing a tutorial at this url
http://www.adobe.com/devnet/flashcom/articles/first_comm_app.html

Its made in flash mx and FCS and there are some inconsistancies in the tutorial between versions of flash Im hoping someone can help clear up for me.

It says:

1.Open Macromedia Flash MX.
2.If it's not already visible, open the Components Panel (Window > Components).
3.Select Communication Components from the Component Panel pop up menu.
4.If it's not already visible, open the Property inspector (Window > Properties).
5.Save your new (and still empty) application as firstapp.fla, in the same folder you created (flashcomapplicationsfirstapp) for the server-side code.
6.Drag a SimpleConnect component from the Component Panel to the top-left corner of the stage.
7.Drag a SetBandwidth component to the stage and give it an instance name of bw_mc in the Property Inspector.

I see none of these components in flash 8
my flash media server is running
what do I do?
TIA
Heruk



























Edited: 12/13/2006 at 03:23:40 PM by Heruk

View Replies !    View Related
Audio/Video Chat
Good afternoon everyone. I'm in the process of creating a chatroom with Audio/Video capabilities for my website http://www.macromedia.com/devnet/mx/flashcom/articles/first_comm_app.html ) and I was wondering if you might be able to help me out through the process. The model is something like collab.nl , but I was wondering if you know whether or not the components that are in FlashMX can be edited or customized at all, such as the text on the buttons. I have tried something as simple as editing the attached component's button color but it doesn't seem like very easy task.

Kelly

View Replies !    View Related
Audio/Video Chat
Good afternoon everyone. I'm in the process of creating a chatroom with Audio/Video capabilities for my website http://www.macromedia.com/devnet/mx/flashcom/articles/first_comm_app.html ) and I was wondering if you might be able to help me out through the process. The model is something like www.collab.nl , but I was wondering if you know whether or not the components that are in FlashMX can be edited or customized at all, such as the text on the buttons. I have tried something as simple as editing the attached component's button color but it doesn't seem like very easy task.

Kelly

View Replies !    View Related
Video Chat In Flash
Hey Folks

I have to develop a flash based video/text chat.

Can I have some tutorial on the same.

Thanks in advance

View Replies !    View Related
Flash Video-chat
Hi there folks,

i was wondering if any of You can recommend some free/cheap video-chat based on flash?

EDIT: preferences:
1. i dont want to use Flash Media Server to transport the data
2. video is the keyword. So you could also just imagine transporting the video (multiple conference video streams) through one server using PHP or other server-side language.

View Replies !    View Related
Video Chat Is Not Working On MAC OS, Please Help
Hello Everyone!

I have a problem, please help or advice what should I do...

I have developed a video chat based on Wowza streaming server, video chat is working on windows, i can connect my camera and i can see on other side its working, but on mac i can connect my camera but i dont see translation on other site, the only problem is on MAC OS, please advice what could be the problem.

thank you in advance
Best Regards,
Evgenij

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved