Could you please tell me what does “@src” stands for in action script 3 ? For example in this bit of code:
var videoURL = this.videoInfo.@src.toString();
if (videoURL && videoURL != "") {
this.videoView.load(videoURL);
}
I couldn’t find it on a google ;).
From the bit of the code provided – it looks that src is an attribute in a XML tag that has the path/filename of the video. Are the videos loaded from XML application from which the above code is pasted?