JAVA 7u4 with Flex component.

While Removing Tabbed Pane having Flex Component , on java 7u4 throws following exception.
Note : it works fine with JAVA 6u32
.... FlexServiceThread exited...
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at sun.java2d.ScreenUpdateManager.createScreenSurface(Unknown Source)
at sun.java2d.d3d.D3DScreenUpdateManager.createScreenSurface(Unknown Source)
at sun.awt.windows.WComponentPeer.createScreenSurface(Unknown Source)
at sun.awt.windows.WComponentPeer.replaceSurfaceData(Unknown Source)
at sun.awt.windows.WComponentPeer.replaceSurfaceData(Unknown Source)
at sun.awt.windows.WComponentPeer.updateGraphicsData(Unknown Source)
at java.awt.Component.updateGraphicsData(Unknown Source)
at java.awt.Container.updateGraphicsData(Unknown Source)
at java.awt.Container.updateGraphicsData(Unknown Source)
at java.awt.Component.setGraphicsConfiguration(Unknown Source)
at java.awt.Container.remove(Unknown Source)
at javax.swing.JTabbedPane.removeTabAt(Unknown Source)
at testing.test.myTabbedPane.*removeTabAt*(myTabbedPane.java:42)
Please Help ?

That's really weird!
After digging around, reinstalling Flash CS3 again and doing
multiple tests, I finally found the source of the problem:
Two .swc files residing in the same folder where I was saving
my tests files were avoiding the Flash compiler to successfully
create new .swc files!? I cannot understand how this can be
possible. As soon as I choosed a new folder for saving the test
files, I could link to the .swc and access the component from Flex.
Also as soon as I moved out the two culprid files I could again
save in the previous folder...
Does anyone has an idea how this can happen?
For those interested in the case, you can download the 2
culprid files
here
Best regards,

