开发者

How to create Adobe Air Internet Radio?

开发者 https://www.devze.com 2023-03-13 21:19 出处:网络
I am going to develop开发者_开发技巧 Adobe Air Internet Radio. I have knowledge of designing of Adobe Air application & also I foundSHOUTcast Radio Directory API but I dont know how to use it. Can

I am going to develop开发者_开发技巧 Adobe Air Internet Radio. I have knowledge of designing of Adobe Air application & also I found SHOUTcast Radio Directory API but I dont know how to use it. Can any one please suggest hints how to use in application. Thanks


Create am HTMLLoader object, and load it with the appropriate URL. From the Adobe docs:

var container:Sprite;
var html:HTMLLoader = new HTMLLoader;
html.width = 400;
html.height = 600;
var urlReq:URLRequest = new URLRequest("http://www.adobe.com/");
html.load(urlReq);
container.addChild(html);
0

精彩评论

暂无评论...
验证码 换一张
取 消