deepLink
I am implementing deepLink in Actionscript 1.0.
On the main timeline I am using the following within a mc button:
this.deepLink = '/portfolio/';
this.onRelease = _parent.btnRelease;
this.onRollOver = _parent.btnRollOver;
this.onRollOut = _parent.btnRollOut;
stop();
This works perfectly. However, once I put a mc button into another Movie Clip on the main timeline, the script no longer functions.
I have tried, unsucessfully:
_root.deepLink = '/portfolio/';
this.onRelease = _parent.btnRelease;
this.onRollOver = _parent.btnRollOver;
this.onRollOut = _parent.btnRollOut;
stop();
How can I have this mc button direct the movie to $/portfolio/ on the main timeline?
Many thanks
