How can Loading video files in AS3?
Answer / dindayal dhakar
Loading videos using the NetStream and NetConnection
classes is a multistep process:
1. The first step is to create a NetConnection object.
The NetConnection class lets you play streaming FLV files
from either an HTTP address or a local drive by passing the
value null to the connect() method, if you are connecting
to a local FLV file that is not using a server such as
Adobe's Flash Media Server 2 or Adobe Flex.
2. var nc:NetConnection = new NetConnection();
3. nc.connect(null);
4. The second step is to create a NetStream object
which takes a NetConnection object as a parameter and
specify which FLV file you want to load. The following
snippet connects a NetStream object to the specified
NetConnection instance and loads an FLV named video.flv in
the same directory as the SWF file:
5. var ns:NetStream = new NetStream(nc);
6. ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR,
asyncErrorHandler);
7. ns.play("video.flv");
8. function asyncErrorHandler
(event:AsyncErrorEvent):void
9. {
10. // ignore error
11. }
12. The third step is to create a new Video object and
attach the previously created NetStream object using the
Video class's attachNetStream() method. Then you can add
the video object to the display list using the addChild()
method, as seen in the following snippet:
13. var vid:Video = new Video();
14. vid.attachNetStream(ns);
addChild(vid);
| Is This Answer Correct ? | 3 Yes | 0 No |
How can we return a value from User Defined Function ? For Eg. we have 2 functions. In Fun1 i am getting 2 values (a,b) and i am addding those 2 and storing in to another var (c). Now i want to pass that var(c) to another function (fun2). What will be the script?
please send the scrpit driver program
Need a batch file or VB script to delete old (more than 90datys) roaming profiles
How to Communicate with JavaScript?
Why we use Action Script(Multimedia Flash) rather than using other scripting languages (JAVA,VB...etc) ?
In sap script, created 1 form but when its went to production system , client want some changes in 1 (ex - addrss) window, what we will do?
how can we move to the next column in excel sheet in file operation using descriptive programming inQTP?
how do i compose the text message in the yahoomail using descriptive programming in QTP?
what is the difference between 32 bit O.S n 64 bit O.S?
What is the procedure for installing USP-35 on my compure?
what we will test in functionality testing
How can you convert QTP 8.2 scripts to QTP 9.2. Please give some inputs ASAP.