# Help with a prototype

**URL:** https://forum.kirupa.com/t/help-with-a-prototype/170909
**Category:** Uncategorized
**Created:** [November 30, 2005, 12:50pm UTC](https://forum.kirupa.com/t/help-with-a-prototype/170909 "2005-11-30T12:50:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![NinoScript](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/ninoscript/32/1484_2.png) [@NinoScript](https://forum.kirupa.com/u/NinoScript)
#### Post date: [November 30, 2005, 12:50pm UTC](https://forum.kirupa.com/t/help-with-a-prototype/170909/1 "2005-11-30T12:50:12Z")

</div>

i need help with a prototype that calls another prototype… hope u get it

```auto
MovieClip.prototype.tracing = function() {
	trace(this._name+"\
\	hello, how are u doing?");
};
MovieClip.prototype.calling = function(proto) {
	this.proto();
};

```

is that ok?

if it is… how should i call the function “calling”?  
1.- this.calling(tracing)  
2.- this.calling(MovieClip.prototype.tracing)

none of that works

(dont worry if u think this is nonsense, im working with bigger prototypes, this was simplified to show my problem and nothing else)
