I’m having problems with the following code and need to merge the 2 following code together. Could anyone help with this?
on(rollOver) {
getURL(“javascript:expandCreative(‘ContainerDivID’);”);
gotoAndStop(2);
}
on(rollOut) {
getURL(“javascript:collapseCreative(‘ContainerDivID’);”);
gotoAndStop(1);
}
on (release) {
if (clickTag.substr(0,5) == “http:”) {
getURL(clickTag, “_blank”);
}
}
Need the 2 following as above into one working code.
Thanks,
Steve