ARGH!...help on multiple arguments for asfunction...
what I want to do is create an array that will allow me to call an SWF, give it x and y coordinates of a blank movie and load into a level...I understand that this will need four arguments...very unsure how to proceed...
can someone give me a quick shot at how I can get started?
Thanks!
One last question, if I may...
how can I incorportate this code into the code you provided, so that I can fade the graphic into the stage?...
onEnterFrame = function ()
{
var speed = 2;
if (mc._alpha < 100)
{
mc._alpha += speed;
}
else
{
delete onEnterFrame;
}
};
Thanks again!