on(release)
{
getURL (_level0.clickTag, "_blank");
}
clickthrough_mc.buttonMode = true
I get errors but I assume that is because my code is calling for something
that doesn't exist yet because the swf isn't uploaded to the host site, correct?
Here's the error codes.
1180: Call to a possibly undefined method on.
Or ask for up to date documentation for actionscript 3, your client
should be able to provide it if it's there. I kind of doubt it will be
though, most banners don't need AS3 functionality, I suppose they won't
bother.
HTH,
Manno
--
----------
Manno Bult
http://www.aloft.nl
// AS3 Code
// Assumes that clickTag is a URL to whatever page you want to go to...
var clickTag:String = "http://www.mysite.com/";
clickthrough_mc.addEventListener( MouseEvent.CLICK, handleClick );
clickthrough_mc.buttonMode = true;
function handleClick( e:MouseEvent ):void{
navigateToURL( new URLRequest( clickTag ) );
}