So far I have this code on my button,
on(release){
loadMovie("sample1.swf",4);
}
But Iwant to load another swf to that button, so i try this to add to the above code on my button:
on(release){
loadMovie("sample1.swf",4)("sample2.swf",3);
}
but it didn’t work, any suggestion will be appreciated!