Flex Resources

Flex 2.x Resources
Flex sites/blogs:
Adobe:
http://www.adobe.com/devnet/flex/
DEVNET - start here!
http://www.adobe.com/products/flex/productinfo/faq/
http://www.adobe.com/cfusion/communityengine/index.cfm?event=homepage&productId=2
http://blogs.adobe.com/
http://weblogs.macromedia.com/mxna/
http://labs.adobe.com/
http://labs.adobe.com/community/
http://www.adobe.com/cfusion/exchange/index.cfm#loc=en_us&view=sn610&viewName=Adobe%20Exch ange&avm=1
http://blogs.adobe.com/flexdoc/
Other:
http://code.google.com/p/flexlib/
http://flexbox.mrinalwadhwa.com/
http://dougmccune.com/blog/
http://www.cflex.net/
http://www.quietlyscheming.com/blog/
http://www.everythingflex.com
http://www.waldosmeets.com/
http://www.jessewarden.com/
http://www.cbetta.com/blog/
http://www.cynergytv.com/
http://www.flexdaddy.info/
http://www.richinternet.de/blog/
http://www.brightworks.com/technology/overview.html
http://www.crossdomainxml.org/
http://flexsearch.org/
http://labs.flexcoders.nl/
Flex style Explorer:
http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
Documentation:
http://www.adobe.com/support/documentation/en/flex/
http://livedocs.macromedia.com/flex/2/
http://www.adobe.com/cfusion/knowledgebase/index.cfm
Lists:
http://www.adobe.com/cfusion/webforums/forum/index.cfm?forumid=60
http://groups.yahoo.com/group/flexcoders/
http://groups.yahoo.com/group/flexcomponents/
Bugs/enhancement requests:
http://www.adobe.com/go/wish

"Create a Login System with Flex and PHP"
http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/28.html
"Flex MP3 Player"
http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/29.html

