Hi,
Try something likeor perhaps something likePHP Code:var lc:LocalConnection = new LocalConnection();
web.text = lc.domain();
if it is not bringing in the http://PHP Code:var lc:LocalConnection = new LocalConnection();
TheUrl = lc.domain();
if (TheUrl.indexOf("http://") == -1)
{
web.text = "http://" + TheUrl;
}
else
{
web.text = TheUrl;
}




Reply With Quote