'ello 'ello!
I’m working on this project, where i attach movies to an empty movieclip. In these attached movies, i have a button that needs to target a function on the main timeline.
Example:
on the main timeline, i have an action that loads a bitmap onto the background: loadBitmapSmoothed(“background.jpg”,bg_con);
On the main timeline, i also have a button with following action:
on(release){
this.mc_holder.attachMovie(“MC_products”,1);
}
Then, in the attached movieclip i have a button that needs to swap the image previously loaded into the ‘bg_con’-movieclip, like thus:
on(release){
_root.loadBitmapSmoothed(“product_1.jpg”,bg_con);
}
For some reason, this doesn’t work. I’ve also tried using _level0. but nothing happens. Any good ideas anyone?
Any help is welcome, i shall bow in respect to anyone who might come up with a solution.
cheers
Mikz