Similar Messages

  • .fdf from server and .pdf as flex resource

    I'm building an internal app, so I'm not concerned about initial size.  Once developed it should be cached on the local box.
    I have to generate various 30 page PDF's that are already defined.  I can populate them on the server using a tool like pdftk and then download them to my flex app just like any PDF.
    I would like to only download the .fdf file and have the .pdf file as a resource internal to my flex 4 app.  The purpose is to conserve bandwidth when the app is running at remote facilities.
    It seems like the .fdf has an internal pointer to the .pdf, but I cannot seem to get it to work.  I'm guessing that the path is relevant to the directory that contains my .swf.
    Has anyone done this or can point me in the right direction???
    A snippet of my .fdf file follows:
    %FDF-1.2
    1 0 obj
    <</FDF<</F(/templates/NC.pdf)/Fields[
    <</T(form1[0].#pageSet[0].MasterPage1[0].Resident[0])/V(Minnie Mouse)>>
    <</T(form1[0].#pageSet[0].MasterPage1[0].NumericIdentifier[0])/V(1234567)>>
    <</T(form1[0].#pageSet[0].MasterPage1[0].Date[0])/V(today)>>
    <</T(form1[0].Page38-SectionZ[0].Z0500[0].Z0500Body[0].Z0500BYear[0])/V(1999)>>
    ]>>>>
    endobj
    trailer
    <</Root 1 0 R>>
    %%EOF

    FWIW I gave up on the idea.  Using the fdf to launch the PDF has a major weakness (for my needs) in that it still allows the user to edit the form.  I just want them to be able to print it.  Perhaps I could defiene it as not editable, but I've got it working where I merge the two data streams on the backend and return the PDf as the response.

  • Flex Resources list

    Flex sites/blogs:
    http://www.macromedia.com/software/flex/productinfo/faq/
    http://www.cflex.net/
    http://www.flexauthority.com/
    http://weblogs.macromedia.com/mxna/
    http://www.flexdaddy.info/
    http://www.clinttredway.com/blog/
    http://www.richinternet.de/blog/
    http://www.everythingflex.com
    http://labs.adobe.com/ (2.0 Beta
    specific)
    Flex style Explorer:
    http://www.markme.com/mc/archives/FlexStyleExplorer.html
    Documentation:
    http://livedocs.macromedia.com/flex/15/asdocs_en/index.html
    http://www.macromedia.com/go/flex15_java_livedocs
    http://www.macromedia.com/cfusion/knowledgebase/index.cfm
    Lists:
    http://www.macromedia.com/cfusion/webforums/forum/categories.cfm?catid=346
    http://groups.yahoo.com/group/flexcoders/
    Bugs/enhancement requests:
    http://www.macromedia.com/support/email/wishform/

    "Create a Login System with Flex and PHP"
    http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/28.html
    "Flex MP3 Player"
    http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/29.html

  • OpenAMF/Flex Resources

    I'm having a difficult time connecting to an OpenAMF service
    via Flex Remoting. I can do it fine in Flash but am having problems
    in Flex. I've also been succesful using an amfphp service and Flex.
    But when I provide the service information for the OpenAMF service,
    using the otherwise
    same code, I get no response. Does anyone know of any good
    tutorials or source code of a succesful connectionto an openamf
    service?
    Here is an example of how I am doing it:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" backgroundColor="#FFFFFF"
    viewSourceURL="srcview/index.html">
    <mx:RemoteObject id="myservice"
    fault="faultHandler(event)" showBusyCursor="true"
    source="DNAvigatorService " destination="amfphp">
    <mx:method name="getResult" result="resultHandler(event)"
    />
    </mx:RemoteObject>
    <mx:Script>
    <![CDATA[
    import mx.managers.CursorManager;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    private function faultHandler(fault:FaultEvent):void
    CursorManager.removeBusyCursor();
    result_text.text = "hi";
    private function resultHandler(evt:ResultEvent):void
    //result_text.text = evt.message.body.toString(); // same
    as: evt.result.toString();
    result_text.text = "resutl";
    ]]>
    </mx:Script>
    <mx:Button x="250" y="157" label="sayHello" width="79"
    click="myservice.getOperation('getResult').send();"/>
    <mx:Button x="250" y="187" label="test fault"
    click="myservice.getOperation('getResult').send(); "/>
    <mx:TextArea x="10" y="36" width="319" height="113"
    id="result_text"/>
    <mx:Label x="10" y="10" text="Result:"/>
    </mx:Application>
    and I am using a properly formed services-config.xml.

    "Create a Login System with Flex and PHP"
    http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/28.html
    "Flex MP3 Player"
    http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/29.html

  • Flex Builder 2 corrupting Eclipse 3.2.1

    Flex Builder 2 has some issues with Eclipse 3.2.1. I was
    working with the trial version, so maybe the full version does not
    exhibit these same problems, but if that is the case, then it is
    disappointing that adobe is trying to support two separate products
    instead of trying to resolve issues.
    The largest issue with the Flex Builder 2 plugin for eclipse
    is that if you have a flex project in the same workspace as other
    projects (like dynamic Java projects) the flex builder 2 will try
    to incorporate those projects in to the flex project when you do a
    build or a clean only on that specific flex project. As a result,
    eclipse consumes enormous amounts of memory that even with 2 gigs
    allocated to the heap, it runs in to out of memory exceptions
    frequently and the stability of eclipse has degraded significantly
    since I installed this product! The flex projects that I had loaded
    were some of the examples dealing with SpringGraph so I would not
    consider them as being large or complex. When there is a build
    occuring on just a Flex Project, it SHOULD HAVE NO BUSINESS even
    scanning other non-related projects regardless as to if they are in
    the same workspace!!!
    I am not too impressed with flex's interface with eclipse on
    the memory, the instability it introduced to eclipse, or how
    SpringGraph handles large graphs, so I did not pursue getting a
    license for future development. I also felt that the asking price
    for the Flex Builder 2 is steep for what you get and its maturity
    level. As such, when the license expired, Adobe had the nerve to
    disable core functionality within Eclipse!!! For example, it would
    not allow a CSS document to be opened in the CSS Editor! It
    Hijacked the basic Eclipse functionality!!!
    I am very disappointed in how the Flex Builder 2 plugin for
    Eclipse does not play friendly!
    But at least it does allow itself to be disabled. I am
    grateful for at least that level of accepted behavior.

    Cluebcke, thanks for the reply!
    I am using a compaq nx7010 laptop with 2 gigs ram, 60 gig hd,
    eclipse is set to utilize a minimum of 512 megs and a maximum of
    1540 megs for the heap space. Virtual memory is set to a max of
    4092 megs. Fairly generous I would assume. I doubt it was a
    configuration issue, but hey, I’m open to learning and the
    best lessons are through mistakes! ;-)
    Sorry, I was being a bit sarcastic when I mentioned that
    perhaps the issues were related to the free trial version knowingly
    perfectly well that in fact there is no difference between the two
    products. But I guess I was also conceding a possible out for Flex
    too. Hmm...
    To clarify my comment about aggressively compiling against
    other projects:
    1) I had about 4 demos loaded in to a workspace (269 files,
    82 folders, and 7.2 megs including my 1 test project as mentioned
    in item 4)
    2) I had about 7 large Java projects loaded in to the same
    workspace
    3) Total workspace size was about 22,000+ files and 1600+
    megs, give or take a fair number either way.
    4) I was making changes to a simple flex project based upon
    a SpringGraph demo
    5) I choose to manually build only the small flex project I
    was working on so as to replace all the generated files. NOTE:
    Might have been a clean, but only on that one flex project and NOT
    the whole work space. It takes too long to rebuild all of my other
    Java projects so that option has been unchecked for quite a while.
    6) What I saw in the Eclipse progress window was a list of
    files within my flex project getting reconstructed, and then it
    started to scan through the other projects too. All of their names
    and resources were flashed within that window.
    7) When finished with the build of the ONE flex project, the
    Java heap was basically gone. Starting a TomCat server would cause
    an out of memory exception. Recall I have allocated 1.5 gigs for
    the heap.
    8) Checking the other Java projects and Flex projects, the
    timestamps on the objects did not reflect that they were just
    rebuilt. They were untouched. Proof that I did not perform a build
    or a clean over the whole workspace.
    I agree with you whole heartedly that unless I explicitly
    select “build all” or “clean all” it should
    not touch other projects in anyway. But it did.
    As far as the issue with the CSS editor, I understand and
    accept your point. Perhaps as a friendly suggestion, when the trial
    expires, the plugin should uninstall itself. This may be very
    doable, and still have the functionality of a reminder and
    reactivation upon registration if Flex Builder actually had a
    second plugin called something like "FlexBuilder Registration"
    which would "intercept" attempts to edit and utilize the
    FlexBuilder only functionality so an informative message could be
    displayed. The benefit would be that normal functionality for
    non-flex resources such as CSS would return to normal.
    Anyway, as I stated before, I was not too impressed with
    performance of large graphs. What I consider to be large would be
    on the magnitude of 20,000 to 100,000+. It would need to display
    just about all nodes, or at lease an abstract relationship of those
    nodes rolled up to a higher level. I realize that SpringGraph is
    not ideal for those situations to begin with, but I was exploring
    the idea of writing other plugins to deal with other graphing
    formats.
    I guess to be fair to Flex in general, I should probably ask
    a general question of how well does Flex deal with large data sets
    that need to be resident and the manipulations of those data sets?
    Thanks for your time,
    Scott Tabar

  • Cfc's and flex

    I've been nose down in numerous Flex resources and due to the
    abundance of "options" hope those more experienced can provide
    clarity (thanks in advance for all responses btw).
    1.) Flex can connect in various ways to various data
    providers -- but presumably should be most efficient to a CF8
    server(?) due to non-XML conversions (via RDS?/AMF?/ec4x???).
    2.) Per the above is Flex able to call cfc's (presumably the
    best format) ONLY via:
    <mx:RemoteObject id="helloWorld" destination="Coldfusion"
    source="NewCFComponent">
    <mx:method name="GetHello"
    result="GetHello_handler(event)" />
    </mx:RemoteObject>
    and moreover, is this resulting error indicative of a problem
    in the Flex application properties or in the Remote Object:
    [RPC Fault faultString="[MessagingError message='Destination
    'Coldfusion' either does not exist or the destination has no
    channels defined (and the application does not define any default
    channels.)']" faultCode="InvokeFailed" faultDetail="Couldn't
    establish a connection to 'Coldfusion'"]
    3.) Following up on Q2, when defining a new flex project with
    ColdFusion, can someone please explain the
    "Use remote object access service" checkbox and LiveCycle
    DataServices/ColdFusion Flash Remoting choices? Livedocs is worse
    than useless, every demo app seems based on using localhost rather
    than a network devServer so this and the next (configure cf server)
    page might as well be hieroglyphics IMHO (ie. difference between CF
    root folder, Web root and Root URL ???????)
    4) I understand(?) that LiveCycle Data Services provides
    extra features like Instant messaging, however requires a
    (separate?) installation with "an application server" (though I've
    also recall reading that LCDS is built in CF8)??? If my current
    DevServer is IIS and Coldfusion, is this either/or to installing
    "an application server" on the same machine? And is the LCDS
    installation supplementary to the CF server or does it replace it?
    Again, thanks in advance, I realize I may be waaay out in
    left field on some of these -- but that is why I'm posting after
    all :)

    Oh also, I'm somewhat comfortable with DW CS3 (both HTML and
    to create cfc's) and am just starting with Flex (Eclipse with FB3
    and CF plugins installed) but would love suggestions on how to work
    end to end so to speak.
    Specifically, creating cfc's in DW, then presumably having to
    import them into my Flex project seems less useful than say
    incorporating the eclipse CF perspective but I cant seem to google
    any results for such incorporating or even for using the cf-eclipse
    perspective. Am I missing something ?

  • Share a flex project into DTR

    Hi experts,
    has somebody experience to share an flex project into DTR? As I know sharing is only possible for DC types supported by SAP.
    Though in NWDS there is a mechanism ('Convert project to Development Component or 'Migrate into Software Component'') possibly to fit this task but it fails always because of, i think,  not supported DC type (there are no Dc type for Flex development).
    But how can I get my flex source code into DTR in order to maintain, version and sharing with other developers?
    Best Regards.
    Cemal

    Hi Cemal,
    if managing versions and sharing code is the only thing you want to do with your Flex resources you can use the [DTR Command line tool|http://help.sap.com/saphelp_nw70/helpdata/en/8f/88d93f130f9115e10000000a155106/frameset.htm] to do this.
    Your are then independent of NWDS (allthough the tool is delivered with NWDS). You'll have to build and deploy your applications yourself and also keep track of the deployed versions.
    If you are using NWDS for your development, use the DTR Perspective to create new DTR clients. Add your (Flex) Project folders under the local DTR client and upload the resources. Your colleges should be able to synchronize these sources, when using the same DTR Client name on their machnie. See [Configuring DTR Clients|http://help.sap.com/saphelp_nw04/helpdata/en/17/73a43f4aa1330ee10000000a114084/frameset.htm] and [Working with the DTR|http://help.sap.com/saphelp_nw04/helpdata/en/83/74c4ce0ed93b4abc6144aafaa1130f/frameset.htm].
    Hope this helps a little.
    Regards,
    Alain

  • Help for a Designer

    I have a quad core imac with os 10.7.2.
    I am using Flash Builder 4.5 with the latest AIR sdk.
    I am trying to create an app that can convert and manipulate a collada file.
    Papervision, Flartoolkit and the ColladaAIR Viewer is installed in FB.
    I am using the code in Collada Viewer to design another air app.
    When I open the Main.as that came with Collada Viewer I get no errors.
    But when I copy it to my new src folder I get the following errors:
    1120: Access of undefined property (insert 100 properties from the Collada Viewer)
    I am embarrassed to say how long I have been working on this.
    Its seems as though it can not read the supporting collaviewer.as file.
    What do you do when your files don't access other files?
              This is the script source for the main mxml document called from script source
              (thus why it has no "packaging")
              All graphics, design, and additional programming by: Anthony Scavarelli - http://blog.anthony-scavarelli.com/
              Special thanks to:
              - Fuel Industries for the time to build this. http://www.fuelindustries.com/
              - The Papervision team for their wonderful Papervision classes
              - The Kingnare css and swf control styles by Jin Xin here: http://www.scalenine.com/themes/kingnare/Kingnare.html#
              - Pablo Bandin (http://pablobandin.wordpress.com), for the basis of an animation control class
              - and the many Papervision and Flex resources on teh interwebs for help with the set-up and many problems encountered building this app.
              This application is available for any use, or modeification. I would appreciate any feedback or comments on how you have been able to use it or modify it at it’s original source:
      //the slider controls
              import com.core.ColladaViewer;
              import flash.events.Event;
              import flash.events.MouseEvent;
              import flash.events.OutputProgressEvent;
              import flash.filesystem.*;
              import flash.net.FileFilter;
      //[Embed(
      //source="style/assets/graphics/buttons.swf",
      //symbol="Preloader"
              [Bindable]
        public var _preloader:Class;
              protected var modelOpen:File = new File();
              protected var textureOpen:File = new File();
              protected var txtFilter:FileFilter = new FileFilter("Text", "*.dae;*.DAE;"); //opening models filters
              protected var imageFilter:FileFilter = new FileFilter("Texture", "*.jpg;*.png;"); //texture filters
              protected var _mFileName:String; //model filePath
              protected var _mTextureName:String; //texture filePath
              protected var _modelSelected:Boolean = false;
              protected var _textureSelected:Boolean = false;
      protected var _playButton:Boolean = true; //to keep track of switch from play to pause
      //mouseVars
               protected var _mouseDown:Boolean = false;
              protected var _mouseOver:Boolean = false;
              protected var _mmDown:Boolean = false;
              protected var _mmCountXOld:Number = 0;
              protected var _mmCountYOld:Number = 0;
              protected var _mmCountXNew:Number = 0;
              protected var _mmCountYNew:Number = 0;
              protected var _mmDeltaX:Number = 0;
              protected var _mmDeltaY:Number = 0;
      //second xml window
              public var _xmlWin:XMLWin;
              public var _secondaryWinOpen:Boolean = false;
      public var _daeData:File; //holds dae data for viewing/saving
              public var _daeDataStream:FileStream = new FileStream();
              protected var _modelAnimated:Boolean = false;
      /*********************** initialization *************************/
      protected function init():void {
                        ModelColour.selectedColor = CollView.modColour;
                        WireFrameColour.selectedColor = CollView.wfColour;
      //setting up listeners for closing and minimizing
                        minCloseApp.addEventListener(MinClose.MIN_PRESSED, minApp);
                        minCloseApp.addEventListener(MinClose.CLOSE_PRESSED, closeApp);
      /*********************** end initialization *************************/
      /*********************** event functions *************************/
              protected function closeApp(e:Event):void {
                        minCloseApp.removeEventListener(MinClose.CLOSE_PRESSED, closeApp);
                        NativeApplication.nativeApplication.exit();
              protected function closeSecondWin(e:Event):void {
                        if (_xmlWin != null) {
                                  _xmlWin.close();
                                  _secondaryWinOpen = false;
      //for dragging window
              protected function dragWindow(e:MouseEvent):void {
                        stage.nativeWindow.startMove();
              protected function fileReadHandler(e:Event):void {
                        _daeDataStream.removeEventListener(Event.COMPLETE, fileReadHandler);
      trace("finished reading file");
                        var str:String = _daeDataStream.readUTFBytes(_daeDataStream.bytesAvailable);
                        var lineEndPattern:RegExp = new RegExp(File.lineEnding, "g");
                        str = str.replace(lineEndPattern, "\n");
                        _xmlWin.daeData.text = str;
                        _daeDataStream.close();
                        _xmlWin.reading = false;
              protected function fileWriteHandler(e:OutputProgressEvent):void {
                         _daeDataStream.removeEventListener(OutputProgressEvent.OUTPUT_PROGRESS, fileWriteHandler);
      trace("finished writing");
                         _daeDataStream.close();
                         loadModel();
                         _xmlWin.writing = false;
              protected function getStats():void {
                        Triangles.text = CollView.numTriangles.toString();
                        Vertices.text = CollView.numVertices.toString();
                        Num3DObjects.text = CollView.numVisSceneObjects.toString();
                        ScaleDiff.text = (round(((CollView.currScale * 100)/(CollView.AXIS_LENGTH)),3)).toString();
              protected function initLoadData(e:Event):void {
                        _xmlWin.removeEventListener(XMLWin.CREATION_DONE, initLoadData);
      trace("loading");
                        loadDaeData();
               protected function interactiveMove(e:MouseEvent):void {
      //viewport camera rotations
                         if (_mouseOver && _mouseDown) {
      //if alt is pressed then can "track" or "pan" in case user has only one mouse button
                                   if (CollView.altDown) {
                                             _mmCountXNew = mouseY;
                                            _mmCountYNew = mouseX;
                                            _mmDeltaY = _mmCountXNew - _mmCountXOld;
                                            _mmDeltaX = _mmCountYNew - _mmCountYOld;
                                             CollView.moveCamera(_mmDeltaX/2, _mmDeltaY/2); //move camera
                                   } else {
                                             _mmCountXNew = mouseY;
                                            _mmCountYNew = mouseX;
                                            _mmDeltaX = _mmCountXOld - _mmCountXNew;
                                            _mmDeltaY = _mmCountYOld - _mmCountYNew;
                                             interactiveRotMod(_mmDeltaX, _mmDeltaY); //moving camera "orbit around model"
                        } else if (_mouseOver && _mmDown) {
                         //viewport camera movement x-y tracking
                                  _mmCountXNew = mouseY;
                                  _mmCountYNew = mouseX;
                                   _mmDeltaY = _mmCountXNew - _mmCountXOld;
                                  _mmDeltaX = _mmCountYNew - _mmCountYOld;
                                  CollView.moveCamera(_mmDeltaX/2, _mmDeltaY/2); //move camera
              protected function minApp(e:Event):void {
                        stage.nativeWindow.minimize();
      //middle mouse functions
              protected function mmDown(e:MouseEvent):void {
                        EmptyBox.removeEventListener(MouseEvent.MIDDLE_MOUSE_DOWN, mmDown);
                        EmptyBox.addEventListener(MouseEvent.MIDDLE_MOUSE_UP, mmUp);
                        _mmCountXOld = mouseY;
                        _mmCountYOld = mouseX;
                        _mmDown = true;
                        CollView.camPanning = true;
              protected function mmUp(e:MouseEvent):void {
                        EmptyBox.addEventListener(MouseEvent.MIDDLE_MOUSE_DOWN, mmDown);
                        EmptyBox.removeEventListener(MouseEvent.MIDDLE_MOUSE_UP, mmUp);
                        _mmDown = false;
                        CollView.camPanning = false;
              protected function modelSelected(event:Event):void {
                         var _absPath:String = File(event.target).url;
                         LMText.text = _absPath;
                         _modelSelected = true;
              protected function mouseDown(e:MouseEvent):void {
                        EmptyBox.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
                        stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp);
                        _mouseDown = true;
                        _mmCountXOld = mouseY;
                        _mmCountYOld = mouseX;
                        if (CollView.altDown) {
                                  CollView.camPanning = true;
                        } else {
                                  CollView.camRotating = true;
              protected function mouseOutBox(e:MouseEvent):void {
                        EmptyBox.addEventListener(MouseEvent.MOUSE_OVER, mouseOverBox);
                        EmptyBox.removeEventListener(MouseEvent.MOUSE_OUT, mouseOutBox);
                        _mouseOver = false;
              protected function mouseOverBox(e:MouseEvent):void {
                        EmptyBox.removeEventListener(MouseEvent.MOUSE_OVER, mouseOverBox);
                        EmptyBox.addEventListener(MouseEvent.MOUSE_OUT, mouseOutBox);
                        EmptyBox.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
                        _mouseOver = true
              protected function mouseUp(e:MouseEvent):void {
                        EmptyBox.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
                        stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp);
                        _mouseDown = false;
                        CollView.camRotating = false;
                        CollView.camPanning = false;
                        CollView.camRotating = false;
              protected function mouseZoom(e:MouseEvent):void {
                        CollView.cameraZoom(e.delta * 5);
                        CollView.camZooming = true;
              protected function reloadModel(e:Event):void {
                        if (_xmlWin != null) {
                                  loadDaeData();
              protected function saveEdits(e:Event):void {
                        if (!CollView.animLoading) {
                                  _xmlWin.writing = true;
      CollView.releaseModel(); //remove references to model (will reload after write)
                                  _daeData = new File(CollView.modelDir);
                            _daeDataStream = new FileStream();
                                  _daeDataStream.openAsync(_daeData, FileMode.WRITE);
                                  _daeDataStream.writeUTFBytes(_xmlWin.daeData.text);
                                  _daeDataStream.addEventListener(OutputProgressEvent.OUTPUT_PROGRESS, fileWriteHandler);
    Thanks Geri

    This is the Acrobat Window forum and Acrobat makes forms differntly than LiveCycle Designer although the saved PDF's can be used by Reader and Acrobat the programs are not interchangable with one another.
    Disabling (graying-out) Form Fields by Thom Parker for a tutorial about enabling/disabling form fields in Acrobat and LiveCycle Designer.
    Here is the link to the LiveCycle Designer forum.

  • File upload to bypass server restrictions?

    The server my projects are currently required to use is a
    shared host, with PHP upload file size and processing time limits
    that make it impossible to work with files >500K.
    Is there any way to build an upload system in Flex that can
    allow users to work with files regardless of size? Everything I
    have found in my searches of Flex resources all points to
    server-side scripts to pass the upload target file to.
    Are there any other options?

    I was hoping Flex may have some way to split a file into
    smaller parts or stream it in some way that wouldn't require it to
    interact with PHP or other server-side script.
    Madhav, Thanks for the ini_set instructions. I'll try that
    and see if the host allows those .ini overrides. They have some
    blocked.
    Thanks
    Paul

  • HTTPService - from List to XMLList

    Cheers:)
    I am curious if someone would be able to tell me what has to
    be changed to make the Adobe QuickStart on External Data Providers
    from working with the List in the example to working with an
    XMLList? I have a completely self-explanatory (hopefully!) rejigged
    demo here:
    http://shawngibson.com/DataProviderExternal/DataProviderExternal.html
    HTTPService stuff has been brain surgery to me, so I need to
    go one step at a time. Hopefully this change doesn't require a huge
    amount...I'd really appreciate any help, it is crucial to my
    photography gallery that I'm building:) I'm a designer (and
    photographer obviously)...trying to make the leap here...to be able
    to get really data-driven.
    Shawn

    No sweat, I should have perhaps ignored the venting, we all
    do it now and then.
    You may already understand this but here are a few
    observations:
    1. Flex is primarily a presentation tier (client) platform.
    It does not natively do anything on the server, like file or db
    access.
    2. Some middle tier is required, but it can be most anything,
    CF, PHP, ASP.NET, JSP, JAVA. There are few Adobe examples of
    connecting with the server because there are so many possibilities.
    There ARE many examples available, however, but they are sometimes
    hard to find. I use google a LOT.
    3. If you are not a Java or SOAP guru, or don't have one at
    your command, HTTPService is THE way to go.
    4. XML strings are the easiest way to pass data to an from
    Flex. There are many other ways, but they are all more complicated
    5. Except for CF, which has wizards and stuff to help a lot.
    I do not do CF myself.
    Here is a list of Flex resources. It is daunting. As I
    mentioned, google is still the best place to start.
    Flex 2.x Resources
    Flex sites/blogs:
    Adobe:
    http://www.adobe.com/devnet/flex/
    DEVNET - start here!
    http://www.adobe.com/products/flex/productinfo/faq/
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=homepage&productId=2
    http://blogs.adobe.com/
    http://weblogs.macromedia.com/mxna/
    http://labs.adobe.com/
    http://labs.adobe.com/community/
    http://www.adobe.com/cfusion/exchange/index.cfm#loc=en_us&view=sn610&viewName=Adobe%20Exch ange&avm=1
    http://blogs.adobe.com/flexdoc/
    Other:
    http://www.scalenine.com
    http://www.flexcursion.com
    http://www.theflexshow.com
    http://www.JeffryHouser.com
    http://blog.digitalbackcountry.com/
    http://code.google.com/p/flexlib/
    http://flexbox.mrinalwadhwa.com/
    http://dougmccune.com/blog/
    http://www.cflex.net/
    http://www.quietlyscheming.com/blog/
    http://www.everythingflex.com
    http://www.waldosmeets.com/
    http://www.jessewarden.com/
    http://www.cbetta.com/blog/
    http://www.cynergytv.com/
    http://www.flexdaddy.info/
    http://www.richinternet.de/blog/
    http://www.brightworks.com/technology/overview.html
    http://www.crossdomainxml.org/
    http://flexsearch.org/
    http://labs.flexcoders.nl/
    Flex style Explorer:
    http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
    Documentation:
    http://www.adobe.com/support/documentation/en/flex/
    http://livedocs.macromedia.com/flex/2/
    http://www.adobe.com/cfusion/knowledgebase/index.cfm
    Lists:
    http://www.adobe.com/cfusion/webforums/forum/index.cfm?forumid=60
    http://groups.yahoo.com/group/flexcoders/
    http://groups.yahoo.com/group/flexcomponents/
    Bugs/enhancement requests:
    http://www.adobe.com/go/wish

  • .MXML files needed for WDR_TEST_FLASH_ISLAND

    Hi All
    Is there any place where we can get the .MXML files for SAP delivered WDR_TEST_FLASH_ISLAND demo WDA ?
    Please share if possible
    Thanks in advance

    1.  You can data bind with any public attribute or via GET/SET methods. The latter I would imagine would be more compatible with Caingorm. Look at the Google Maps example.  We use GET methods for the data binding in there.
    2. That seems like more a pure Flex design consideration. SAP really only provides information on how to work with the Islands. Nothing really Island specific about that. You would be better off searching other Adobe Flex resources.  Portal or ECC should be the same.  Set the FlashIsland UI element width and height based upon % to use up the allowed space.  Make sure the parent containers also use %.

  • Conductor Application Failure

    All,
    I have seen this error several times before on different Conductors.  What causes this issue and do we really need to restart the Conductor each time?
    "An unexpected software error was detected in python /share/python/site-packages/ni/conferencefactory/controller/application_watchdog.pyc2>&1: 1"       
    This appears as a warning on the Conductor as "Application Failed".
    Thank you,
    Justin Ferello
    Technical Support Specialist
    KBZ, a Cisco Authorized Distributor
    http://www.kbz.com
    e/v: [email protected]       

    Hi, I have the same alert:
    But no impact on the application. Everything is working perfectly.
    Software version XC2.3
    Software build 308748
    Software release date 2014-04-10 14:05
    Software ID s42800
    please, Any ideas on the root cause or fix? it really looks like a file system error.
    I didn't restart the server as it is working without issues.
    This is the event log:
    syslog-ng[17373]: Configuration reload request received, reloading configuration;
    2014-12-23T19:12:13+08:00
    supervisor: Level="INFO" Event="Alarm Raised" Id="15019" UUID="1a18bfa6-f822-11e1-b0db-c35cb1b8e3e5" Severity="error" Detail="Application failed: An unexpected software error was detected in : " UTCTime="2014-12-23 11:12:13,267"
    2014-12-23T19:11:25+08:00
    conferencefactory.controller: Level="WARNING" Event="An error occurred while communicating externally, retrying." Detail="Error=\"Connection disconnected unexpectedly, Message=\"{ message_type : flex.resource.query, params : {'authenticationPassword': 'hidden', 'authenticationUser': u'conductoradmin'} }\" Conference Bridge=\"a982c4f4-316c-11e4-a654-0050569d05d9\"" Conference_bridge_address="10.22.77.241" Conference_bridge_UUID="a982c4f4-316c-11e4-a654-0050569d05d9" UTCTime="2014-12-23 11:11:25,284"
    2014-12-23T19:10:04+08:00
    conferencefactory.controller: Level="WARNING" Event="An error occurred while communicating externally, retrying." Detail="Error=\"Connection disconnected unexpectedly, Message=\"{ message_type : flex.resource.query, params : {'authenticationPassword': 'hidden', 'authenticationUser': u'conductoradmin'} }\" Conference Bridge=\"a982c4f4-316c-11e4-a654-0050569d05d9\"" Conference_bridge_address="10.22.77.241" Conference_bridge_UUID="a982c4f4-316c-11e4-a654-0050569d05d9" UTCTime="2014-12-23 11:10:04,825"
    2014-12-23T19:10:04+08:00
    kernel: EXT3-fs (sda7): error: remounting filesystem read-only
    2014-12-23T19:10:04+08:00
    kernel: EXT3-fs (sda7): error: ext3_journal_start_sb: Detected aborted journal
    2014-12-23T19:10:04+08:00
    kernel: Aborting journal on device sda7.
    2014-12-23T19:10:04+08:00
    kernel: end_request: I/O error, dev sda, sector 5042509
    2014-12-23T19:10:04+08:00
    kernel: sd 0:0:0:0: timing out command, waited 180s
    2014-12-23T19:10:04+08:00
    kernel: end_request: I/O error, dev sdb, sector 229575168
    2014-12-23T19:10:04+08:00
    kernel: sd 0:0:1:0: timing out command, waited 180s
    2014-12-23T19:10:04+08:00
    kernel: end_request: I/O error, dev sdb, sector 229574208
    2014-12-23T19:10:04+08:00
    kernel: sd 0:0:1:0: timing out command, waited 180s
    2014-12-23T19:10:04+08:00
    kernel: end_request: I/O error, dev sdb, sector 240257768
    2014-12-23T19:10:04+08:00
    kernel: sd 0:0:1:0: timing out command, waited 180s
    2014-12-23T19:10:04+08:00
    kernel: Buffer I/O error on device sdb2, logical block 26071843

  • Flex 4.1 to 4.5.1 "Could not find compiled resource bundle 'controls' for locale 'en_US'."

    I have a flex 4.1 project in which I want to use the latest spark datagrid changes in so am trying to update to 4.5
    Having downloaded and added the sdk, switching the properties of my project and updating my datagrid skin classes to suit the latest changes I'm now getting the following error when trying to run my app:
    Error: Could not find compiled resource bundle 'controls' for locale 'en_US'.
    at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[E:\dev\4.5.1\frameworks \projects\framework\src\mx\resources\ResourceManagerImpl.as:367]
    at mx.resources::ResourceManagerImpl/installCompiledResourceBundles()[E:\dev\4.5.1\framework s\projects\framework\src\mx\resources\ResourceManagerImpl.as:287]
    at mx.core::FlexModuleFactory/installCompiledResourceBundles()[E:\dev\4.5.1\frameworks\proje cts\framework\src\mx\core\FlexModuleFactory.as:709]
    at mx.core::FlexModuleFactory/docFrameHandler()[E:\dev\4.5.1\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:679]
    at mx.core::FlexModuleFactory/docFrameListener()[E:\dev\4.5.1\frameworks\projects\framework\ src\mx\core\FlexModuleFactory.as:131]
    I believe this is whilst trying to load a module as the first thing the app does is load a login module.
    Any suggestions as to what I need to do to sort this out?
    Cheers,
    Dan

    Hi,
    I'm taking this issue over as DannyT is away this week.
    I have checked we are compiling all SWC's with 4.5.1 and it appears to be the case although we are using third party compiled SWC's for RobotLegs, Signals and some flash skins which I'm assuming wouldn't be an issue?
    I've carried out comprehensive testing to narrow the problem down, I found that mx.controls.Image seemed to be causing some of the issues, when replaced with the spark Image the module was loading fine although I now then had an issue with the mx charting components so added a reference to the main app, as you say not the best work around and I'm still getting the same issue:
    Error: Could not find compiled resource bundle 'controls' for locale 'en_US'.
    We have other mx components in our modules and these seem to be fine although I haven't checked to see if they are being used throughout the app so they might be referenced in main. I've posted the link report xml below, any help or suggestions would be appreciated as we'd like to be able to use the latest version of the DataGrid.
    <report>
      <scripts>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:TextRemoteObject)" mod="1294231234000" size="1531" optimizedsize="836">
          <def id="com.my.app.remoting:TextRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ITextRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:ICachableRemoteObject)" mod="1294229901000" size="1206" optimizedsize="316">
          <def id="com.my.app.remoting.interfaces:ICachableRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_TreeDisclosureClosed_699467254.as" mod="1306854026000" size="623" optimizedsize="370">
          <def id="_class_embed_css_Assets_swf_1422583548_TreeDisclosureClosed_699467254" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/QueryBuilderModuleLoader.as" mod="1308837418000" size="3337" optimizedsize="1844">
          <def id="com.my.app.loader:QueryBuilderModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="com.my.app.vo:User" />
          <dep id="com.my.app.vo:Query" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="com.my.app.module.queryBuilder:IQueryBuilderModule" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:JournalistRemoteObject)" mod="1292428848000" size="1187" optimizedsize="730">
          <def id="com.my.app.remoting:JournalistRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IJournalistRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/MYAppPro.mxml" mod="1309189518000" size="7534" optimizedsize="6376">
          <def id="MYAppPro" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="mx.binding:IBindingClient" />
          <pre id="com.my.app:MYAppProApp" />
          <dep id="_MYAppProWatcherSetupUtil" />
          <dep id="mx.styles:CSSSelector" />
          <dep id="mx.styles:CSSStyleDeclaration" />
          <dep id="mx.core:DeferredInstanceFromFunction" />
          <dep id="com.my.app.context:MYAppProContext" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="mx.core:mx_internal" />
          <dep id="MYAppPro__embed__font_MyriadPro_bold_normal_1315605509" />
          <dep id="mx.binding:IWatcherSetupUtil2" />
          <dep id="mx.binding:BindingManager" />
          <dep id="com.my.app.view:MainView" />
          <dep id="mx.styles:CSSCondition" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="AS3" />
          <dep id="mx.binding:Binding" />
          <dep id="_MYAppPro_FlexInit" />
          <dep id="_MYAppPro_Styles" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="MYAppPro__embed__font_MyriadPro_medium_normal_1029366919" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.events:ModuleEvent)" mod="1306872054062" size="1244" optimizedsize="729">
          <def id="mx.events:ModuleEvent" />
          <pre id="flash.events:ProgressEvent" />
          <dep id="flash.events:Event" />
          <dep id="mx.modules:IModuleInfo" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:DashboardRemoteObject)" mod="1308837429000" size="2518" optimizedsize="1400">
          <def id="com.my.app.remoting:DashboardRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IDashboardRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="com.my.app.vo:Dashboard" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders:Reflector)" mod="1272837850000" size="2141" optimizedsize="1490">
          <def id="org.swiftsuspenders:Reflector" />
          <pre id="Object" />
          <dep id="org.swiftsuspenders:getConstructor" />
          <dep id="flash.utils:describeType" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="AS3" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="XML" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="Error" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:DPIClassification)" mod="1306872039593" size="480" optimizedsize="256">
          <def id="mx.core:DPIClassification" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.resources:IResourceManager)" mod="1306872057390" size="3482" optimizedsize="1039">
          <def id="mx.resources:IResourceManager" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="AS3" />
          <dep id="mx.resources:IResourceBundle" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders:getConstructor)" mod="1272837850000" size="577" optimizedsize="339">
          <def id="org.swiftsuspenders:getConstructor" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="String" />
          <dep id="AS3" />
          <dep id="Number" />
          <dep id="Class" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="Object" />
          <dep id="flash.utils:Proxy" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/LoginModuleLoader.as" mod="1291226946000" size="903" optimizedsize="583">
          <def id="com.my.app.loader:LoginModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/DashboardModuleLoader.as" mod="1309186845000" size="3451" optimizedsize="1923">
          <def id="com.my.app.loader:DashboardModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="com.my.app.vo:Dashboard" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="com.my.app.vo:User" />
          <dep id="com.my.app.vo:Query" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="com.my.app.module.dashboard:IDashboardModule" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:EmbeddedFontRegistry)" mod="1306872041202" size="5403" optimizedsize="3296">
          <def id="mx.core:EmbeddedFontRegistry" />
          <pre id="mx.core:IEmbeddedFontRegistry" />
          <pre id="Object" />
          <dep id="mx.core:EmbeddedFont" />
          <dep id="flash.text:FontStyle" />
          <dep id="trace" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.resources:ResourceManager" />
          <dep id="Error" />
          <dep id="mx.resources:IResourceManager" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="mx.managers:ISystemManager" />
          <dep id="flash.text.engine:FontDescription" />
          <dep id="flash.text:TextFormat" />
          <dep id="AS3" />
          <dep id="flash.text:TextField" />
          <dep id="flash.system:Capabilities" />
          <dep id="mx.core:Singleton" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_CloseButtonUp_904206584.as" mod="1306854026000" size="601" optimizedsize="363">
          <def id="_class_embed_css_Assets_swf_1422583548_CloseButtonUp_904206584" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/airframework_rb.swc$locale/en_US/SharedResources.properties" mod="1306854100000" size="638" optimizedsize="603">
          <def id="en_US$SharedResources_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/skins/PopupSkin.mxml" mod="1308837418000" size="4789" optimizedsize="3018">
          <def id="com.my.app.skins:PopupSkin" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="spark.components.supportClasses:Skin" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="spark.primitives:Rect" />
          <dep id="spark.layouts:VerticalLayout" />
          <dep id="mx.states:SetProperty" />
          <dep id="AS3" />
          <dep id="mx.graphics:SolidColor" />
          <dep id="mx.states:State" />
          <dep id="mx.core:mx_internal" />
          <dep id="spark.components:Group" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="spark.components:SkinnableContainer" />
          <dep id="mx.binding:BindingManager" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.base:ContextEvent)" mod="1269791984000" size="933" optimizedsize="480">
          <def id="org.robotlegs.base:ContextEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:QuerySnippet)" mod="1294750696000" size="723" optimizedsize="315">
          <def id="com.my.app.vo:QuerySnippet" />
          <pre id="com.my.app.vo:RevertableVO" />
          <dep id="Date" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:IRSSPodRemoteObject)" mod="1294221810000" size="1230" optimizedsize="371">
          <def id="com.my.app.remoting.interfaces:IRSSPodRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
          <dep id="com.my.app.vo:RSSPod" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:MethodInjectionPoint)" mod="1273448582000" size="2862" optimizedsize="1766">
          <def id="org.swiftsuspenders.injectionpoints:MethodInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:InjectionPoint" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="org.swiftsuspenders:InjectionConfig" />
          <dep id="org.swiftsuspenders:InjectorError" />
          <dep id="AS3" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="Error" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/component/loader/TimeLineLoaderWrapper.as" mod="1294835157000" size="2360" optimizedsize="1421">
          <def id="com.my.app.component.loader:TimeLineLoaderWrapper" />
          <pre id="mx.core:UIComponent" />
          <pre id="com.my.app.component.loader:ILoaderController" />
          <dep id="AS3" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="Math" />
          <dep id="TimeLineLoader" />
          <dep id="flash.display:MovieClip" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragCopy_1279468729.as" mod="1306854026000" size="638" optimizedsize="375">
          <def id="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragCopy_1279468729" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/framework_rb.swc$locale/en_US/logging.properties" mod="1306854100000" size="735" optimizedsize="704">
          <def id="en_US$logging_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.action:FeedbackAsyncAction)" mod="1294328487000" size="955" optimizedsize="396">
          <def id="com.my.app.action:FeedbackAsyncAction" />
          <pre id="com.my.app.action:AsyncAction" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionresults:InjectClassResult)" mod="1272837850000" size="871" optimizedsize="450">
          <def id="org.swiftsuspenders.injectionresults:InjectClassResult" />
          <pre id="org.swiftsuspenders.injectionresults:InjectionResult" />
          <dep id="AS3" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/framework_rb.swc$locale/en_US/modules.properties" mod="1306854100000" size="310" optimizedsize="284">
          <def id="en_US$modules_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/skins/RoundedCornerTextInputSkin.mxml" mod="1308839963000" size="8920" optimizedsize="5730">
          <def id="com.my.app.skins:RoundedCornerTextInputSkin" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="mx.binding:IBindingClient" />
          <pre id="spark.skins:SparkSkin" />
          <dep id="spark.primitives:Rect" />
          <dep id="spark.components:TextInput" />
          <dep id="_com_my_app_skins_RoundedCornerTextInputSkinWatcherSetupUtil" />
          <dep id="Number" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:IWatcherSetupUtil2" />
          <dep id="mx.binding:BindingManager" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="mx.states:SetProperty" />
          <dep id="AS3" />
          <dep id="spark.components:RichEditableText" />
          <dep id="mx.binding:Binding" />
          <dep id="mx.graphics:SolidColor" />
          <dep id="mx.states:State" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="mx.graphics:SolidColorStroke" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.mvcs:Context)" mod="1273448146000" size="3618" optimizedsize="1909">
          <def id="org.robotlegs.mvcs:Context" />
          <pre id="org.robotlegs.core:IContext" />
          <pre id="org.robotlegs.base:ContextBase" />
          <dep id="flash.events:Event" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="org.robotlegs.base:EventMap" />
          <dep id="org.robotlegs.core:IReflector" />
          <dep id="org.robotlegs.base:CommandMap" />
          <dep id="org.robotlegs.core:IInjector" />
          <dep id="org.robotlegs.core:ICommandMap" />
          <dep id="org.robotlegs.core:IMediatorMap" />
          <dep id="AS3" />
          <dep id="org.robotlegs.base:ViewMap" />
          <dep id="org.robotlegs.core:IEventMap" />
          <dep id="org.robotlegs.base:ContextEvent" />
          <dep id="org.robotlegs.base:MediatorMap" />
          <dep id="org.robotlegs.adapters:SwiftSuspendersInjector" />
          <dep id="org.robotlegs.core:IViewMap" />
          <dep id="org.robotlegs.adapters:SwiftSuspendersReflector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/component/dashboardTitleAlert/DashboardTitleAlert.as" mod="1295255816000" size="2526" optimizedsize="1401">
          <def id="com.my.app.component.dashboardTitleAlert:DashboardTitleAlert" />
          <pre id="com.my.app.component.dashboardTitleAlert:DashboardTitleAlertMarkup" />
          <dep id="flash.events:MouseEvent" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="mx.utils:StringUtil" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.manager:ModalPopupManager" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:SourceRemoteObject)" mod="1292434523000" size="1141" optimizedsize="707">
          <def id="com.my.app.remoting:SourceRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ISourceRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:CustomerFileRemoteObject)" mod="1294750696000" size="1543" optimizedsize="892">
          <def id="com.my.app.remoting:CustomerFileRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ICustomerFileRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:PostConstructInjectionPoint)" mod="1272837850000" size="1648" optimizedsize="894">
          <def id="org.swiftsuspenders.injectionpoints:PostConstructInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:InjectionPoint" />
          <dep id="AS3" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/flash_assets.swc(TimeLineLoader)" mod="1294834686125" size="433" optimizedsize="285">
          <def id="TimeLineLoader" />
          <pre id="flash.display:MovieClip" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:RSLListLoader)" mod="1306872040218" size="2217" optimizedsize="1111">
          <def id="mx.core:RSLListLoader" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="mx.core:RSLItem" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_mx_containers_FormItem_Required_1292455008.as" mod="1306854026000" size="659" optimizedsize="382">
          <def id="_class_embed_css_Assets_swf_1422583548_mx_containers_FormItem_Required_1292455008" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_cursorStretch_1000132270.as" mod="1306854026000" size="604" optimizedsize="364">
          <def id="_class_embed_css_Assets_swf_1422583548_cursorStretch_1000132270" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/component/dashboardTitleAlert/DashboardTitleAlertMarkup.mxml" mod="1308837414000" size="5656" optimizedsize="3011">
          <def id="com.my.app.component.dashboardTitleAlert:DashboardTitleAlertMarkup" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="spark.components:Group" />
          <dep id="spark.components:TextInput" />
          <dep id="mx.core:DeferredInstanceFromFunction" />
          <dep id="com.my.app.skins:RoundedCornerTextInputSkin" />
          <dep id="spark.components:Button" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:BindingManager" />
          <dep id="com.my.app.skins:PopupSkin" />
          <dep id="spark.components:SkinnableContainer" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="spark.components:Label" />
          <dep id="spark.layouts:VerticalLayout" />
          <dep id="AS3" />
          <dep id="com.my.app.skins:SilverButtonSkin" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="spark.components:HGroup" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/as3-signals.swc(org.osflash.signals:Slot)" mod="1291821251505" size="1267" optimizedsize="611">
          <def id="org.osflash.signals:Slot" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="org.osflash.signals:ISignal" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.utils:NameUtil)" mod="1306872046765" size="1669" optimizedsize="1094">
          <def id="mx.utils:NameUtil" />
          <pre id="Object" />
          <dep id="mx.core:IRepeaterClient" />
          <dep id="SecurityError" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="AS3" />
          <dep id="flash.display:DisplayObject" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:CacheVO)" mod="1292345880000" size="457" optimizedsize="239">
          <def id="com.my.app.vo:CacheVO" />
          <pre id="Object" />
          <dep id="mx.utils:UIDUtil" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/view/MainView.as" mod="1309190212000" size="5727" optimizedsize="3612">
          <def id="com.my.app.view:MainView" />
          <pre id="com.my.app.view:MainViewMarkup" />
          <dep id="com.my.app.vo:User" />
          <dep id="spark.components:TextInput" />
          <dep id="com.my.app.loader:HelpTextModuleLoader" />
          <dep id="flash.printing:PrintJobOptions" />
          <dep id="flash.printing:PrintJobOrientation" />
          <dep id="flash.geom:Rectangle" />
          <dep id="Math" />
          <dep id="mx.charts.chartClasses:ChartLabel" />
          <dep id="com.my.app.manager:ModalPopupManager" />
          <dep id="spark.components:Group" />
          <dep id="com.my.app.vo:QuerySnippet" />
          <dep id="com.my.app.enum:MenuTypes" />
          <dep id="flash.printing:PrintJob" />
          <dep id="AS3" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="com.my.app.component.printPopUp:PrintPopUp" />
          <dep id="com.my.app:IMYAppPropApp" />
          <dep id="com.my.app.enum:TextServiceNames" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.resources:LocaleSorter)" mod="1306872057312" size="9921" optimizedsize="6854">
          <def id="mx.resources:LocaleSorter" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/spark_rb.swc$locale/en_US/components.properties" mod="1306853870000" size="4153" optimizedsize="4083">
          <def id="en_US$components_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.delegate.remoting:QueryPodDelegate)" mod="1294681144000" size="1591" optimizedsize="852">
          <def id="com.my.app.delegate.remoting:QueryPodDelegate" />
          <pre id="com.my.app.delegate.interfaces:IQueryPodDelegate" />
          <pre id="com.my.app.delegate.remoting:BaseDelegate" />
          <dep id="com.my.app.vo:DashboardPod" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
          <dep id="com.my.app.remoting.interfaces:IQueryPodRemoteObject" />
          <dep id="com.my.app.vo:QueryPod" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:CompetitorsQueryResult)" mod="1295458204000" size="619" optimizedsize="267">
          <def id="com.my.app.vo:CompetitorsQueryResult" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="com.my.app.vo:Competitor" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:ConstructorInjectionPoint)" mod="1272837850000" size="3351" optimizedsize="2412">
          <def id="org.swiftsuspenders.injectionpoints:ConstructorInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:MethodInjectionPoint" />
          <dep id="flash.utils:describeType" />
          <dep id="AS3" />
          <dep id="trace" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="Error" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/AdminModuleLoader.as" mod="1291226946000" size="901" optimizedsize="583">
          <def id="com.my.app.loader:AdminModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/view/MainViewMarkup.mxml" mod="1308837418000" size="9261" optimizedsize="6130">
          <def id="com.my.app.view:MainViewMarkup" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="mx.binding:IBindingClient" />
          <pre id="spark.components:Group" />
          <dep id="com.my.app.component.loader:TimeLineLoaderWrapper" />
          <dep id="com.my.app.loader:LoginModuleLoader" />
          <dep id="com.my.app.loader:DashboardModuleLoader" />
          <dep id="spark.components:VGroup" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:IWatcherSetupUtil2" />
          <dep id="mx.binding:BindingManager" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="mx.states:SetProperty" />
          <dep id="spark.layouts:VerticalLayout" />
          <dep id="com.my.app.loader:HeaderModuleLoader" />
          <dep id="AS3" />
          <dep id="mx.binding:Binding" />
          <dep id="com.my.app.loader:AdminModuleLoader" />
          <dep id="com.my.app.loader:QueryBuilderModuleLoader" />
          <dep id="mx.states:State" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="com.my.app.component.loader:ILoaderController" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="_com_my_app_view_MainViewMarkupWatcherSetupUtil" />
          <dep id="com.my.app.loader:FeedbackModuleLoader" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders:InjectionConfig)" mod="1272837850000" size="1296" optimizedsize="632">
          <def id="org.swiftsuspenders:InjectionConfig" />
          <pre id="Object" />
          <dep id="org.swiftsuspenders.injectionresults:InjectionResult" />
          <dep id="AS3" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:ITextRemoteObject)" mod="1292345880000" size="419" optimizedsize="160">
          <def id="com.my.app.remoting.interfaces:ITextRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ICachableRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:MediaSummaryPod)" mod="1308837429000" size="711" optimizedsize="345">
          <def id="com.my.app.vo:MediaSummaryPod" />
          <pre id="com.my.app.vo:RevertableVO" />
          <dep id="Date" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:NoParamsConstructorInjectionPoint)" mod="1272837850000" size="770" optimizedsize="321">
          <def id="org.swiftsuspenders.injectionpoints:NoParamsConstructorInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:InjectionPoint" />
          <dep id="AS3" />
        </script>
        <script name="_MYAppPro_FlexInit-generated.as" mod="1309190215865" size="13205" optimizedsize="11952">
          <def id="_MYAppPro_FlexInit" />
          <pre id="Object" />
          <dep id="mx.messaging.messages:MessagePerformanceInfo" />
          <dep id="com.my.app.vo:TextMessage" />
          <dep id="com.my.app.vo:Category" />
          <dep id="en_US$components_properties" />
          <dep id="com.my.app.vo:QuerySnippet" />
          <dep id="en_US$formatters_properties" />
          <dep id="en_US$logging_properties" />
          <dep id="mx.messaging.messages:AsyncMessageExt" />
          <dep id="mx.utils:ObjectProxy" />
          <dep id="en_US$sparkEffects_properties" />
          <dep id="en_US$SharedResources_properties" />
          <dep id="com.my.app.vo:Query" />
          <dep id="mx.managers:SystemManagerGlobals" />
          <dep id="en_US$collections_properties" />
          <dep id="com.my.app.vo:CustomerSnippet" />
          <dep id="com.my.app.vo:User" />
          <dep id="mx.messaging.messages:AcknowledgeMessage" />
          <dep id="en_US$modules_properties" />
          <dep id="com.my.app.vo:MediaType" />
          <dep id="en_US$core_properties" />
          <dep id="com.my.app.vo:Dashboard" />
          <dep id="flash.net:registerClassAlias" />
          <dep id="mx.effects:EffectManager" />
          <dep id="flash.net:getClassByAlias" />
          <dep id="mx.messaging.messages:RemotingMessage" />
          <dep id="com.my.app.vo:Journalist" />
          <dep id="com.my.app.vo:TextPod" />
          <dep id="mx.messaging.config:ConfigMap" />
          <dep id="mx.messaging.messages:ErrorMessage" />
          <dep id="en_US$rpc_properties" />
          <dep id="mx.messaging.messages:CommandMessageExt" />
          <dep id="mx.collections:ArrayList" />
          <dep id="com.my.app.vo:QueryResultElement" />
          <dep id="com.my.app.vo:MediaOutlet" />
          <dep id="mx.managers.systemClasses:ChildManager" />
          <dep id="mx.messaging.messages:CommandMessage" />
          <dep id="en_US$containers_properties" />
          <dep id="mx.core:TextFieldFactory" />
          <dep id="mx.core:mx_internal" />
          <dep id="com.my.app.vo:RSSPod" />
          <dep id="mx.resources:ResourceManager" />
          <dep id="com.my.app.vo:QueryPod" />
          <dep id="com.my.app.vo:CompetitorsQueryResult" />
          <dep id="en_US$layout_properties" />
          <dep id="mx.messaging.messages:AcknowledgeMessageExt" />
          <dep id="AS3" />
          <dep id="com.my.app.vo:Competitor" />
          <dep id="en_US$messaging_properties" />
          <dep id="en_US$osmf_properties" />
          <dep id="mx.styles:StyleManagerImpl" />
          <dep id="en_US$textLayout_properties" />
          <dep id="com.my.app.vo:UserSnippet" />
          <dep id="en_US$skins_properties" />
          <dep id="trace" />
          <dep id="com.my.app.vo:Source" />
          <dep id="Error" />
          <dep id="en_US$charts_properties" />
          <dep id="en_US$styles_properties" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="com.my.app.vo:DashboardPod" />
          <dep id="com.my.app.vo:MediaSummaryItem" />
          <dep id="en_US$effects_properties" />
          <dep id="com.my.app.vo:CustomerFile" />
          <dep id="com.my.app.vo:MediaSummaryPod" />
          <dep id="mx.styles:IStyleManager2" />
          <dep id="com.my.app.vo:Customer" />
          <dep id="mx.messaging.messages:AsyncMessage" />
        </script>
        <script name="MYAppPro__embed__font_MyriadPro_bold_normal_1315605509.as" mod="1291226943000" size="442" optimizedsize="224">
          <def id="MYAppPro__embed__font_MyriadPro_bold_normal_1315605509" />
          <pre id="mx.core:FontAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/BaseModuleLoader.as" mod="1309175195000" size="3243" optimizedsize="1970">
          <def id="com.my.app.loader:BaseModuleLoader" />
          <pre id="mx.modules:ModuleLoader" />
          <dep id="org.robotlegs.utilities.modular.core:IModule" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.component.loader:ILoaderController" />
          <dep id="mx.events:FlexEvent" />
          <dep id="com.my.app.manager:ModalPopupManager" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="com.my.app:IMYAppPropApp" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/skins/LinkButtonSkin.mxml" mod="1308837418000" size="5134" optimizedsize="3986">
          <def id="com.my.app.skins:LinkButtonSkin" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="spark.components.supportClasses:Skin" />
          <dep id="mx.styles:CSSSelector" />
          <dep id="mx.states:AddItems" />
          <dep id="spark.primitives:Rect" />
          <dep id="mx.styles:CSSStyleDeclaration" />
          <dep id="mx.core:DeferredInstanceFromFunction" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:BindingManager" />
          <dep id="mx.styles:CSSCondition" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="spark.components:Label" />
          <dep id="mx.states:SetProperty" />
          <dep id="AS3" />
          <dep id="mx.graphics:SolidColor" />
          <dep id="mx.states:State" />
          <dep id="mx.events:PropertyChangeEvent" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:QueryRemoteObject)" mod="1297076409000" size="2734" optimizedsize="1455">
          <def id="com.my.app.remoting:QueryRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IQueryRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="com.my.app.vo:Query" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:RSLData)" mod="1306872040468" size="1658" optimizedsize="839">
          <def id="mx.core:RSLData" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:MediaOutletRemoteObject)" mod="1292429834000" size="1193" optimizedsize="733">
          <def id="com.my.app.remoting:MediaOutletRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IMediaOutletRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:DashboardPodRemoteObject)" mod="1295255883000" size="1770" optimizedsize="996">
          <def id="com.my.app.remoting:DashboardPodRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IDashboardPodRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="com.my.app.vo:DashboardPod" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:IEmbeddedFontRegistry)" mod="1306872039202" size="1261" optimizedsize="440">
          <def id="mx.core:IEmbeddedFontRegistry" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="mx.core:EmbeddedFont" />
          <dep id="mx.managers:ISystemManager" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/textLayout_rb.swc$locale/en_US/textLayout.properties" mod="1306853916000" size="1656" optimizedsize="1609">
          <def id="en_US$textLayout_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.core:ICommandMap)" mod="1271434072000" size="1242" optimizedsize="376">
          <def id="org.robotlegs.core:ICommandMap" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.resources:ResourceManagerImpl)" mod="1306872057374" size="12831" optimizedsize="6861">
          <def id="mx.resources:ResourceManagerImpl" />
          <pre id="mx.resources:IResourceManager" />
          <pre id="flash.events:EventDispatcher" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="mx.resources:LocaleSorter" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="mx.resources:IResourceModule" />
          <dep id="trace" />
          <dep id="mx.utils:StringUtil" />
          <dep id="mx.resources:ResourceBundle" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="Error" />
          <dep id="mx.modules:ModuleManager" />
          <dep id="mx.modules:IModuleInfo" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="AS3" />
          <dep id="mx.resources:IResourceBundle" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="flash.system:Capabilities" />
          <dep id="mx.events:ResourceEvent" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.events:FocusEvent" />
          <dep id="flash.events:TimerEvent" />
          <dep id="mx.events:FlexEvent" />
          <dep id="mx.managers:SystemManagerGlobals" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/osmf_rb.swc$locale/en_US/osmf.properties" mod="1306854146000" size="3751" optimizedsize="3676">
          <def id="en_US$osmf_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:IMediaTypeRemoteObject)" mod="1308837429000" size="868" optimizedsize="291">
          <def id="com.my.app.remoting.interfaces:IMediaTypeRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.adapters:SwiftSuspendersInjector)" mod="1273448758000" size="1624" optimizedsize="1129">
          <def id="org.robotlegs.adapters:SwiftSuspendersInjector" />
          <pre id="org.robotlegs.core:IInjector" />
          <pre id="org.swiftsuspenders:Injector" />
          <dep id="AS3" />
          <dep id="XML" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.managers:SystemManager)" mod="1306872044452" size="36322" optimizedsize="20571">
          <def id="mx.managers:SystemManager" />
          <pre id="mx.core:IFlexModuleFactory" />
          <pre id="mx.managers:ISystemManager" />
          <pre id="mx.core:IChildList" />
          <pre id="mx.core:IFlexDisplayObject" />
          <pre id="flash.display:MovieClip" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="Math" />
          <dep id="flash.display:LoaderInfo" />
          <dep id="mx.core:IUIComponent" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="mx.events:SandboxMouseEvent" />
          <dep id="mx.managers:SystemRawChildrenList" />
          <dep id="flash.text:TextFormat" />
          <dep id="flash.display:Graphics" />
          <dep id="flash.events:TimerEvent" />
          <dep id="mx.managers:SystemManagerGlobals" />
          <dep id="flash.display:StageAlign" />
          <dep id="flash.display:Sprite" />
          <dep id="mx.utils:LoaderUtil" />
          <dep id="mx.preloaders:Preloader" />
          <dep id="flash.geom:Rectangle" />
          <dep id="mx.events:RSLEvent" />
          <dep id="flash.display:Loader" />
          <dep id="flash.geom:Point" />
          <dep id="mx.managers:SystemChildrenList" />
          <dep id="flash.events:MouseEvent" />
          <dep id="flash.text:Font" />
          <dep id="flash.display:DisplayObject" />
          <dep id="flash.display:Stage" />
          <dep id="flash.events:Event" />
          <dep id="flash.ui:Keyboard" />
          <dep id="mx.events:DynamicEvent" />
          <dep id="ArgumentError" />
          <dep id="mx.core:IRawChildrenContainer" />
          <dep id="QName" />
          <dep id="flash.events:KeyboardEvent" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.core:FlexSprite" />
          <dep id="flash.display:StageQuality" />
          <dep id="mx.core:RSLItem" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="mx.core:RSLData" />
          <dep id="mx.events:Request" />
          <dep id="AS3" />
          <dep id="__AS3__.vec:Vector" />
          <dep id="mx.core:Singleton" />
          <dep id="mx.utils:DensityUtil" />
          <dep id="mx.events:FlexEvent" />
          <dep id="flash.utils:Dictionary" />
          <dep id="flash.display:StageScaleMode" />
          <dep id="SecurityError" />
          <dep id="mx.core:IInvalidating" />
          <dep id="Error" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.events:FocusEvent" />
          <dep id="mx.managers:ISystemManagerChildManager" />
        </script>
        <script name="_class_embed_css_assets_CalendarIcon_png__1170248551_1839914564.as" mod="1306854026000" size="550" optimizedsize="314">
          <def id="_class_embed_css_assets_CalendarIcon_png__1170248551_1839914564" />
          <pre id="mx.core:BitmapAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.managers:SystemRawChildrenList)" mod="1306872045187" size="2326" optimizedsize="1198">
          <def id="mx.managers:SystemRawChildrenList" />
          <pre id="mx.core:IChildList" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="flash.display:DisplayObject" />
          <dep id="mx.managers:SystemManager" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.geom:Point" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/airframework_rb.swc$locale/en_US/effects.properties" mod="1306854100000" size="401" optimizedsize="374">
          <def id="en_US$effects_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548___brokenImage_184772295.as" mod="1306854026000" size="601" optimizedsize="363">
          <def id="_class_embed_css_Assets_swf_1422583548___brokenImage_184772295" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:ResourceModuleRSLItem)" mod="1306872039609" size="2015" optimizedsize="1281">
          <def id="mx.core:ResourceModuleRSLItem" />
          <pre id="mx.core:RSLItem" />
          <dep id="mx.resources:IResourceManager" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="AS3" />
          <dep id="mx.events:ResourceEvent" />
          <dep id="flash.events:IOErrorEvent" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/airframework_rb.swc$locale/en_US/styles.properties" mod="1306854100000" size="301" optimizedsize="275">
          <def id="en_US$styles_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:QueryPodRemoteObject)" mod="1294680416000" size="1859" optimizedsize="1033">
          <def id="com.my.app.remoting:QueryPodRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IQueryPodRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
          <dep id="com.my.app.vo:QueryPod" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:IInvalidating)" mod="1306872040202" size="692" optimizedsize="250">
          <def id="mx.core:IInvalidating" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.manager:AsyncManager)" mod="1297671711000" size="2404" optimizedsize="1361">
          <def id="com.my.app.manager:AsyncManager" />
          <pre id="Object" />
          <dep id="mx.rpc:Fault" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="com.my.app.action:AsyncAction" />
          <dep id="org.osflash.signals:ISignal" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.modules:IModuleInfo)" mod="1306872055374" size="1626" optimizedsize="534">
          <def id="mx.modules:IModuleInfo" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/HeaderModuleLoader.as" mod="1308837418000" size="4145" optimizedsize="2113">
          <def id="com.my.app.loader:HeaderModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="com.my.app.module.header:IHeaderModule" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="com.my.app.vo:User" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.model:ApplicationModel)" mod="1297160952000" size="529" optimizedsize="271">
          <def id="com.my.app.model:ApplicationModel" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="com.my.app.vo:Customer" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragReject_207783805.as" mod="1306854026000" size="641" optimizedsize="376">
          <def id="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragReject_207783805" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:Query)" mod="1295374588000" size="1105" optimizedsize="609">
          <def id="com.my.app.vo:Query" />
          <pre id="com.my.app.vo:CacheVO" />
          <dep id="Date" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:CategoryRemoteObject)" mod="1294221810000" size="1161" optimizedsize="734">
          <def id="com.my.app.remoting:CategoryRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ICategoryRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.base:MediatorBase)" mod="1269791984000" size="1944" optimizedsize="1038">
          <def id="org.robotlegs.base:MediatorBase" />
          <pre id="org.robotlegs.core:IMediator" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="AS3" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="Error" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:DashboardPod)" mod="1295255883000" size="1046" optimizedsize="531">
          <def id="com.my.app.vo:DashboardPod" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.enum:MenuTypes)" mod="1294410482000" size="498" optimizedsize="255">
          <def id="com.my.app.enum:MenuTypes" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/mediator/MainViewMediator.as" mod="1309180556000" size="8603" optimizedsize="5066">
          <def id="com.my.app.mediator:MainViewMediator" />
          <pre id="org.robotlegs.mvcs:Mediator" />
          <dep id="com.my.app.vo:User" />
          <dep id="com.my.app.remoting.interfaces:IUserRemoteObject" />
          <dep id="com.my.app.component.asyncPasswordEnter:AsyncPasswordEnter" />
          <dep id="com.my.app.component.asyncRetry:AsyncRetry" />
          <dep id="com.my.app.action:AsyncAction" />
          <dep id="com.my.app.manager:ModalPopupManager" />
          <dep id="com.my.app.domain.auth:IAuth" />
          <dep id="com.my.app.vo:QuerySnippet" />
          <dep id="com.my.app.view:MainView" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="com.my.app.enum:MenuTypes" />
          <dep id="mx.rpc:Fault" />
          <dep id="flash.events:MouseEvent" />
          <dep id="com.my.app.vo:Query" />
          <dep id="com.my.app.enum:NavigationViews" />
          <dep id="AS3" />
          <dep id="com.my.app.manager:NavigationManager" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.display:DisplayObject" />
          <dep id="flash.events:TimerEvent" />
          <dep id="com.my.app.model:ApplicationModel" />
          <dep id="com.my.app.manager:AsyncManager" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.delegate.remoting:UserDelegate)" mod="1292231868000" size="1092" optimizedsize="605">
          <def id="com.my.app.delegate.remoting:UserDelegate" />
          <pre id="com.my.app.delegate.interfaces:IUserDelegate" />
          <pre id="com.my.app.delegate.remoting:BaseDelegate" />
          <dep id="com.my.app.remoting.interfaces:IUserRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.base:ViewMap)" mod="1269791984000" size="2749" optimizedsize="1552">
          <def id="org.robotlegs.base:ViewMap" />
          <pre id="org.robotlegs.core:IViewMap" />
          <pre id="org.robotlegs.base:ViewMapBase" />
          <dep id="flash.events:Event" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="org.robotlegs.core:IInjector" />
          <dep id="AS3" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="flash.display:DisplayObject" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.manager:NavigationManager)" mod="1295279651000" size="2655" optimizedsize="1547">
          <def id="com.my.app.manager:NavigationManager" />
          <pre id="Object" />
          <dep id="mx.events:BrowserChangeEvent" />
          <dep id="mx.managers:BrowserManager" />
          <dep id="mx.utils:URLUtil" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="com.my.app.enum:NavigationViews" />
          <dep id="mx.managers:IBrowserManager" />
          <dep id="AS3" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:mx_internal)" mod="1306872039530" size="184" optimizedsize="109">
          <def id="mx.core:mx_internal" />
          <dep id="AS3" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_CloseButtonDisabled_452580263.as" mod="1306854026000" size="620" optimizedsize="369">
          <def id="_class_embed_css_Assets_swf_1422583548_CloseButtonDisabled_452580263" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:EmbeddedFont)" mod="1306872041265" size="1212" optimizedsize="625">
          <def id="mx.core:EmbeddedFont" />
          <pre id="Object" />
          <dep id="mx.core:EmbeddedFontRegistry" />
          <dep id="AS3" />
          <dep id="mx.c

  • Flex SDK 4.5 error in compiled resource bundle

    I have just started using Flex SDK 4.5 (I was using 4.1 before).
    I am compiling my resource bundles into SWF files and using them. I am including the required framework bundles also when compiling my resources into SWF.I have copied the generated SWF file to the deployment folder. When I start the application, I am getting the following error even though this bundle is included in my generated SWF file.
    Error: Could not find compiled resource bundle 'core' for locale 'en'.
        at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[E:\ dev\hero_private_beta\frameworks\projects\framework\src\mx\resources\R esourceManagerImpl.as:367]
        at mx.resources::ResourceManagerImpl/installCompiledResourceBundles()[E: \dev\hero_private_beta\frameworks\projects\framework\src\mx\resources\ ResourceManagerImpl.as:287]
        at mx.core::FlexModuleFactory/installCompiledResourceBundles()[E:\dev\he ro_private_beta\frameworks\projects\framework\src\mx\core\FlexModuleFa ctory.as:631]
        at mx.core::FlexModuleFactory/docFrameHandler()[E:\dev\hero_private_beta \frameworks\projects\framework\src\mx\core\FlexModuleFactory.as:601]
        at mx.core::FlexModuleFactory/docFrameListener()[E:\dev\hero_private_bet a\frameworks\projects\framework\src\mx\core\FlexModuleFactory.as:129]
    following is the command that I use to compile resource bundles into SWF file:
    C:\"Program Files (x86)"\Adobe\"Adobe Flash Builder Burrito"\sdks\4.5.0\bin\mxmlc -locale=en -source-path=locale/{locale} -include-resource-bundles=core,effects,skins,styles,components,layout ,MyAppResources -output MyAppResources_en.swf

    Any ideas on this will be much appreciated. I have to step back from 4.5 to 4.1 if I do not get past this error. Thanks.

  • Flex Developer Resource Needed.

    My company, located in Scottsdale, AZ purchased IBM Elixir and we have an immediate need for a Flex developer resource who can assist us in our .NET application integration with this product. If you are a seasoned Flex developer familiar with Elixir or can refer me to a resource, please email me at: [email protected]
    Thanks

    Please refrain from discussing job opportunities on this
    forum. There is a mailing list specifically for this topic. Do an
    internet search for "flex jobs".

