Forum Moderators: open
I mean, can I change an (external loaded) image in flash file by clicking on links outside the flash (with javascript etc)?
Thanks
create an empty movie clip and put an instance of it on the stage.
Give it an instance name of picholder_mc
on frame one create a layer and call it actions
type the following actionscript into it
picholder_mc.loadMovie("path to image/image.jpg");
This will load image.jpg into the empty movie clip just change the image to update the flash file
was this what you meant?