View Single Post
  #5 (permalink)  
Old Nov 21st, 2007, 14:13
cjrollo cjrollo is offline
Junior Member
Join Date: Feb 2007
Location: England
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Re: how to change button action into a movieclip button action

I just need to edit the script which opens external file
Quote:
collectionsb.swf
into a container called
Quote:
containerone_mc
this is what I need to edit

Quote:
on (release) {
if(_root.currMovie != "collectionsb"){
_root.currMovie = "collectionsb";
containerone_mc.loadMovie("collectionsb.swf");
}else{
if (containerone_mc._currentframe >= containerone_mc.midframe) {
containerone_mc.play();
}
so that it can be put onto a movieclip button at the moment it is written for a button not a movieclip and I don't know how exactly to change it
It starts
Quote:
on (release) {
and I know I think for a moveiclip it should sart
Quote:
this.onRelease = function(){
or something like that and I don't know how to change the rest
Reply With Quote