Flex 3 to Flex 4 migration issue (Flex charting and Special char)

Hi All,
I have migrated Flex 3 to Flex 4 and in Flex charting axis label, I am not able to see less then sign ( < ). I tried to use &lt;  but it's not working, I have attached sample code.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:mx="library://ns.adobe.com/flex/mx"
                minWidth="955" minHeight="600" initialize="init()">
     <fx:Declarations>
         <s:SolidColor id="s1" color="#738994"/>
         <mx:SeriesInterpolate id="seriesInterpolate" duration="800"/>
         <mx:SeriesSlide id="seriesSlide" duration="800" direction="up"/>
         <mx:SeriesZoom id="seriesZoom"
                        duration="1000"
                        minimumElementDuration="50"
                        elementOffset="50"
                        verticalFocus="top"
                        horizontalFocus="left"
                        relativeTo="chart"/>
     </fx:Declarations>
     <fx:Script>
        <![CDATA[
             import mx.collections.ArrayCollection;
             [Bindable]
             public var student:ArrayCollection = new ArrayCollection([
                 {Stream: "Management", Girls:1000, Boys:1400, TotalStudent:2400},
                 {Stream: "&lt;Computer Science", Girls:800, Boys:1200, TotalStudent:2000},
                 {Stream: "< Mechanical", Girls:200, Boys:1500, TotalStudent:1700},
                 {Stream: "> Electical", Girls:800, Boys:850, TotalStudent:1650},
                 {Stream: "Electronics", Girls:500, Boys:1000, TotalStudent:1500},
                 {Stream: "Civil", Girls:300, Boys:900, TotalStudent:1200}
             private function update():void {
                 var str:String = catfDP.selectedItem.data;
                 if(str == "Girls"){
                     cs1.yField = str;
                     cs1.displayName = str;
                     cs1.setStyle("fill" , "738994");
                 }else if(str == "Boys"){
                     cs1.yField = str;
                     cs1.displayName = str;
                     cs1.setStyle("fill" , "999990");
                 }else{
                     cs1.yField = str;
                     cs1.displayName = str;
                     cs1.setStyle("fill" , "406374");
             private function init():void{
                 catfDP.selectedIndex= 0;
                 effectDP.selectedIndex= 0;
         ]]>
     </fx:Script>
     <s:Panel title="Chart Effect Example" width="627" height="565">
         <s:layout>
             <s:VerticalLayout/>
         </s:layout>
         <mx:ApplicationControlBar dock="true" width="625" height="82">
             <mx:Form>
                 <mx:FormItem label="Category Field:">
                     <s:DropDownList id="catfDP" change="update();" prompt="--Select--" width="136"
                                     height="19">
                         <s:dataProvider>
                             <mx:ArrayList>
                                 <fx:Object data="Girls" label="Girls" />
                                 <fx:Object data="Boys" label="Boys" />
                                 <fx:Object data="TotalStudent" label="TotalStudent" />
                             </mx:ArrayList>
                         </s:dataProvider>
                     </s:DropDownList>
                 </mx:FormItem>
                 <mx:FormItem label="Choose Chart Effect:">
                     <s:DropDownList id="effectDP" change="update();" width="136" prompt="--Select--">
                         <s:dataProvider>
                             <mx:ArrayList>
                                 <fx:Object label="seriesInterpolate" data="{seriesInterpolate}" />
                                 <fx:Object label="seriesSlide" data="{seriesSlide}" />
                                 <fx:Object label="seriesZoom" data="{seriesZoom}" />
                             </mx:ArrayList>
                         </s:dataProvider>
                     </s:DropDownList>
                 </mx:FormItem>
             </mx:Form>
         </mx:ApplicationControlBar>
         <mx:ColumnChart id="cchart"
                         dataProvider="{student}"
                         showDataTips="true"
                         width="621"
                         fontFamily="verdana" height="402">
             <mx:verticalAxis>
                 <mx:LinearAxis title="Number of Students" />
             </mx:verticalAxis>
             <mx:horizontalAxis>
                 <mx:CategoryAxis dataProvider="{student}"
                                  categoryField="Stream"
                                  title="Stream"/>
             </mx:horizontalAxis>
             <mx:series>
                 <mx:ColumnSeries id="cs1"
                                  xField="Stream"
                                  yField="Girls"
                                  displayName="Girls"
                                  fill="{s1}"
                                  showDataEffect="{effectDP.selectedItem.data}"/>
             </mx:series>
         </mx:ColumnChart>
         <s:HGroup>
             <mx:Legend dataProvider="{cchart}"
                        direction="horizontal"/>
             <s:VGroup>
             </s:VGroup>
         </s:HGroup>
     </s:Panel>
</s:Application>

Thank you very much for you answer.
I have solved this problem using Itemrenderer.
<?xml version="1.0" encoding="utf-8"?>
<s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:mx="library://ns.adobe.com/flex/mx"
                autoDrawBackground="true">
    <mx:Label htmlText="{data.text}"/>
</s:ItemRenderer>
and in chart I have used labelRenderer. in label I have used  &lt; for ( < ) sign.
<mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{expenses}"
                    categoryField="Month"
                    title="FY 2006"
                    id="a1"
                    />
            </mx:horizontalAxis>
            <mx:horizontalAxisRenderers>
                <mx:AxisRenderer labelRotation="45" axis="{a1}" labelRenderer="chase.BarChartLabelRenderer"/>
            </mx:horizontalAxisRenderers>
            <mx:verticalAxisRenderers>
                <mx:AxisRenderer labelRotation="45" axis="{a1}" labelRenderer="chase.BarChartLabelRenderer"/>
            </mx:verticalAxisRenderers>

Similar Messages

  • Ftp  and special chars

    I have a site which is user generated, and some of the files
    that people upload contain special chars for example 'my*pic.jpg'
    ... I am trying to backup my server with dreamweaver ftp, however
    it wont let me download files with chars like * in their names...
    is there any way to override this in dreamweaver? thanks to any
    responders.

    .oO(jonnybennett)
    >I have a site which is user generated, and some of the
    files that people upload
    >contain special chars for example 'my*pic.jpg' ...
    Uh, this would be an invalid filename on most filesystems.
    The asterisk
    is usually a wildcard character.
    >I am trying to backup my
    >server with dreamweaver ftp, however it wont let me
    download files with chars
    >like * in their names...
    Such files shouldn't exist at all. How were they uploaded?
    Micha

  • Macbook Migration Issues - Multiple Accounts and Applications Not Opening

    Hello,
    I used Migration Assistant via Ethernet cable to Migrate from a MacBook to a MacBook Pro and have encountered a few issues which are outlined in parts below. I followed the setup and migration steps from starting up me new computer for the first time
    Firstly my notebooks:-
    Old Computer - MacBook5,1, (2008 Aluminium case) running Mac OSX 10.6.8 (Snow Lepard)
    New Computer -MacBook Pro ( mid 1012)  running Mac OSX 10.6.8 (Lion)
    Issues:-
    1. User Acounts:
    I now have 2 accounts on my new MacBook Pro. (I only want one). Some application were transferred to the first account, and the second account all files and applications were transferred. How do i get to have just one account, the one from my old computer?
    2. Applications:
    Office for Mac 2008, These are present in my new MacBook Pro under the 2nd account along with all my document files. Yet when i try to open a File or one of the Office apllication such as Entourage, Word or Excel, Microsoft Setup Assistant launches. It asks to if I want complete a survey,  the next step is "Getting Started" and it asks to "register" or just click Finish. Clicking Finish simply closes the Setup  assistant. Clicking Register takes me to the Office Mac website where is says " Registration no Longer required" Either way i can not open any of these programes.
    Other programes such as photoshop ask me to install Java Runtime, others require me to re regisiter with product key i no longer have, and some begin to open and close in a fraction of a second.
    What Steps do i need to take to make this work smoothly?
    Thanks in Advance.

    When I went to the 2012 MBP this is what I did for multiple accounts.  I tried Migration, several errors.  so I:
    1.  I installed from scratch. Creating my user names, ie user 1 and user 2.
    2.  After install was complete I ran updates since there are already updates to the 2012 machine.
    3.  I used time machine to move my work files, music etc over to each user.
    4.  I then installed the programs again.
    I know this is a long process but I have not had any issues.  For Office 2008 I would recommend going to 2010.  I have no issues with it doing the above steps. MS really doesn't support 2008 with Lion so that is one of the bigger issues.  Try MS knowledge base for other people who have issues with Office 2008..

  • Line chart and Bar char Mouse Over

    Hi All,
    I have to plot Bar chart with Material is on X-axis and Cost is on Y-axis, I am able to do that.
    But when mouse put over the bar in the chart it should be showing the Material Description .
    Could you please any one help me.
    Material   Material Desc    Cost($)
    10000      xxxxxxxxx       10,000
    10001     xxxxxyyyyy      10,000
    Thanks
    Muvva

    Hi,
    I think, there is no direct solution.
    There is a workaround.
    1. Disable mouse over Test.
    2. Enable drildown on mouse over and use that index to identify column which user selected.
    3. Display Material Description and Value using label components.
    But the issue is ,we have to identify a placeholder in graph to display these values.
    Regards
    Baby

  • Special Characters issue in DEV and QAS

    Hi,
    I am uploading a file that has special characters (Japanese).
    In the DEV system the special character is converted to #. Which the business wants.
    In QAS system the special character is not converted and is as it is, which makes the business users difficult to find out if any speical characters are there and they don't want the special character as it is
    The file consists millions of record with a possibility of four or five records with special characters
    The special characters on keyboards is not an issue.
    The programs in DEV and QAS system are same and the file tested is also the same but different results.
    Tried in Tcode SNLS to find something but didn't know what and where to look into.
    What could be the issue in this? Looks like this is Basis issue but would like to know if anyone can let me know.......
    Regards
    Sandeep

    Hi ,
    i want to check ur open dataset statement in the program which is being used here if at all in ur case.
    Can you please check the relavant code page in both the D and Q systems and search with the appropriate hexa decimal values(for the special characters ) in both the systems ..
    u can use code page by tcode scp ..
    ex -> as u say a special char sp1 is having entry in q and code page which is being used (like 4200 )
    is not having in d03 .
    then if in d03 this page has no entry then it shows as # , since it is showing in q then it has an entry over there. this is my guess..
    so if at all the client wants not to see this special char's , u need to remove them from this code page.. and check ..
    Cant say if this can solve but u can take this as one more way of dealing with code pages  and special chars....
    br vijay..

  • Issues migrating from Flex Builder 3 to Flash Builder 4.5

    Migrating from Flex Builder 3 (SDK 3.5) to Flash Builder 4.5 (SDK 4.5). Using Flex 3 compatibility mode. Flash Player 10.2. MX only components set.
    Issue 1. A DataGridColumn error per:  Description Resource Path Location Type
    Declaration of style 'direction' conflicts with previous declaration in C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\sdks\4.5.0\frameworks\libs\mx\mx.swc(mx.controls.dataGridClasses:DataGridColumn). SPT_GUI  Unknown Flex Problem
    Issue 2. Using Cairngorm 2. Have a class 'Bindable] public class GuiModel implements ModelLocator'. Now getInstance() is not defined per: private var model : GuiModel = GuiModel .getInstance(). Does Cairngorm 3 have to be used with Flash Builder 4.5?
    What has to be done to resolve these issues?

    Issue 2: Have you defined the static variable to hold the instance of the model locator? Also, have you defined a static method to return the model locator's instance?

  • [svn:osmf:] 17162: config file and relevant changes for flex sdk3 to flex sdk 4 migration

    Revision: 17162
    Revision: 17162
    Author:   [email protected]
    Date:     2010-08-02 18:31:23 -0700 (Mon, 02 Aug 2010)
    Log Message:
    config file and relevant changes for flex sdk3 to flex sdk 4 migration
    Modified Paths:
        osmf/trunk/apps/certification/zeri/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestR unnerBasePresentationModel.as
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/DynamicStreamingSample-build-con fig.xml
        osmf/trunk/apps/samples/framework/ExamplePlayer/ExamplePlayer-build-config.xml
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindowLayout.mxml
        osmf/trunk/apps/samples/framework/MediaContainerSample/MediaContainerSample-build-config. xml
        osmf/trunk/apps/samples/framework/MediaContainerUIComponent/MediaContainerUIComponent-bui ld-config.xml
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaCOntainersSample -build-config.xml
        osmf/trunk/apps/samples/framework/OSMFPlayer/OSMFPlayer-build-config.xml
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/AkamaiPluginSample-build-config.xml
        osmf/trunk/framework/OSMF/osmf-build-config.flex
        osmf/trunk/framework/OSMF/osmf-build-config.xml
        osmf/trunk/framework/OSMFAIRTest/OSMFAIRTest-build-config.xml
        osmf/trunk/framework/OSMFIntegrationTest/osmfintegrationtest-build-config.xml
        osmf/trunk/framework/OSMFTest/OSMFTest.mxml
        osmf/trunk/framework/OSMFTest/osmftest-build-config.flex
        osmf/trunk/framework/OSMFTest/osmftest-build-config.xml
        osmf/trunk/libs/samples/ChromeLibrary/ChromeLibrary-build-config.xml
        osmf/trunk/libs/samples/Syndication/syndication-build-config.flex
        osmf/trunk/libs/samples/Syndication/syndication-build-config.xml
        osmf/trunk/libs/samples/VAST/vast-build-config.flex
        osmf/trunk/libs/samples/VAST/vast-build-config.xml
        osmf/trunk/libs/testing/NetMocker/netmocker-build-config.xml
        osmf/trunk/libs/testing/StrobeUnit/strobeunit-build-config.xml
        osmf/trunk/plugins/samples/SMILPlugin/SMILPlugin-build-config.xml
    Added Paths:
        osmf/trunk/apps/certification/zeri/FlexUnit4/flexunit4-build-config-10-1.xml
        osmf/trunk/apps/certification/zeri/FlexUnit4UIListener/flexunit4uilistener-build-config-1 0-1.xml
        osmf/trunk/apps/certification/zeri/ZeriCertificationPlayer/zericertificationplayer-build- config-10-1.xml
        osmf/trunk/apps/certification/zeri/ZeriCertificationTest/zericertificationtest-build-conf ig-10-1.xml
        osmf/trunk/apps/certification/zeri/ZeriCertificationUtils/zeri-certification-utils-build- config-10-1.xml
        osmf/trunk/apps/samples/framework/MediaContainerUIComponent/MediaContainerUIComponent-bui ld-config-10-1.xml
        osmf/trunk/framework/OSMF/osmf-build-config-10-1.xml

    Revision: 17162
    Revision: 17162
    Author:   [email protected]
    Date:     2010-08-02 18:31:23 -0700 (Mon, 02 Aug 2010)
    Log Message:
    config file and relevant changes for flex sdk3 to flex sdk 4 migration
    Modified Paths:
        osmf/trunk/apps/certification/zeri/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestR unnerBasePresentationModel.as
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/DynamicStreamingSample-build-con fig.xml
        osmf/trunk/apps/samples/framework/ExamplePlayer/ExamplePlayer-build-config.xml
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindowLayout.mxml
        osmf/trunk/apps/samples/framework/MediaContainerSample/MediaContainerSample-build-config. xml
        osmf/trunk/apps/samples/framework/MediaContainerUIComponent/MediaContainerUIComponent-bui ld-config.xml
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaCOntainersSample -build-config.xml
        osmf/trunk/apps/samples/framework/OSMFPlayer/OSMFPlayer-build-config.xml
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/AkamaiPluginSample-build-config.xml
        osmf/trunk/framework/OSMF/osmf-build-config.flex
        osmf/trunk/framework/OSMF/osmf-build-config.xml
        osmf/trunk/framework/OSMFAIRTest/OSMFAIRTest-build-config.xml
        osmf/trunk/framework/OSMFIntegrationTest/osmfintegrationtest-build-config.xml
        osmf/trunk/framework/OSMFTest/OSMFTest.mxml
        osmf/trunk/framework/OSMFTest/osmftest-build-config.flex
        osmf/trunk/framework/OSMFTest/osmftest-build-config.xml
        osmf/trunk/libs/samples/ChromeLibrary/ChromeLibrary-build-config.xml
        osmf/trunk/libs/samples/Syndication/syndication-build-config.flex
        osmf/trunk/libs/samples/Syndication/syndication-build-config.xml
        osmf/trunk/libs/samples/VAST/vast-build-config.flex
        osmf/trunk/libs/samples/VAST/vast-build-config.xml
        osmf/trunk/libs/testing/NetMocker/netmocker-build-config.xml
        osmf/trunk/libs/testing/StrobeUnit/strobeunit-build-config.xml
        osmf/trunk/plugins/samples/SMILPlugin/SMILPlugin-build-config.xml
    Added Paths:
        osmf/trunk/apps/certification/zeri/FlexUnit4/flexunit4-build-config-10-1.xml
        osmf/trunk/apps/certification/zeri/FlexUnit4UIListener/flexunit4uilistener-build-config-1 0-1.xml
        osmf/trunk/apps/certification/zeri/ZeriCertificationPlayer/zericertificationplayer-build- config-10-1.xml
        osmf/trunk/apps/certification/zeri/ZeriCertificationTest/zericertificationtest-build-conf ig-10-1.xml
        osmf/trunk/apps/certification/zeri/ZeriCertificationUtils/zeri-certification-utils-build- config-10-1.xml
        osmf/trunk/apps/samples/framework/MediaContainerUIComponent/MediaContainerUIComponent-bui ld-config-10-1.xml
        osmf/trunk/framework/OSMF/osmf-build-config-10-1.xml

  • Xcelsius 2008 sp3 and Flex 2.0.1 Hotfix3 - Flex 3 Charts

    Hello,
    I'm working inserting some Flex charts into Xcelsius, but I've been having some compatibility problem. Let me explain:
    I have Xcelsius 2008 sp3 and I'm working in Flex builder 3 but when I was creating the xcelsius-objects project. I selected to compile the project the Flex builder 2.0.1 hotfix 3 SDK.
    When I have used this SDK I have not all the capabilities in the column chart that I need, some labels option in ColumnChart doesn't work, but when I selected Flex 3 SDK to compiled the entire ColumnChart object doesn't appear. If I try to insert the project builted in  Flex 3 SDK when I open Xcelsius, I receive a lot of Exceptions, like to Xcelsius didn't found some clases. If I insert the project built on Flex 2.0.1 Hotfix 3 SDK the capabilities that I need don´t work.
    Please Help me because this is driving me crazy.
    Thanks to everyone

    Hi,
    Xcelsius 2008 is built using Flex SDK 2.0.1 Hotfix 3 so that is the version of Flex SDK you have to use because it is not possible to mix and match versions of the Flex SDK in a SWF.
    So to create your add-ons you cannot use any Flex 3 or Flex 4 SDK components, only Flex 2.
    Regards
    Matt

  • Google Interactive Charts and Flex

    Hi,
    Has anyone successfully implement Google Interactive Charts into Flex?  I believe Google Interactive Charts uses JavaScript but the output is in Flash format.
    http://code.google.com/apis/visualization/documentation/gallery/geomap.html#Configuration_ Options
    Please help!

    Hi Alex,
    1- Yes, I downloaded the fxp from the bug https://bugs.adobe.com/jira/browse/FLEXDMV-2513. Compiled with 4.5 and I get what you see in the screen cap.
    2 - For 4.1, I was able to solve my problem by unchecking "Use Flash Text Engine in MX Components" and using my own MXFTEText.css which excluded the use of RTE in LegendItem and DualStyleObject. This is not ideal because now those label will never handle RTL. It does however stop the majic dissapearance of my chart legends and axis labels...
    Hopefully this will get attention one day
    cheers

  • Flex 3 FB4 Migration Tip

    Thanks to the help of several Adobe members I was able to successfully import a styled (.css) Flex 3 project into Flash Builder 4 and have it retain its aesthetic and functional attributes. I wanted to take a moment and share what I found with everyone, in case you may find yourself confronted with the same issues.
    1.First, to bring in my Flex 3 project to Flash Builder 4 I needed to add a single line in my .css file:
    @namespace "library://ns.adobe.com/flex/halo";
    2. Next I had to add an Additional Compiler Argument. (Properties > Flex Compiler > Additional compiler arguments):
    -theme=${flexlib}/themes/Halo/halo.swc
    Basically there were a number of aesthetic breaks due to FB 4 (and newer SDKs) using the Spark component set. To ensure you Flex 3 application looks the same with the .css style, you'll need to specify that the application uses the Halo theme as the foundation.
    I'm including a photo showing several aesthetic issues I had under Flash Builder 4 and the newer SDKs prior to this solution.
    All of these have been fixed. Thanks again to all those at Adobe for the great support.
    Jason Villmer
    www.lucid.it
    [email protected]

    Glenn,
    There is always the lure to immediately embrace the newest 
    technologies. I'd been considerably eager to see what Flash Builder 
    had to offer and it does, indeed, provide a broader landscape of 
    possibilities. After everything has been said and done I believe the 
    Flash Builder team should consider a Migration Assistant to help 
    transition Flex 3 projects to the Flash Builder 4 code architecture. 
    Upon importing a Flex 3 project the user could be asked if they would 
    like to formally convert the entire codebase into a native FB 4 
    project. It would then go through the document, possibly stopping 
    occasionally asking for approval to do something, and update all 
    relevant code so it becomes a true FB4 app. There could also be a list 
    provided after this conversion that specifically outlines all changes 
    made.
    I've been working in Flex for a number of months now. Prior to this I 
    was using the Flash IDE. Upon exploring Flex, the advantages were 
    clear and substantial. Flex is absolutely outstanding for both 
    designers and developers in my opinion. The issue, however, is that 
    Flex users should be, above all, anxious to migrate to Flash Builder 
    4, not worried. If a Flex 3 developer has finished a huge project 
    (like you and I apparently) in Flex 3 we shouldn't have to go through 
    all of our code trying to figure out what needs to be changed. There 
    should be something that helps developers do that automatically.
    Technology is relentlessly changing. Monthly, weekly, daily even. 
    That's great but for something like Flex, new versions shouldn't have 
    developers searching everywhere trying to find patchwork solutions.
    The folks over at the Flash Builder 4 team have been great assisting 
    both myself and the multitude of other users with their issues, so I'm 
    pretty confident things will unfold well.
    Jason Villmer
    www.lucid.it
    [email protected]

  • [svn:cairngorm3:] 14661: Migrate to Flex SDK 3.5

    Revision: 14661
    Revision: 14661
    Author:   [email protected]
    Date:     2010-03-10 04:58:46 -0800 (Wed, 10 Mar 2010)
    Log Message:
    Migrate to Flex SDK 3.5
    Modified Paths:
        cairngorm3/trunk/build-parent/pom.xml

    There is no due date.  Adobe wants all future players to run all existing content.  Extensive testing is done before each release to try to ensure that.  Adobe in general will only purposefully break content if required to fix a security issue.  I’m pretty sure you aren’t the only one maintaining a Flex 3 app for years to come.
    And don’t forget, there is continuing development on the Flex 4 code at Apache.  If enough folks showed up on the Apache Flex mailing lists wanting to make improvements to Flex 3, such a thing could happen there too.  At Apache, development is completely community-driven.
    And also, there is progress being made on FlexJS, a next-generation Flex SDK that cross-compiles to HTML/JS/CSS.  That could make your transition off of Flash much easier.  Volunteers are always welcome to help accelerate its development
    -Alex

  • Problem while migrating to Flex 4

    Hi,
    I am moving my application to Flex 4 from Flex 3. I have few pages in my application where I have charts. Those are pages are not loading at all. All the other pages are working fine. Can someone help me in this respect.
    Thanks in advance,
    Nirmal Kumar Bhogadi.

    No I am not embedding any fonts. To test, I just declared <mx:ColumnChart/> in one of the pages and the page did not load at all. Is there anything that I need to add while migrating to Flex 4.

  • Migration to flex 3.3

    Hi,
    I am migrating a project from Flex 2.0.1 to Flex 3.3 (very behind I know - should I go straight to Flex 4?).
    Anyway, I installed the Flex 3.3 SDK, including the data visualisation components, recompiled the application and all ran fine, using LCDS 2.5.1 and JRUN 4. (I am not using Flex Builder).
    Then I added references to AdvancedDataGrid in ActionScript code in my application and tried to recompile. These references were undefined. What else do I have to download and install to be able to use the Advanced DataGrid in ActionScript?
    I tried to install LCDS 2.6.1 with Tomcat, but there didn't seem to be an option to run it with JRUN 4 and my application will not run with it at present.
    I am confused. Can anyone help please?
    Thanks.
    Annette

    Hi,
    Thx Alex for your help and quick reply, I think I have found the problem in my project. Actually we are using swfobject in our index.jsp to call my .swf file.
    We are using parameter when we called our .swf from Tomcat :
         /app/flex/app.swf?server=http://localhost:8080/app&flexroot=/flex&lang=en_US&jre=1.6.0.11&flashVersion=10.0.32
    It's working in Flex2, but when we're using Flex3 it caused "VerifyError: Error #1014: Class mx.core::Application could not be found". My colleage said this is URLEncode problem and I have to replace '/' with '%2F'  and ':' with '%3A'. So we have to use syntax like :
         /app/flex/app.swf?server=http%3A%2F%2Flocalhost%3A8080%2Fapp&flexroot=%2Fflex&lang=en_US& jre=1.6.0.11&flashVersion=10.0.32
    The strange thing is, why it's working in Flex2.. Thanks again for your help
    Andre

  • [svn:cairngorm3:] 19478: -General: Reverted migration to Flex 4. 5 back to Flex 4.1.

    Revision: 19478
    Revision: 19478
    Author:   [email protected]
    Date:     2010-12-20 03:02:48 -0800 (Mon, 20 Dec 2010)
    Log Message:
    -General: Reverted migration to Flex 4.5 back to Flex 4.1. -Insync Sample: Fixed Insync Build error. -Navigation: added runtime navigation feature for SelectedChildWaypoint (default Waypoint). (work in progress).
    Modified Paths:
        cairngorm3/trunk/libraries/Contract/.actionScriptProperties
        cairngorm3/trunk/libraries/ContractTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Integration/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationDMS/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationParsley/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.flexLibProperties
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/waypoint/decorat or/ContainerDestinationRegistration.as
        cairngorm3/trunk/libraries/NavigationParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationParsleyTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/NavigationParsleyStates.mxml
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/NavigationParsleyToggleButtonBar.mxm l
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/states/presentation/ContentPM.as
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/togglebuttonbar/presentation/Content PM.as
        cairngorm3/trunk/libraries/NavigationSpringAS/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSpringASTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSwiz/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSwizTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Observer/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Persistence/.actionScriptProperties
        cairngorm3/trunk/libraries/PersistenceTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PersistenceTest/src/AllTests-app.xml
        cairngorm3/trunk/libraries/PersistenceTest/src/IntegrationTests-app.xml
        cairngorm3/trunk/libraries/PersistenceTest/src/PersistenceSample-app.xml
        cairngorm3/trunk/libraries/PersistenceTest/src/UnitTests-app.xml
        cairngorm3/trunk/libraries/Popup/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Task/.actionScriptProperties
        cairngorm3/trunk/libraries/TaskTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Validation/.actionScriptProperties
        cairngorm3/trunk/libraries/ValidationTest/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.flexProperties
    Added Paths:
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/index.template.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/ObserverTest/html-template/swfobject.js
    Removed Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/.settings/com.adobe.flexbuilder.project.pre fs

    Simeon,
    Thanks for that, I had a brainfart and forgot you can have the properties defined in that manner.  I changed it but it still wasn't working which made me realize I had to change the backgroundColor property on the view in Away3D.  I realized this after trying the params for the class and then not adding the view (which had a white bg) and then i looked at the docs and bam, there it was.  Thanks!
    Matt

  • [svn:cairngorm3:] 19481: -General: Reverted migration to Flex 4. 5 back to Flex 4.1.

    Revision: 19481
    Revision: 19481
    Author:   [email protected]
    Date:     2010-12-20 03:53:00 -0800 (Mon, 20 Dec 2010)
    Log Message:
    -General: Reverted migration to Flex 4.5 back to Flex 4.1. -Insync Sample: Fixed Insync Build error. -Navigation: added runtime navigation feature for SelectedChildWaypoint (default Waypoint). (work in progress).
    Modified Paths:
        cairngorm3/trunk/libraries/lib-parent/pom.xml

    Simeon,
    Thanks for that, I had a brainfart and forgot you can have the properties defined in that manner.  I changed it but it still wasn't working which made me realize I had to change the backgroundColor property on the view in Away3D.  I realized this after trying the params for the class and then not adding the view (which had a white bg) and then i looked at the docs and bam, there it was.  Thanks!
    Matt

Maybe you are looking for

  • How do I install photoshop 3.0 onto windows 7 pro? Error message says it's not compatible. I'm upgrading from Windows XP.

    I have to start with my first photoshop to upgrade to my latest version, but I can't because of incompatibility issues.  Is there a way around this?  Is there something that I need to change in windows 7 pro to accept photoshop 3.0?

  • Why do some Apps stop working after synching?

    Each time I synch my iPhone 4S with iTunes, a number of recently added apps won't work.  They only "shudder" but won't open.  They are however, on the list with the other open apps.  Also, My phone keeps telling me that 7 apps didn't not synch and th

  • Paramter setting in URL in the case of HTTP receiver adapter

    I have the following requirment: Can you anyone please help me how to define DATATYPE and configure in HTTP adapter: The web page is developed in JSP page its body contains parameter(for example:<textarea name="xml" cols="70" rows="150" wrap="off">)

  • Hp photosmart pro b8350

    i have just got new laptop it a sony vaio full hd and have set printer to it ,but when i print pics they come out to dark,on old pc they are perfect thats on vista im now on windows 7 , when i put it on new pc it found latest drivers and installed on

  • ICF Connector issue

    I am trying to create new connector for testing OIM connector. I have developed a sample application and deployed on Connector Server. Please can you let me know where I am doing wrong. Am I passing the wrong key to the program. Steps followed to sta