Clone MovieClip in realtime - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:42:03Zhttp://stackoverflow.com/feeds/question/1071097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1071097/clone-movieclip-in-realtime1Clone MovieClip in realtimemofle2009-07-01T20:07:37Z2009-07-03T15:45:43Z
<p>I have a MovieClip with and image inside that I can drag, resize and rotate.</p>
<p>I'm creating a little thumbview, so the user can se how it will look. This is essentially a small version of the main MovieClip.</p>
<p>How can I clone the MovieClip into a smaller one, so that when I drag, rotate or resize the image in the main MovieClip the small one will be updated with the changes.</p>
<p>I have tried BitmapData draw(), but it is too slow.</p>
<p>Any other solution?
<br /></p>
<p><b>Update</b><br />
Here's the code I'm currently using:</p>
<pre><code>import flash.display.Bitmap;
import flash.display.BitmapData;
function createThumbnail() {
var bmd:BitmapData = new BitmapData(mcBig.width, mcBig.height, false, 0xFFBC1C);
bmd.draw(mcBig);
var b:Bitmap = new Bitmap(bmd);
b.smoothing = true;
b.scaleX = 0.2;
b.scaleY = b.scaleX;
mcSmall.addChild(b);
}
</code></pre>
<p>the createThumbnail function is called on every drag,resize,rotate.</p>
<p>If someone has a better/faster way, let me know ;)</p>
http://stackoverflow.com/questions/1071097/clone-movieclip-in-realtime/1072466#10724661Answer by John Isaacks for Clone MovieClip in realtimeJohn Isaacks2009-07-02T04:21:39Z2009-07-02T04:21:39Z<p>My first solution was going to be BitmapData.draw() but you said that is too slow. The only other route I think is to propagate its appearance to another movie clip, e.g. have event listeners for when you rotate it, and set the rotation on the thumnail to match, depending on how much you can change this may take a lot of work. So BitmapData.draw might be your best option. I have used BitmapData.draw before and it never seemed to perform slow to me.</p>
http://stackoverflow.com/questions/1071097/clone-movieclip-in-realtime/1073721#10737210Answer by PiPeep for Clone MovieClip in realtimePiPeep2009-07-02T10:56:08Z2009-07-02T10:56:08Z<p>If your MovieClip can be created with only a constructor, you might try:</p>
<pre><code>//(stolen from http://www.dannyburbol.com/2009/01/movieclip-clone-flash-as3/)
public function duplicateDisplayObject(
source:DisplayObject,
autoAdd:Boolean = false
):DisplayObject
{
// create duplicate
var sourceClass:Class = Object(source).constructor;
var duplicate:DisplayObject = new sourceClass();
// duplicate properties
duplicate.transform = source.transform;
duplicate.filters = source.filters;
duplicate.cacheAsBitmap = source.cacheAsBitmap;
duplicate.opaqueBackground = source.opaqueBackground;
if (source.scale9Grid) {
var rect:Rectangle = source.scale9Grid;
// WAS Flash 9 bug where returned scale9Grid is 20x larger than assigned
// rect.x /= 20, rect.y /= 20, rect.width /= 20, rect.height /= 20;
duplicate.scale9Grid = rect;
}
// add to source parent’s display list
// if autoAdd was provided as true
if (autoAdd && source.parent) {
source.parent.addChild(duplicate);
}
return duplicate;
}
</code></pre>
<p>It is not perfect (if your constructor needs arguments, or if the clip has been modified), but it is the best solution I have seen.</p>
<p>There is no explicit way in flash to clone a MC. :-(</p>
http://stackoverflow.com/questions/1071097/clone-movieclip-in-realtime/1079914#10799142Answer by RickDT for Clone MovieClip in realtimeRickDT2009-07-03T15:45:43Z2009-07-03T15:45:43Z<p>BitmapData drawing is extremely fast. You should try to modify your createThumbnail to reuse the bitmap and just redraw into it. Object instantiation is a big hit, so if you're creating a new BitmapData and Bitmap on every frame, that is probably the source of your problem.</p>
<pre><code>import flash.display.Bitmap;
import flash.display.BitmapData;
private var _myThumb:Bitmap; // you'll probably want to have one of these for each mcSmall instance, instead of a class-level variable - this is just here for sample reference
private var _myThumbData:BitmapData;
function createThumb() {
_myThumbData = new BitmapData(mcBig.width, mcBig.height, false, 0xFFBC1C);
_myThumb = new Bitmap(_myThumbData);
_myThumb.smoothing = true;
_myThumb.scaleX = _myThumb.scaleY = 0.2
mySmall.addChild(_myThumb);
}
createThumb(); // call this just once per thumbnail
function createThumbnail() { //call this every draw frame
_myThumbData.draw(mcBig);
}
</code></pre>