Ask a Question related to Macromedia Flash Flashcom, Design and Development.
-
dubinyamind #1
FLV recording stalling
Sometimes when a nestream is published to FMS and recorded the first part of the stream stalls on frame one and then the rest of the stream plays out.
Is there a way to avoid this stalling?
dubinyamind Guest
-
Intermittent stalling
This is behaviour I've never seen before. Basically the symptoms are: - every minute or two, ColdFusion stops processing requests - requests... -
Application Stalling
I have a multi-accordion, multi-tabs form, whth a login form initially. When i logon, then i begin to enter data in the form, perform several... -
Stalling on new sprites
I desperately hope somebody can help. I have put some serious hours in to a director presentation that runs as a slide show. Still images fade in... -
stalling AS
I would like to halt the execution of some actionscript I have. Basically, I have a funtion that does a bunch of stuff and I would like to stall... -
stalling AS execution
I would like to halt the execution of some actionscript I have. Basically, I have a funtion that does a bunch of stuff and I would like to stall... -
AMDenis #2
Re: FLV recording stalling
The most common cause is related to not doing an accept client connection.
Make sure that you have created a main.asc (or your application's name.asc)
file with an appropriate application.acceptConnection(clientObject), otherwise
some of the asynchronous callbacks will not work consistently for the
NetConnection and NetStream methods, which may cause intermittent recording
problems leading to playback problems.
Even something as simple as the following will work:
application.onConnect = function (clientObj)
{
this.acceptConnection(clientObj);
}
AMDenis Guest



Reply With Quote

