Rollovers with external images

probably use Flashvars for adding something like that. infact thats probably the most intended use of it.

as far as javascript popups, I’d have no idea sorry. if you get the navigateToURL to call the link with the “_blank” param, you could then get js to resize the window on loading.


  var url:String = "http://www.ronniesalvato.com";
  var request:URLRequest = new URLRequest(url);
  try {
    navigateToURL(request, '_blank');
  } catch (e:Error) {
    trace("Error occurred!");
  }