I have made a box of thumb nails what are buttons, Now say btn1 on release opens up a new window named WIN what is fine so far. inside the Win i added a empty MC called it content this is my problem the btn commands works too open up the WIN but not showing up my image I am after here is my actions for btn1.
on (rollOver) {
this.swapDepths(2);
jump = false;
xscale *= 1.5;
yscale *= 1.5;
}
on (rollOut) {
this.swapDepths(1);
xscale = 70;
yscale = 70;
}
on (release) {
_root.open1(148, 60);
tellTarget ("_root.win") {
gotoAndStop(“1”);
}
}
on (release) {
_root.mov();
}
on(release){
content.loadPic(“pic1.jpg”);
}
Can someone please shine alight on what I am doing wrong. All I need is a command to load a exturnal jpg. on the same btn.
Many thanks
Barrie.