Flex 2 charting license watermark issue

We've purchased the flex 2 builder and flex charting. I've
installed the serials and all works fine when the application is
build using flex builder. The watermark is removed. When I build
the application using command line (which points to same SDK as in
flex builder), the watermark remains? Does anyone know how to
resolve this issue or if this is a bug?
Thanks.

Hi,
I had the same problem and I am also using Maven instead of
Ant to build.
I managed to workout that you can add the mxmlc command line
argument, "-licenses.license charting XXXXXXXXXXX", to the
"flex-config.xml" using the following (Note: add it outside of the
<compiler> tag):
<licenses>
<license>
<product>charting</product>
<serial-number>XXXXXXXXXX</serial-number>
</license>
</licenses>
By doing this I could continue to build my Flex code through
maven.

Similar Messages

  • Flex charts license watermark

    Hi all, my Flex Builder was originally Flex 2, for which I had a separate license for the charts option. I upgraded to FB3 which only shows one license now ("professional edition - upgrade"). Recently I had to reinstall FB3 - no problem with that. However I also have ILOG Elixir. I added the SWCs for that to a project originally created with FB2. I got a warning about not being able to open the project in older versions - no problem, I thought. But not the charts in my design view show the "data vizualisation - trial" watermark. When I run them they look OK. How can I get rid of this watermark?
    Thanks
    Martin

    What SDK are you using? If after reinstalling FB you are using anything other than the standard SDK that was installed, like 3.4, you may need to download the charting SDK:
    http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Flex charting licensing

    if i buy the charting component for $299 is this unrestricted
    use, or does it depend on how many clients i expect to serve or how
    many servers the charts will make calls to?

    Unrestricted - your apps will still be deployed as SWF's,
    like with non-charting Flex apps.
    You may want to check out the Flex 3 pricing structure, it's
    not something I've studied myself, but I know charting is packaged
    in a "professional" package, it may be more worth your while
    waiting until FB 3 is available.
    Still, the answer to your original question is that there are
    no restriction.
    Cheers,
    David

  • 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>

  • Adobe charting trial watermark

    I am using Adobe Flex Builder to develop some RIA apps.
    Though I have the right serial no. for both the builder and
    charting the watermark doesnot seem to go away!!! I have tried
    uninstalling and reinstalling the whole suite and I have also tried
    to regenrate the chartSOurce as follows but in vain:-
    C:\Program Files\Adobe\Flex Builder 2\Flex SDK 2\lib>java
    -jar charting-source.j
    ar ../frameworks ../frameworks/source
    using license {fds=, flexbuilder=130714278475352271393397,
    charting=130144246705
    893769181665}, outputing to directory ../frameworks/source
    license is valid, extracting chartsSource to
    ../frameworks/source
    How can I get rid of the watermark???????????

    Thanks for the quick response, well I unfortunately
    downloaded the trial version first and then moved over to purchase
    the application. Not only have I changed the application the mxml
    files using charts and the rest of the stuff but I have uninstalled
    and reinstalled flex a few times as well. I even went as far as
    removing flex and deleting its registry references as well to
    install it again, but to no avail. ANother interesting thing that I
    have noted is that in the design mode in IDE itself, in some charts
    the watermark "Flex charting trial" appears while it doesnot appear
    in the rest. Though it appears in all of them at runtime. Isnt that
    interesting?

  • Flex 2.0.1 SDK Hotfix 1 breaking Flex Charting?

    Hi all,
    I applied the Flex SDK 2.0.1 Hotfix 1 listed in
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=kb401224
    to my Eclipse Flex Plugin environment with SDK 2.0.1. Unfortunately
    this seems to have broken flex charting with the following
    compilation errors in my project: Unable to resolve a class for
    ResourceBundle: charts.
    Now the SDK doesn't have the charts.swc file, so I tried
    copying over the charts.swc from my old SDK folder to the
    frameworks\libs folder under the new hotfixed SDK. This doesn't
    seem to fix the error however. It makes sense as charting it a
    separate component but maybe there is an upgraded chart version as
    well to work with the hotfixed SDK?
    Can anyone provide any guidance here, we are in dire
    straights. Any help is greatly appreciated!
    Regards,
    Jason

    Nope, doesn't say anthing about that
    To update the Flex Builder 2 Eclipse plug-in on Windows:
    1. Read the Flex Builder 2 Release Notes for any
    late-breaking information, updates, and known issues.
    2. Download the Flex Builder 2.0.1 Update Installer for
    Windows from the Adobe Flex Support Center.
    3. Open or double-click the installer executable file.
    4. Accept the license agreement and follow the prompts.
    5. If the installer detects multiple installations of Flex
    Builder 2, it prompts you for the location to be updated.
    6. Select which Flash Player 9 browser plug-in to install:
    * Internet Explorer
    * Netscape or Firefox
    Note: Flex Builder 2.0.1 and Flex SDK 2.0.1 can run with the
    base version of Flash Player 9 (Version: 9,0,16,0 dated 6/27/07).
    However, it's best to install the Flash Player 9 Update.
    7. (Optional) When the installation finishes, restart your
    computer to ensure that the updated Flash Player browser plug-in is
    enabled.
    8. Start Flex Builder.

  • Flex Charting

    I have recently purchased Flex Charting and added the serial
    number to the License Management section in Flex Builder 2 and now
    all of my charts that I have created previously are not displaying
    at all. I am getting an error telling me this
    "Severity Description Resource In Folder Location Creation
    Time Id
    1 Design mode: Error creating item ColumnChart in parent
    Canvas "Mortgage Calculator". Please choose Design > Refresh to
    refresh design mode. ProductDetails.mxml flexstore/productsView
    January 11, 2007 10:59:59 AM 2328"
    However the "refresh" option does nothing to solve the
    problem. Any idea what is wrong?

    What is the result format you're setting on your HTTPService
    request?
    "alice_data" <[email protected]> wrote in
    message
    news:g6novb$gpl$[email protected]..
    > Hi,
    >
    > I am wondering if anyone has tried to extract some
    information from the
    > database and make attempts of plotting it using Flex
    Charting. My code is
    > in
    > the following, and the database output brings back all
    the results I
    > desired,
    > but when I run the script, I was given the following
    error:
    >
    > ReferenceError: Error #1069: Property theta not found on
    > mx.rpc.http.mxml.HTTPService and there is no default
    value.
    This suggests that your HTTPService result is coming back in
    a format where
    you can't just get the properties off of it. You may need to
    set the result
    format to e4x, and since it is rss you may need to use one or
    more
    namespaces.
    HTH;
    Amy

  • Flex Chart -- Why is it so buggy and not getting fixed

    Hi
    We are trying to replace our realtime dashborad with flex
    3.x charts. We're getting hit with numereous memory issues such as
    http://bugs.adobe.com/jira/browse/FLEXDMV-1686
    http://bugs.adobe.com/jira/browse/SDK-15710
    Bugs have been filed since April and no updates from Adobe at
    all.
    At the current state Flex chart is only good for displaying
    static data that doesn't change.
    Why is this not in flex's high priority list given the fact
    that one of the major allure of flex (besides multi-media of
    course) right now is charting on the client to off load server
    load?
    Why is the flex charting group so unresponsive to bugs filed
    given the fact that people are shedding quite a bit of mulla to get
    this functionality??

    I'm attaching here the section from sdk-15710 (flex jira)
    where numerous people have been asking for the availability of this
    bug fix which have gone unanswered.
    Hoping someone from adobe will have some answers.
    eddie berman - [10/03/08 12:55 PM ]
    We're in need of this fix as well. Can you give some
    indication as to when it might be ready for consumption, or if it
    already is how we might be able to get it? (Also any comment on
    FLEXDMV-1882 would be appreciated as well). Thanks.
    [ Show » ]
    eddie berman - [10/03/08 12:55 PM ] We're in need of this fix
    as well. Can you give some indication as to when it might be ready
    for consumption, or if it already is how we might be able to get
    it? (Also any comment on FLEXDMV-1882 would be appreciated as
    well). Thanks.
    [ Permlink | « Hide ]
    kai mai - [10/22/08 06:11 PM ]
    any update on when this fix will go out and how we can help
    test this fix?
    [ Show » ]
    kai mai - [10/22/08 06:11 PM ] any update on when this fix
    will go out and how we can help test this fix?
    [ Permlink | « Hide ]
    Alan Carwile - [11/07/08 07:20 PM ]
    On the Adobe site, there are two bugs that seem to be the
    cause of the memory leak we are seeing when using the Flex Charting
    package with 3.0 Flex, running on Windows XP Pro SP2. Both are
    recorded as Fixed, and one is also noted as Closed. Still we are
    seeing what looks like one or both of these bugs.
    Adobe Flex community: How do we verify for certain that we
    are running versions of Flex containing these fixes? What version
    has fixes for both cases? How do we make sure?
    Please provide more information in the JIRA issues for both
    bugs. Obviously these are of interest to the developer community,
    given the follow-up posts and the number of Voters and Watchers.
    Thanks,
    Alan Carwile, Omneon, Inc. [email protected]
    http://bugs.adobe.com/jira/browse/SDK-15710
    Flex SDK
    Memory Leak in Charting
    Fixed, Closed
    Votes: 12
    Watchers: 19
    http://bugs.adobe.com/jira/browse/FLEXDMV-1772
    Flex Data Visualization Components
    ARLabelData class in AxisRenderer.as is causing memory leak
    with every new update of dataProvider in ColumnChart
    Fixed, Resolved
    Votes: 1
    Watchers: 1

  • Flex Charting on Moxie  M2

    Hi,
    When I try to compile an application with Flex 2.0.1 compiler
    under Moxie, the Charts show "Charting trial mode". When I switch
    to Moxie Compiler, it disappears (I have a flex 2 and a Flex
    Charting Serial). How can I register my Flex Charting component for
    Flex 2 in Moxie ?

    Hi ArAgorrn,
    The reason for this behavior is that the license.properties
    file of Flex201 has not been updated. To fix this, follow the
    procedure mentioned in this blog post -
    registering-flexbuilder-with-serial-numbers-for-multiple-versions-of-sdk
    Thanks
    Raghu

  • Charting license for automated builds?

    Hi All,
    We have one charting license and two machines that perform
    continuous builds. Is there a way to use that one license on both
    these machines?
    Thank you,
    r.

    Actually, mxmlc and fcsh ARE standard Adobe products.  They come with the SDK.  More importantly, they are free, so you can compile your flex apps without a license key.  You could hack together a build server using a cron job to fire up a bash script to pull down your release from svn, then invoke the mxmlc compiler (./mxmlc ....) and deploy the file.  One of the projects I was able to build using Hudson/maven, I'm not sure on the specifics though.

  • Having trouble installing ProIX on new Windows 8 machine after XP crash.  Get almost ll of the way through and get an error box ... contact system support.  Only way out is to abort and then it un-installs.  Wondering if a licensing max issue since we did

    having trouble installing ProIX on new Windows 8 machine after XP crash.  Get almost ll of the way through and get an error box ... contact system support.  Only way out is to abort and then it un-installs.  Wondering if a licensing max issue since we didn't get an opportunity to uninstall off of crashed machine?

    Hey robr72339266,
    With a single user license, you can install Acrobat on maximum two computers, say, your laptop at work and desktop at office.
    But, you cannot use Acrobat on both the machines simultaneously.
    You will first need to deactivate Acrobat from the old machine, then install and activate the software on the new OS with the same serial key.
    Please Contact | Adobe to seek help on the same.
    Regards,
    Anubha

  • Save flex chart to server

    Hello All
    I am in need of your help in saving a flex chart on to the server. Basically I want to export the chart to excel, as I dont find any resource for Flash builder 4, SDK 3.5, I opted the option of 1. saving chart as image to server and 2. accessing that image file in my excel
    Any sample codes should be very helpful, as this is quite urgent. Thanks!

    The problem was, that it is not possible to see the pdf directly from transaction AL11.
    I used the transaction CG3Y to move the file from the server to my desktop, and there I can see the pdf file.
    Solved
    Thanks for the input.

  • Flex chart x-axis data spacing

    hello
    i am using flex chart line series and column series. i want
    to display 100 data points, with different dates along the x-axis,
    but i don't want all 100 points to be displayed at the same time as
    the x-axis dates will not be readable. i want to have a fixed space
    between each x-axis point and the user then scrolls along the
    chart.
    i read the API but do not see any way to add the x-axis
    spacing?
    also how i do put more data information, with each data point
    if a mouse if placed over it, not just the X & Y data points.
    thank you for any assistance.
    Tony

    thanks so much,
    The tip data solved my 2nd problem.
    Thanks for your suggestions to"
    i am using flex chart line series and column series. i want
    to display 100 data points, with different dates along the x-axis,
    but i don't want all 100 points to be displayed at the same time as
    the x-axis dates will not be readable. i want to have a fixed space
    between each x-axis point and the user then scrolls along the
    chart.
    i read the API but do not see any way to add the x-axis
    spacing?
    you mentioned about using min/max values on the x-axis. That
    is a good solution except i would then need to add buttons to say
    ,show the next 30 days.
    I really want to to show 90days of data data, with say 30
    days appearing at once, and the user just scrolls to see the rest
    of the days data without having to press buttons for more data. Any
    idea how i can do this?
    thanks
    Anthony

  • Flex chart how to put distance between x-axis data

    hello
    i am using flex chart line series and column series. i want
    to display 100 data points, with different dates along the x-axis,
    but i don't want all 100 points to be displayed at the same time as
    the x-axis dates will not be readable. i want to have a fixed space
    between each x-axis point and the user then scrolls along the
    chart.
    i read the API but do not see any way to add the x-axis
    spacing?
    thank you for any assistance.
    Tony

    I don't know what you mean then.
    If you set the min and max to be a certain number of days
    apart then you know the dates within those days will be displayed.
    That combined with the width of the chart will define how much
    space there is between x-axis points.

  • Flex chart x-axis spacing between data

    hello
    i am using flex chart line series and column series. i want
    to display 100 data points, with different dates along the x-axis,
    but i don't want all 100 points to be displayed at the same time as
    the x-axis dates will not be readable. i want to have a fixed space
    between each x-axis point and the user then scrolls along the
    chart.
    i read the API but do not see any way to add the x-axis
    spacing?
    also how i do put more data information, with each data point
    if a mouse if placed over it, not just the X & Y data points.
    thank you for any assistance.
    Tony

    thanks so much,
    The tip data solved my 2nd problem.
    Thanks for your suggestions to"
    i am using flex chart line series and column series. i want
    to display 100 data points, with different dates along the x-axis,
    but i don't want all 100 points to be displayed at the same time as
    the x-axis dates will not be readable. i want to have a fixed space
    between each x-axis point and the user then scrolls along the
    chart.
    i read the API but do not see any way to add the x-axis
    spacing?
    you mentioned about using min/max values on the x-axis. That
    is a good solution except i would then need to add buttons to say
    ,show the next 30 days.
    I really want to to show 90days of data data, with say 30
    days appearing at once, and the user just scrolls to see the rest
    of the days data without having to press buttons for more data. Any
    idea how i can do this?
    thanks
    Anthony

Maybe you are looking for

  • Solaris 10 and Linux dual boot

    I currently have Linux installed and would like to install Solaris 10 on the same system via a different H-drive. I would like to have both OS fully functional. I have loaded Solaris 10 CD1 but unable boot into solaris to complete installation. I hav

  • Converting InDesign CS3 files to Word Files

    I am running InDesign CS3 and I need to know the best way to convert an InDesign document to a Word Document 2003.

  • HR BaDI's

    Hi,   Does any one have good material for BaDI? Please send it to my email address: [email protected] Thanks Amar

  • Ipod service question-sad icon(what does apple do?)

    I recently sent my ipod 20 gig photo in to apple. It displayed the sad icon which many people are having problems with lately. I was wondering if anyone has sent their ipod in with this error and what exactly apple did. Did they send you a new 20 gig

  • International Shipping + Usage

    My dad is buying me an iPad, however he lives in the US and I am currently in the UK for university. I would like a US one because I want to be able to use the 3G when I go back to the States. If I get a UK one I would have to get a special internati