I having a problem with a function that resizes movie clips.
I want the function to resize the clips individually (on rollover), but on the first rollover, the targeted clip behaves normally and all the other clips disappear.
on (rollOver) {
_root.catW.targetSize = 100;
_root.press = true;
}
on (rollOut) {
_root.catW.targetSize = 5;
_root.press = true;
}
Actions assigned to the targeted clips:
onClipEvent (enterFrame) {
if (_root.press == true) {
// The next line calls the Function in frame 1
_root.jumbo(_root.catW.targetSize, this._name);
}
}
I would be happy to send the source file to anyone who can help.
The problem now is that I don’t know how to set the condition back to false. All the clips move a little after the initial rollover. Updated example/source file at: http://www.flow14.com/FunctionHelp/index.html