# Dynamo event handlers

**URL:** https://forum.kirupa.com/t/dynamo-event-handlers/32815
**Category:** Uncategorized
**Created:** [October 11, 2003, 5:46pm UTC](https://forum.kirupa.com/t/dynamo-event-handlers/32815 "2003-10-11T17:46:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kupreg](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/kupreg/32/171_2.png) [@kupreg](https://forum.kirupa.com/u/kupreg)
#### Post date: [October 11, 2003, 5:46pm UTC](https://forum.kirupa.com/t/dynamo-event-handlers/32815/1 "2003-10-11T17:46:56Z")

</div>

hey kids, i asked this question awhile back i just thought i’ld take another shot in the dark and see if any one can help me out. i’m loading a jpg into a blank movie clip and i want to know when it’s done loading, so i put a dynamic event handler on it, something like so

blankClip.loadMovie(“monster\*\*\*\*.jpg”);  
blankClip.onLoad=function(){  
trace(“loaded YAY”);  
}

however, when the jpg loads into the clip it erases the dynamic handler. You might say this makes sense, it does, but if i were to put this same load script, on the blankClip itself as a clipEvent it works just fine.

onClipEvent(load){  
trace(“loaded YAY”);  
}

blankClip.loadMovie(“monster\*\*\*\*.jpg”);

somebodys gotta have something for me. any tricks suggestions? greatly appreciated.
