service(s) / product(s)
private function startService():void
{
productService.send();
}
private function loadStyle():void
{
var eventDispatcher:IEventDispatcher =
StyleManager.loadStyleDeclarations("lib-flex-store-" + currentTheme + ".swf");
eventDispatcher.addEventListener(StyleEvent.COMPLETE, completeHandler);
}
private function completeHandler(event:StyleEvent):void
{
image.source = acb.getStyle("storeLogo");
homeView.updateMapImage();
super.initialized = true;
}