Drag and drop tutorial - a little bit extra!

Hi, I’ve just done the drag and drop tutorial with the computer and the two paint brushes.

I’ve got the same thing working in my own movie.

When the movieclip is dragged I have set some script to make a movie play simultaniously like this:

yellow.onPress = function(yellow) {
wiresfall.play(2);

That works fine.

However if I want the drag-able movieclip itself to play (on release) it wont work here’s the code that I’m using.

yellow.onReleaseOutside = function(yellow) {
yellow.play(2);

Is this wrong? becuase it wont work! and I really want it to!!!

Any help would be much appreciated.

Thanks.