Knowledge Base |
MCTE V3 (MovieClip Transition Effect V3)
(views: 22368)
A transition effect component with lots lots of flash animation effects already included and lots of patterns sold separately. Here are all known common issues for MCTE V3, the custom patterns are treated here too. If you have any questions that you think we should discuss here please let us know. Write to support.
Apply Flip transition using code
(2007-08-17 - views: 8056)
Q: How do I instantiate the MCTE component to make a Flip transition, using ActionScript code ?
A: In the next file you have a fully functional example of how to use the MCTE component and the Flip transition by writing ActionScript code.
Files: MCTE with Flip and AS.zip
Files: MCTE with Flip and AS.zip
User Comments
AS3 version
posted by dkrd on 2007-11-07
So how do we use MCTE with AS3? There's seems to be a problem with _targetInstanceName
_tragetInstanceName in AS3.0 version
addChild(transition);
transition._targetInstanceName = "clip2";
posted by jumpeyecomponents
on 2007-11-12
If you want to set the targetInstanceName parameter by actionscript, in AS3.0 you should use these lines of script:addChild(transition);
transition._targetInstanceName = "clip2";
calling through as3
var mcte:MCTE = new MCTE();
var myLoader:LoaderProV3AS3 = new LoaderProV3AS3();
myLoader.setSize(780,420)
myLoader.x = 10;
myLoader.y = 70;
myLoader.transitionType="mcte"
addChild(myLoader);
addChild(mcte);
mcte._targetInstanceName = "myLoader";
mcte.autoPlay = true;
mcte.transitionEffect("show","Slide","6",100,"Strong","easeInOut",20, "",
"100","20");
myLoader.source= "mo_gallery.swf";
help!? thanks
posted by moverend on 2008-01-19
but when do we load the mcte? i can't seem to connect the 2...var mcte:MCTE = new MCTE();
var myLoader:LoaderProV3AS3 = new LoaderProV3AS3();
myLoader.setSize(780,420)
myLoader.x = 10;
myLoader.y = 70;
myLoader.transitionType="mcte"
addChild(myLoader);
addChild(mcte);
mcte._targetInstanceName = "myLoader";
mcte.autoPlay = true;
mcte.transitionEffect("show","Slide","6",100,"Strong","easeInOut",20, "",
"100","20");
myLoader.source= "mo_gallery.swf";
help!? thanks
See the knowledge base item
posted by negush on 2008-01-21
Check out this knowledge base item that shows you how to do that: http://www.jumpeyecomponents.com/knowledgebase/Loader-Pro-V3/Create-MCTE-and-Loader-v3-using-code~289/
Login to post your comment