Maybe you are looking for

  • Color Shift Happening When Exporting - Bug in Acrobat Export?

    Hi, we are using InDesign CS3 and trying to output a file to send to a printer. We are desiring to have all colors converted to the printer's CMYK color space upon exporting (they sent us their ICC profile). But we are getting a bizarre bug that I ca

  • RTP mateiral reference in PO

    Standard R/3 provides scenario w.r.t. RTP such a way that the receipt is done by 501M movement type during Goods receipt. Is there any way of mentioning the RTP material in purchase order and capture of the line item during goods receipt with out man

  • Help usb capture decives that work with FME ?

    I have tried both the Dazzle dvd 100 and the pinnacle PCTV HD pro stick and neither of them work properly, mostly give video but no audio. has anyone tested and got a usb capture device working with media encoder? if so what device and how

  • Is there any way I can edit .mxf files using Premiere Elements 12?

    Hello, My camera records as .mxf files and my copy of Adobe Premiere Elements 12 tells me that it does not support this file type.  Is there any way I could edit these clips?  I've done some google searching I would personally rather not have to down

  • Will PE6 run on Snow Leopard 10.6.3?

    Will Photoshop elements 6 run on Snow Leopard 10.6.3??? My current iMac has Leopard and PE6 ran fine but I will be updating it to snow leopard and possibly mountain lion at a later date.