Rather than using getURL try using the External Interface. I think you are getting that warning because the flash piece is running from a local zone and it thinks the getURL call is trying to go outside of that. You would have to be publishing to Flash 8 or above and AS2 for this version of the code to work. Basically you put:import flash.external.*;yourButton_btn.onRelease = function(){ ExternalInterface.call("trivNextPage()");} [/CODE]The top line only needs to be included once. This examples shows how to use it with a button that has an instance name of "yourButton_btn" but if you are using it somewhere else it should work fine. Anyhow, give that a try and if it doesn't work we can try a few other things[CODE]import flash.external.*;yourButton_btn.onRelease = function(){ ExternalInterface.call("trivNextPage()");} [/CODE]The top line only needs to be included once. This examples shows how to use it with a button that has an instance name of "yourButton_btn" but if you are using it somewhere else it should work fine. Anyhow, give that a try and if it doesn't work we can try a few other things