Similar Messages

  • Question about mapping a JAVA Interface with Flex

    I am using Granite Data Services (Java backend) with my Flex
    client.
    The Java server has an Interface called
    public interface IService {String getServiceName();}
    The flex client makes a remote service call on the server
    POJO which returns any implementation of the specified interface.
    On the flex side I have an interface
    [Bindable]
    [RemoteClass(alias="com.*****.proxy.pojo.IService")]
    public interface IService{function getServiceName():String;}
    As shown i am binding it to the server interface.
    From the client I make a call to the server and handle the
    result as shown below
    var serviceInstance:IService =
    (remoteO.testInterface.lastResult as IService);
    Alert.show("Service Name :
    "+serviceInstance.getServiceName());
    The call reaches the server and the remote method is being
    called however the Alert is not working.
    Please Help !!

    //Start other thread closeT
    System.exit(0)
    //code for thread closeT
    //wait 10 s
    Runtime.getRuntime().halt()
    Gil

  • Do you use Java Faces with Flex?

    I'm having problem getting the FacesContext because the faces
    serlvet does not process the mesages passed from Flex
    component.

    I created jsp pages and embeded Flex application within these
    pages. I do use HTTPService to pass the data between the Flex
    components and the back bean.
    I ran into two major problems though. I couldn't get
    FacesContext consistantly meaning that I got null when the servlet
    tries to call FacesContext.getCurrentInstance() or
    FacesContextFactory contextFactory =
    (FacesContextFactory)
    FactoryFinder.getFactory(FactoryFinder.FACES_CONTEXT_FACTORY);
    LifecycleFactory lifecycleFactory =
    (LifecycleFactory)
    FactoryFinder.getFactory(FactoryFinder.LIFECYCLE_FACTORY);
    Lifecycle lifecycle =
    lifecycleFactory.getLifecycle(LifecycleFactory.DEFAULT_LIFECYCLE);
    facesContext = contextFactory.getFacesContext(
    this.getServletContext(), request, response, lifecycle);
    I may have solved this problem by getting the bean directly
    from the HttpServletRequest. But if the back bean tries to use
    other faces context such as ExternalContext, then it gets null.
    The second problem I ran into is that I can't to create two
    instances of the same Flex application. I try to use SWFObject to
    create two instances of the same Flex application in two different
    jfp pages. The initial HTTPService is not called for the second
    page. It appears that the application re-uses the same data for the
    second page. I asked this question in this Forum before but I
    didn't get any answer.

  • Need guidance with Flex Component Kit

    Hi,
    I have installed Flash CS3 <no extension manager> and
    Flex 3 builder. I want to import movie clips I made in Flash in to
    Flex builder. Please guide me exactly which patches and software do
    I need exactly and the process of importing these assets.
    Thanks.

    This is documentation:
    http://blogs.adobe.com/flexdoc/pdf/swf9.pdf
    http://opensource.adobe.com/wiki/display/flexsdk/Flex+Component+Kit+Specification
    http://blogs.adobe.com/flexdoc/2007/08/using_the_flex_component_kit_f_1.html
    And here you can download the Kit:
    https://www.adobe.com/cfusion/entitlement/index.cfm?e=flex_skins
    Also to install this Kit you must first download and install
    Adobe Extension Manager:
    http://www.adobe.com/exchange/em_download/

  • How To call java WebService with flex.

    Hi Friends
                         can any body guide me how to use webservices that call java at server side.i have experience of http service dont know how to call the webservices.please give me a basic demo on both side(java and flex).i am using eclipse ide for java and flex.
    Thanks in advance
       Vineet osho

    The ADF Mobile Container Utilities API may be used from JavaScript or Java.
    Application Container APIs - 11g Release 2 (11.1.2.4.0)

  • Flex Print Job not working with custom component

    Hi All,
    I have to print pages with header, body and footer. So the thought process was to create a custom component fro header, footer and body. Header component is based on Box, Body is a renderer (which will have fix value of items - and will decide the number of possible pages) and footer is again based on Box.
    But when i created a simple Custom component like this for header
    <?xml version="1.0" encoding="utf-8"?>
      <mx:VBox  xmlns:fx=http://ns.adobe.com/mxml/2009
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:HBox>      <mx:Label id="testLabel" text="Test Container"/>
    </mx:HBox> 
    </mx:VBox>
    Then when i try to add this to FlexPrintJob, and save it as 'xps' to see the print output, i get error message that this file is in use or damaged.
        var myPrintJob:FlexPrintJob = new FlexPrintJob();
      if(!myPrintJob.start()){
          return;
    var header:Header = new Header();
    header.width = myPrintJob.pageWidth;
    header.visible = false;
    FlexGlobals.topLevelApplication.addChild(panierPrintHeader);
    myPrintJob.addObject(header);
    myPrintJob.send();
    FlexGlobals.topLevelApplication.removeChild(panierPrintHeader);
     But this does not work and i get the above mentioned exception. Now when i not use the custom component and just have a label or HBox or anything on stage before the print functionality is invoked, it works fine. And this too haapens only if you have a mxml component, i tried by creating a new Label component using actionscript and then provide the same to the printJob, which did not work either. I need help on this, else i will have to take print functionality to server side(Java) which has some business implications, the reason why i am spending time on flex for printing. 
    Thanks and Regards,
    Jigar
    Looks like custom component print is not working fine with flex or i am doing something terribly wrong.
    Looking forward for help.

    Is there nobody in flex community who can help on this....
    Looks like a toothless class that adobe actionscript team has provided, which is not liked across much

  • Getting Started with Flex and Java RPC for Free?

    Good Morning,
    Please forgive me if this is the wrong place to post- I'm
    just having trouble wrapping my head around what is and what isn't
    available for free in the Adobe Flex world.
    I've been working on an application for the last few months
    using Open Laszlo (
    http://www.openlaszlo.org/),
    but I've been running into frustrations with their lack of
    up-to-date documentation, and I've found it difficult to bring new
    people into the project, since the set of users who know it is so
    small.
    While I do like that I can compile to DHTML, that's not
    enough to hold me there.
    I've been looking into Adobe Flex, and it seems like a good
    alternative- I'm comfortable paying $500 for the IDE-
    I use Eclipse currently, so having a plugin for it sounds
    ideal. That said, when I look into ways to talk to a Java backend,
    everything points to Flex Data services, which is now part of some
    larger package costing tens of thousands of dollars.
    I don't need advanced messages, or data synchronization, as
    nice as it would be.. All I really need is the ability to call a
    Java method, and get an object back, which I can then work with in
    Flex.
    I see the forum message that asks
    "How
    do I 'do' Flash for free?, but this only talks about RPC very
    broadly. Given that the message is from over a year ago, I thought
    it would be better form to start a new topic, than replying to it.
    Can someone explain to me what components I'd need, both on
    the client side and the server side?
    Is there a set of manuals that explain how to do Flex RPC
    from Java?
    Can Flex compile to any versions of flash earlier than 9?
    (Flash 6/7 is still in wide deployment)
    Do I want to start using Flex 2, or Flex 3? Are the
    components compatible? Will the F3 docs be ready?
    Finally, where can I purchase the Charting components? The
    ability to create charts such as
    this
    overcome a decent price barrier.
    Thank you for any insight you can offer, and direction you
    can provide.

    quote:
    Originally posted by:
    cunparis2day
    On our project they made a proxy in java where they passed in
    the name of the method as a string, and an array of objects for the
    parameters. The proxy then sent the request via RMI and returned
    the result. Kind of a hack but they say it worked (I wasn't here
    when they did it).
    What did the RMI talk to? Are there docs on this?
    quote:
    Another approach, generate the proxy from the java
    interfaces. Or better yet, generate it dynamically with CGLIB.
    quote:
    Finally, I'm investigating using Mule for the integration.
    Let me know what you think about those suggestions.
    We have our own messages, but how would MULE translate them
    to Flex?
    You know quite a bit more about this, can you take a step
    back, and explain?

  • Java with flex

    Hi
    I am new to Flex .
    Do any one know how to develope an application with flex , java and database connection.
    I have FLEX SDK 3.1
    MySQL 5
    jdk 1.5
    whether any thing else required for developing the application.
    Plz help.
    Its Urgent

    Hi,
    Flex3, MySQL5 and jdk 1.5 should be fine.
    Though I have not worked with flex with MySQL combination, I have used the
    - Flex2/3
    - MSSQL2005/ Oracle9i/ HSQLDB/ Apache Derby
    - jdk1.5(update 4)/1.6
    combinations.
    But I think you may need jdk1.6 for flex3. Also if affordable, go for Flex Builder - will make your UI creation easy.
    Hope this helps.

  • Flex Component Kit publish SWC not working with Flex 4

    I started this thread in the Flex forum and they are telling me that the SWC's I'm creating with Flash Professional CS5 and Flex Component Kit 2.0.0 are not linked with FCC for Flex 4.
    http://forums.adobe.com/thread/777789?tstart=0
    That means the problem is with my Flash Professional CS5 setup instead of my Flash Builder 4 setup. Can someone here help me fix my Flash setup? As I described in that thread I can't find anything wrong with my setup but apparenty I'm generating SWC's for the wrong version of Flex.
    Thanks,
    Ryan

    I unzipped my SWC and verified what Flex harUI in the Flex forum told me. My SWC seems to be linked with FCC 1 not FCC 2. I don't understand how this is possible. I am using Flash Professional CS5 and only FCC 2.0.0 is installed, FCC 1 is not even installed. Here are the contents of catalog.xml in my SWC file. How do I get Flash CS5 to generate an SWC for Flex 4?
    <?xml version="1.0" encoding ="utf-8"?>
    <swc xmlns="http://www.adobe.com/flash/swccatalog/9">
      <versions>
        <swc version="1.2" />
        <flash version="11.0" build="d485" platform="WIN" />
      </versions>
      <features>
        <feature-script-deps />
        <feature-files />
      </features>
      <libraries>
        <library path="library.swf">
          <script name="mx/core/mx_internal" mod="1146523398000" >
            <def id="mx.core:mx_internal" />
            <dep id="AS3" type="n" />
          </script>
          <script name="mx/core/IStateClient" mod="1185825125000" >
            <def id="mx.core:IStateClient" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/automation/IAutomationObject" mod="1182369703000" >
            <def id="mx.automation:IAutomationObject" />
            <dep id="flash.events:Event" type="s" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/IConstraintClient" mod="1188589376000" >
            <def id="mx.core:IConstraintClient" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/managers/IFocusManagerComponent" mod="1182369904000" >
            <def id="mx.managers:IFocusManagerComponent" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/IInvalidating" mod="1150233077000" >
            <def id="mx.core:IInvalidating" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/IChildList" mod="1149255249000" >
            <def id="mx.core:IChildList" />
            <dep id="flash.display:DisplayObject" type="s" />
            <dep id="flash.geom:Point" type="s" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/IFlexModuleFactory" mod="1185825071000" >
            <def id="mx.core:IFlexModuleFactory" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/ComponentDescriptor" mod="1149112409000" >
            <def id="mx.core:ComponentDescriptor" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/DragSource" mod="1149694704000" >
            <def id="mx.core:DragSource" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/events/PropertyChangeEventKind" mod="1149796273000" >
            <def id="mx.events:PropertyChangeEventKind" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/managers/IFocusManager" mod="1191005122000" >
            <def id="mx.managers:IFocusManager" />
            <dep id="mx.managers:IFocusManagerComponent" type="s" />
            <dep id="flash.display:InteractiveObject" type="s" />
            <dep id="mx.core:IUIComponent" type="s" />
            <dep id="flash.display:Sprite" type="s" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/managers/IFocusManagerContainer" mod="1150207146000" >
            <def id="mx.managers:IFocusManagerContainer" />
            <dep id="mx.managers:ISystemManager" type="s" />
            <dep id="flash.display:DisplayObject" type="s" />
            <dep id="mx.managers:IFocusManager" type="s" />
            <dep id="AS3" type="n" />
            <dep id="flash.events:IEventDispatcher" type="i" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/IFlexDisplayObject" mod="1149200749000" >
            <def id="mx.core:IFlexDisplayObject" />
            <dep id="flash.display:DisplayObjectContainer" type="s" />
            <dep id="flash.display:DisplayObject" type="s" />
            <dep id="AS3" type="n" />
            <dep id="flash.events:IEventDispatcher" type="i" />
            <dep id="flash.display:IBitmapDrawable" type="i" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/events/ResizeEvent" mod="1150087635000" >
            <def id="mx.events:ResizeEvent" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:Event" type="i" />
          </script>
          <script name="mx/events/MoveEvent" mod="1150087695000" >
            <def id="mx.events:MoveEvent" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:Event" type="i" />
          </script>
          <script name="mx/events/StateChangeEvent" mod="1149206364000" >
            <def id="mx.events:StateChangeEvent" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:Event" type="i" />
          </script>
          <script name="mx/events/FlexEvent" mod="1182369867000" >
            <def id="mx.events:FlexEvent" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:Event" type="i" />
          </script>
          <script name="mx/events/ToolTipEvent" mod="1150132131000" >
            <def id="mx.events:ToolTipEvent" />
            <dep id="mx.core:IToolTip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:Event" type="i" />
          </script>
          <script name="mx/events/PropertyChangeEvent" mod="1149879771000" >
            <def id="mx.events:PropertyChangeEvent" />
            <dep id="mx.events:PropertyChangeEventKind" type="e" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:Event" type="i" />
          </script>
          <script name="mx/managers/ISystemManager" mod="1182369908000" >
            <def id="mx.managers:ISystemManager" />
            <dep id="mx.managers:IFocusManagerContainer" type="s" />
            <dep id="flash.text:TextFormat" type="s" />
            <dep id="flash.geom:Rectangle" type="s" />
            <dep id="flash.display:LoaderInfo" type="s" />
            <dep id="flash.display:Stage" type="s" />
            <dep id="flash.display:Sprite" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:IFlexModuleFactory" type="i" />
            <dep id="flash.events:IEventDispatcher" type="i" />
            <dep id="mx.core:IChildList" type="i" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/UIComponentDescriptor" mod="1149784081000" >
            <def id="mx.core:UIComponentDescriptor" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="mx.core:ComponentDescriptor" type="i" />
          </script>
          <script name="mx/managers/IToolTipManagerClient" mod="1146518802000" >
            <def id="mx.managers:IToolTipManagerClient" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
            <dep id="mx.core:IFlexDisplayObject" type="i" />
          </script>
          <script name="mx/core/IUIComponent" mod="1188511099000" >
            <def id="mx.core:IUIComponent" />
            <dep id="mx.managers:ISystemManager" type="s" />
            <dep id="flash.display:DisplayObjectContainer" type="s" />
            <dep id="flash.geom:Rectangle" type="s" />
            <dep id="flash.display:DisplayObject" type="s" />
            <dep id="flash.display:Sprite" type="s" />
            <dep id="AS3" type="n" />
            <dep id="Object" type="i" />
            <dep id="mx.core:IFlexDisplayObject" type="i" />
          </script>
          <script name="mx/events/DragEvent" mod="1182369866000" >
            <def id="mx.events:DragEvent" />
            <dep id="flash.events:Event" type="s" />
            <dep id="mx.core:DragSource" type="s" />
            <dep id="mx.core:IUIComponent" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:MouseEvent" type="i" />
          </script>
          <script name="mx/events/FlexMouseEvent" mod="1148318971000" >
            <def id="mx.events:FlexMouseEvent" />
            <dep id="flash.events:Event" type="s" />
            <dep id="flash.display:InteractiveObject" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="flash.events:MouseEvent" type="i" />
          </script>
          <script name="mx/core/IDeferredInstantiationUIComponent" mod="1149722730000" >
            <def id="mx.core:IDeferredInstantiationUIComponent" />
            <dep id="mx.core:UIComponentDescriptor" type="s" />
            <dep id="mx.core:IFlexDisplayObject" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:IUIComponent" type="i" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/core/IToolTip" mod="1149203558000" >
            <def id="mx.core:IToolTip" />
            <dep id="flash.geom:Rectangle" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:IUIComponent" type="i" />
            <dep id="Object" type="i" />
          </script>
          <script name="mx/flash/UIMovieClip" mod="1192596260000" >
            <def id="mx.flash:UIMovieClip" />
            <dep id="flash.ui:Keyboard" type="e" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.display:DisplayObjectContainer" type="e" />
            <dep id="mx.events:FlexMouseEvent" type="e" />
            <dep id="Math" type="e" />
            <dep id="mx.core:IInvalidating" type="e" />
            <dep id="mx.events:ToolTipEvent" type="e" />
            <dep id="flash.display:InteractiveObject" type="e" />
            <dep id="mx.core:IUIComponent" type="e" />
            <dep id="flash.system:ApplicationDomain" type="e" />
            <dep id="mx.events:StateChangeEvent" type="e" />
            <dep id="mx.managers:ISystemManager" type="e" />
            <dep id="mx.events:ResizeEvent" type="e" />
            <dep id="mx.events:MoveEvent" type="e" />
            <dep id="flash.events:FocusEvent" type="e" />
            <dep id="mx.events:FlexEvent" type="e" />
            <dep id="mx.events:PropertyChangeEvent" type="e" />
            <dep id="mx.events:DragEvent" type="e" />
            <dep id="flash.events:Event" type="s" />
            <dep id="flash.display:DisplayObjectContainer" type="s" />
            <dep id="flash.geom:Rectangle" type="s" />
            <dep id="mx.core:UIComponentDescriptor" type="s" />
            <dep id="flash.display:InteractiveObject" type="s" />
            <dep id="mx.core:IUIComponent" type="s" />
            <dep id="mx.core:IFlexDisplayObject" type="s" />
            <dep id="mx.events:StateChangeEvent" type="s" />
            <dep id="mx.managers:ISystemManager" type="s" />
            <dep id="mx.events:ResizeEvent" type="s" />
            <dep id="mx.events:MoveEvent" type="s" />
            <dep id="flash.display:DisplayObject" type="s" />
            <dep id="flash.events:FocusEvent" type="s" />
            <dep id="flash.display:Sprite" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="mx.managers:IFocusManagerComponent" type="i" />
            <dep id="mx.core:IDeferredInstantiationUIComponent" type="i" />
            <dep id="flash.events:IEventDispatcher" type="i" />
            <dep id="mx.managers:IToolTipManagerClient" type="i" />
            <dep id="mx.core:IConstraintClient" type="i" />
            <dep id="flash.display:MovieClip" type="i" />
            <dep id="mx.automation:IAutomationObject" type="i" />
            <dep id="mx.core:IStateClient" type="i" />
          </script>
          <script name="BallComponent" mod="1295554958134" >
            <def id="BallComponent" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="BlueBall" mod="1295554958134" >
            <def id="BlueBall" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="Cam180Button" mod="1295554958134" >
            <def id="Cam180Button" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="CamButton" type="e" />
            <dep id="flash.display:MovieClip" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="Cam360Button" mod="1295554958134" >
            <def id="Cam360Button" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="CamButton" type="e" />
            <dep id="flash.display:MovieClip" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="CamButton" mod="1295554958134" >
            <def id="CamButton" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="flash.display:MovieClip" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="ComponentButtons" mod="1295554958134" >
            <def id="ComponentButtons" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="DeckButtons" mod="1295554958134" >
            <def id="DeckButtons" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="DoorTest" mod="1295554958134" >
            <def id="DoorTest" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="LightButton" mod="1295554958134" >
            <def id="LightButton" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="OrientationNavigator" mod="1295554958134" >
            <def id="OrientationNavigator" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="OrientationNavigatorComponent" mod="1295554958134" >
            <def id="OrientationNavigatorComponent" />
            <dep id="flash.events:Event" type="e" />
            <dep id="flash.events:MouseEvent" type="e" />
            <dep id="flash.events:MouseEvent" type="s" />
            <dep id="flash.display:MovieClip" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="mx/flash/ContainerMovieClip" mod="1186099503000" >
            <def id="mx.flash:ContainerMovieClip" />
            <dep id="mx.flash:FlexContentHolder" type="e" />
            <dep id="flash.display:DisplayObjectContainer" type="s" />
            <dep id="mx.flash:FlexContentHolder" type="s" />
            <dep id="flash.events:FocusEvent" type="s" />
            <dep id="mx.core:IUIComponent" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.flash:UIMovieClip" type="i" />
          </script>
          <script name="mx/flash/FlexContentHolder" mod="1192597011000" >
            <def id="mx.flash:FlexContentHolder" />
            <dep id="flash.display:InteractiveObject" type="e" />
            <dep id="flash.display:DisplayObject" type="e" />
            <dep id="Math" type="e" />
            <dep id="flash.utils:getDefinitionByName" type="e" />
            <dep id="Error" type="e" />
            <dep id="flash.display:DisplayObjectContainer" type="s" />
            <dep id="mx.core:IUIComponent" type="s" />
            <dep id="Error" type="s" />
            <dep id="AS3" type="n" />
            <dep id="mx.core:mx_internal" type="n" />
            <dep id="mx.flash:ContainerMovieClip" type="i" />
          </script>
        </library>
      </libraries>
      <files>
      </files>
    </swc>

  • Flex component with HTTPService

    OK, so I'm a Flex newbie so forgive me if I'm missing the
    obvious.
    I created a Flex component that references a HTTPService to
    populate a DataGrid with data. As a standalone .mxml file, it works
    fine. When I place it into a Flex application where the component
    is referenced, the grid shows up, but I get no data. I've tried
    referencing the HTTPService in the application itself, no luck.
    I've tried referencing the service in a creationComplete function
    on the application page, no luck. I'm sure there's just some little
    snippet that allows the service to run in the component...the
    component looks fine when I run it, I just don't get any
    data.

    Thanks--actually I figured it out--I was overlooking
    something obvious. However, I have a new issue that I would
    genuinely appreciate assistance on.
    I am building a Flex app where I have 4 custom components.
    Each component calls a web service to pull data in. I am using an
    MXML application file to bring in each component with an additional
    component where the user can select a date range and submit that
    range to the various web services. So what I need to do is make the
    date fields public variables and then append those variables to the
    web service calls as name/value pairs.
    No matter what I do, I cannot seem to get the other
    components to recognize the date variables as public vars. I've
    written them out as variables as part of a public function, tried
    to make them bindable, nothing works...
    So for example, this is a simplified version of my date range
    component (using only one date), assuming I've named the component
    datebar.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%">
    <mx:Script>
    <![CDATA[
    public function clickHandler():void
    var sdate:String = start_date.text;
    ]]>
    </mx:Script>
    <mx:ApplicationControlBar width="100%" height="30">
    <mx:DateField id="start_date" />
    <mx:Button label="refresh" click="clickHandler();" />
    </mx:Label>
    </mx:ApplicationControlBar>
    </mx:Canvas>
    Then in another component using a web service, I place:
    <mx:HTTPService
    id="os_downloads"
    url="
    http://publishingdynamics.com/service.asmx?start_date={datebar.sdate}"
    useProxy="false">
    Where {datebar.sdate} is the variable I'm referencing to get
    a value from. I get a constant error doing this. I've tried several
    varitions. I can successfully create a public variable in the same
    manner not using a form value and get the component to display that
    variable using the same syntax, where I reference the source
    component like: {datebar.myvar} so I know the namespace referene
    works.
    Admittedly I'm not a very good ActionScripter...

  • Is it crazy to mix java 2d with ready to use component?

    Hi, friends,
    I searched here and there in libraries for days. but I still din't find a sample or even an idea to mix java 2d with ready to use component.but, it should be able, should not it?
    I want to create a button with 4 icons surrounding by. I would like to drawing the 4 icons with paint method in componentUI but I want to use a button inside my UI. I don't want to create the whole button my self. Are there any good ideas for that?
    The main idea is to mix a 2d graphics with exiting component. any samples or hints?

    hi,
    what I mean is:
    Suppose we run the hello world applet: we draw string on the graphics. but now i want to add a button just inside the graphics. so i click the button, the color of hello world will change. I didnot add the button outside the graphics. are there any special way to clip an area and add the button in?
    Thanks

  • Advice with Flex-Java

    Hi All,
    I need a little help, I'm starting with Flex and Java, I've experience with php-flex and i need to make a Flex-Java J2ee application using MySql and store procedures... and what i'm asking is that you put me on the right position...
    where can i start ... please tell me what to use i'm totally lost.. on this... what can i use.... please give me any advice....
    Well i'll wait for all your advices....
    Thanks a Lot.... and regards...
    Cesar Glez.

    Here are some great links that will answer your question:
    http://www.adobe.com/devnet/flex/flex_java.html
    http://learn.adobe.com/wiki/display/Flex/Flex+and+Java
    http://www.adobe.com/devnet/flex/articles/java_flex.html
    http://www.javaworld.com/javaworld/jw-01-2009/jw-01-javaee-flex-1.html
    If this post answers your question or helps, please mark it as such.

  • Replacing WebDynpro for Java with Flex 3 Apps

    Hi there, I am new in developing Flex 3 app.
    I know how to use web Services with Flex and so on. But the my question how can I replace WebDynpro Apps in SAP NetWeaver portal. What do I have to do?
    How can I integrate Flex App in Portal without using the Visual Composer?
    Best regards Jay

    Hi Jan,
    Below check the below weblog. It may help you.
    Using Flex in SAP Web applications (without Adobe Flash Islands)
    Raghu

  • Update either html site or another flex component with Data from ESRI Flexviewer

    Hello all,
    What I have is a basic flex mapping application that enables a user to update a feature (that is referenced to a ArcGIS server SDE database) by clicking on a the map.  Once the feature is added to database it updates a total feature count label.text.  What I need to do is somehow reflect this same number in a dreamweaver site through html or create another flex component that can be added to dreamweaver html as a .swf.  Any comments or suggestions would be greatly appreciated!!
    Thank you!

    Hello all,
    What I have is a basic flex mapping application that enables a user to update a feature (that is referenced to a ArcGIS server SDE database) by clicking on a the map.  Once the feature is added to database it updates a total feature count label.text.  What I need to do is somehow reflect this same number in a dreamweaver site through html or create another flex component that can be added to dreamweaver html as a .swf.  Any comments or suggestions would be greatly appreciated!!
    Thank you!

  • Flash paper with flex application

    hi, i m flex develper and can any one tell me how can i
    convert programmatically the doc file onto a .swf file and display
    the content of .docfile into flex component?

    Flash (swf) Files had a built in option to be exported as class files way back during Flash 2.0's heyday. Macromedia opened up the swf format quite a while ago. You can probably use Java|C++ to create an swf if you really wanted to. There is a PHP package called Ming that with produce swf's on the fly (similar to Macromedia's generator). As far as scripting a flash obj(swf), you can do that with Javascript from an HTML page, but this isn't the place for that information.
    Good Luck,
    -Jack

Maybe you are looking for

  • IPhoto not printing properly to P-10

    I downloaded the correct driver for my Olympus P-10 digital printer, and iPhoto recognizes it. The printer prints fine directly from the camera, however, when I try to print an edited photo from iPhoto 5.0.4, the full image does not print. A portion

  • How do I reinstall Bridge CS4?

    I was cleaning up my hard drive and deleted a large Bridge archive/temp file, among other things. In doing so I seem to have broken Bridge CS4, though Bridge CS3 still works. Our work computers are running CS3 for the most part, though I upgraded jus

  • Home Directory Icon in dock

    Can any one tell me how to restore the home directory icon in the dock? Regards Bj.

  • Certificates in Keychain...

    I need to know what the following are and what they are for: DoD Root CA 2 DOD EMAIL CA-24

  • Installed v8 and now itunes won't open

    I upgraded to V 8 and now itunes won't open. Saying my audio configuration not right. Anyone know how to fix this?