There are 2 ways for loading images in ANCC Canvas:
These are in the click even to load one image after another.
1- create an image and load it into a movie clip.replace an existing image in a movie clip.
root.images.children[0].image.src = 'images/img' + f + ".jpg";
2- create an image and load it into a movie clip.
root.images.removeAllChildren(); // unload the previous image
var p = new createjs.Bitmap('images/pimg' + i + ".png");
root.images.addChild(p);
I personally use # 2. Note that you need to delete the previous file if you want to load other files but that's OK.
Here are 2 examples I made to try this out as well as a menu I used in another fla that was a lot more complicated. One is using jquery each() and you need jquery, the other is using forEach.
You can replace the image code in the forEach example with the jquery image loading example. They will work the same.
loadingimages-example2.zip - Box