Creative MovieFX v2 Forum


box Creative MovieFX v2
Creative MovieFX v2 is a Flash effects component that offers the ability to apply effects on any movie clips. From the user friendly interface it?s very easy to browse the over 280 predefined effects gallery and apply them on the three transition types available (In effects, Out effects, and Wait effects) without writing a line of code.

Find out more about Creative MovieFX v2

Thread: Tutorial in documentation, doesn\\\'t work...

title left
User Details
message
title right

post date:
2009-09-10 14:47:12
I've created a movie clip called _root.lookOff

Then, I inserted the following code from the tutorial in the documentation:

//start code:
_global["BlurEffect"] = xtd.effects.movieclip.BlurEffect;
var initObj = new Object();
initObj.targetMC = _root.lookOff;
initObj._effect = "Blur";
initObj.effectParams = new Object();
initObj.effectParams.blur=25;
initObj._duration=50;
this.attachMovie("MovieClipEffects","me",10,initObj);
me.initEffect();

lookOff.onRollOver =
function(){
_root.me.startEffect();
}
//end code.

This does not produce ANY effect on my lookOff movie clip. How do I get this to work?
Andrei Rinciog [Extend Studio]

post date:
2009-09-11 04:32:36
Hello,


Where have you got that code from ? Here's a link to a tutorial that I think that is exactly what you need: http://www.extendstudio.com/documentation/creative-textfx/documentation/tutorials/how-to-use-with-actionscript.html

You just have to change the click event with the roll over event.

Regards,

Andrei Rinciog