Hi
I’ve created movie based buttons but am problems getting the clicked (onRelease?) state.
You can see the buttons here: http://www.detkendesign.com/detken2/portfolio.htm
The idea is that the on the rollOver state, a grey circle appears in the dotted circle. On the rollOut - just the dotted circle is left. This has been achieved.
The problem is the state once the button is clicked (on Release?), which I’d like to be the same as the rollOver State (dotted circle and grey circle).
The problem is the state once clicked - I assumed this was onRelease - but as it’s not working I assume this is incorrect.
Any suggestions?
AS below
Thanx
Dirk
onRollOver = function()
{
this.gotoAndPlay(2);
}
onRollOut = function()
{
this.gotoAndPlay(1);
}
onRelease = function()
{
this.gotoAndStop(20);
}
stop();