I have buttons that call images into a loader component. All of the buttons work but I am having a problem with having the first image already be open when the page is entered. Here is what i have right now on the first button:
on (release) {
loadMovie("Abbigaile.jpg", "loadImage", "POST");
loadMovie("ab.gif", "loadImage2", "POST");
}
Do you have any suggestions? Would this work better with "if/then" statements? I am just learning about those.
on (release) {
loadMovie("Abbigaile.jpg", "loadImage", "POST");
loadMovie("ab.gif", "loadImage2", "POST");
}
Do you have any suggestions? Would this work better with "if/then" statements? I am just learning about those.