Maximize and Minimize buttons
Hi,
I am loading another swf file into an additional form per the code below. However, that form that shows up doesn't have any maximize or minimize buttons. Is there a way to make those show up?
Thanks in advance everyone.
var formPrev = new Form;
formPrev.movie = getAdditionalFile("view.swf");
formPrev.caption = "previewing...";
formPrev.showCaption = true;
formPrev.canDrag = true;
formPrev.initVars = "showClose=1";
formPrev.show(true);
|