View Single Post
  #1 (permalink)  
Old 04-08-2009, 03:43 PM
vervecreations vervecreations is offline
Junior Member
 
Join Date: Jan 2009
Posts: 4
Default 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);
Reply With Quote