PDA

View Full Version : seen this website!!!!


amjad
03-08-2004, 04:56 AM
hi all

how do i place images in a flash movie, loaded by an external movie....in a way tht images are loaded one by one....in a sequence..as done in the site......

http://www.stratocucine.com


I AM STUK !! HELP!
amjad:confused:

Ketz
03-08-2004, 01:13 PM
Hi.

well, you can always load an external image with the loadmovie(); command

for example:

loadmovie("1.jpg", "target"); or loadmovie("1.jpg", 1);

the first one is what you want because you can make an empty movieclip, place it on the stage and name it "test" for example.

After that, when someone presses a button with the loadmovie action, you specify the target . like:

on (press) {
loadmovie("1.jpg", "test");
}

the loaded image will apper where you placed the movieclip!

after mastering that you can try to learn how to make a loader to that image. :)

good luck