We would like to make two projects in Flex , 1) Project Container which is a swf that we compile as a Zinc EXE which would contain the MDM Zinc libraries etc 2) The second Project would be the real Flex application SWF with screen display, interactions etc.
This question may not be specific to Zinc , how can we in Flex to a Flash like load movie of a seperate flex compliled swf?
The goal of this is to continue working in flex where we can generate a SWF readilly - but not have to revisit the Zinc generated exe with every test (we use zinc libraries for file open/save)
var s:SWFLoader = new SWFLoader();
s.percentWidth = 100;
s.percentHeight = 100;
s.load("yourApp.swf");
addChild(s);