# DuplicateMovieClip from stage?

**URL:** https://forum.kirupa.com/t/duplicatemovieclip-from-stage/230797
**Category:** flash
**Created:** [June 29, 2007, 12:31am UTC](https://forum.kirupa.com/t/duplicatemovieclip-from-stage/230797 "2007-06-29T00:31:28Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Guro](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/guro/32/3765_2.png) [@Guro](https://forum.kirupa.com/u/Guro)
#### Post date: [June 29, 2007, 12:31am UTC](https://forum.kirupa.com/t/duplicatemovieclip-from-stage/230797/1 "2007-06-29T00:31:28Z")

</div>

hi there guys, for first sorry for my english.

i was looking for duplicateMovieClip() in AS3.0, i have readed many things about it but still cannot duplicate movie from stage.

in CS3 i drawed something then converted it to movieClip and give it an instance name, how can i duplicate it in AS3.0?

P.S i tried senocular’s dulicateDisplayObject

```auto

import com.senocular.display.duplicateDisplayObject;
var newInst:Sprite = duplicateDisplayObject(myMC, true) as Sprite; 
newInst.x = 100; // shift to see duplicate

```

it gives me error

```auto
Implict Coerecion of a value of type Class to an unrelated type flas.display:DisplayObject

```
