Load specific frame

Hi all,

Is it possible to load specific frames of a external .swf?

Example:
I’ve got 2 swf’s; **index.swf **and images.swf. index.swf contains buttons, images contains images (doh) on several frames; img1 is on frame 1, img2 is on frame 10, etc…

Is it possible to script something like (in index.swf);


on(release) {
    loadMovie("images.swf(1)", "this.holder"); // holder = mc which contains the loaded img
}

I’ve googled for this, but didn’t seem to find a good answer.