here’s my movie
i’m working on some ideas for a site redisign and i have the content popping up in a lil window when a button is clicked
but while that lil window is open i don’t want the buttons on the main movie to be clickable b/c the window opens over some of them and the lil handcursor comes up. is there a way to make the buttons not clickable while the window is open?
run the movie and click one of the circles. then while the window is open click one of the circles that’s behind the window and you’ll see what i mean
buttons = ["button1", "button2", "button3"];
_buttonFunction = function (DoUseHandCursor, ButtonArray, buttonAct) {
for (i=0; i<buttons.length; i++) {
ButtonArray*.enabled = buttonAct;
Button.prototype.useHandCursor = DoUseHandCursor;
}
};
_buttonFunction(false/*Disables hand cursor*/, buttons/* well use the array 'buttons' as the button target to get enabled or disabled*/, false/*If you want to enable your buttons, specify 'true' instead*/);
Creating engaging and entertaining content for designers and developers since 1998.