View Single Post
  #2 (permalink)  
Old 03-30-2009, 12:09 PM
meester meester is offline
Senior Member
 
Join Date: Feb 2003
Posts: 212
Default

Don't know if this is what you want but...

I would add this call to the swffunction in your actionscript

Code:
function ParseBooks(urlInput:XML):void { 
    var iURL:String = urlInput;
    trace(iURL);
     // call swfkit function to load the iURL in the browser
    flash.external.ExternalInterface.call("ShowPage",iURL)
}
In swfkit i ld write this function in the initialise script

Code:
function ShowPage(url){
    // this function is called from your actionscript and uses the iURL as url
    ax.activex.navigate2(url);
}
Reply With Quote