One extension with multiple panels
hello everybody,
i trying find out if there option have more 1 panel per extension. idea have behaviour different tabs, instead of using "tab" option within 1 panel, being able of displaying them separate panels, user can see 2 (or more) of them @ same time.
i found this, install 2 extensions in 1 go can work together, see 1 extension.
thanks lot,
import com.adobe.csxs.core.csinterface;
import com.adobe.csxs.types.csxswindowtype;
import spark.components.window;
private function createnewpanel():void
{
var npnl:window = new window;
npnl.type = csxswindowtype.panel;
// npnl.x =
//npnl.y =
//npnl.width =
//npnl.height =
//npnl.addelement()
npnl.open();
}
More discussions in Creative Suite Extension Builder
adobe
Comments
Post a Comment