Archive for the ‘Flash platform’ Category

Good News: Google Chrome Now Comes With Flash Built In

Friday, June 25th, 2010

Robin Wauters from TechCrunch writes:

Last March, Adobe and Google jointly announced that Flash Player would soon come built in to the latter’s Chrome browser, eliminating the need for users to download, install and update it separately.

On Thursday evening, Google released Chrome 5.0.375.86 to the Stable channel on Linux, Mac, and Windows, with a fix for a number of security issues. More importantly, the integrated Flash Player has now been enabled by default.

As Stephen Shankland over at CNET points out, built-in Flash was previously only available in the developer and beta releases of the speedy WebKit-based browser, and the release to the Stable channel means the integrated plug-in is now available in its mainstream version.

The update comes a mere two days after Google re-enabled the integrated Flash Player plug-in by default in the Beta channel after disabling it for some time.

Not only is Google giving Adobe’s Flash technology another vote of confidence (Flash Player 10.1 for Mobile, which was announced earlier this week, will be rolled out on Android 2.2 phones first), but the integration also means any updates to Flash Player will be delivered directly via Google Chrome’s updating system, ultimately minimizing security risks that tend to surface when one uses outdated software and components.

Improved Charting in Oracle APEX

Thursday, June 24th, 2010

New version of Oracle APEX is available. A lot of new features >>

And… Improved Charting with Gantts and Maps

“The underlying charting engine has been upgraded to AnyChart 5.1 which is faster, provides better graphics, and decreases rendering time. Developers can take advantage of the many additional attributes to readily customize the appearance of their charts. Declarative support for project and resource Gantt charts together with flash Maps has also been incorporated.”

To view the new features in action, run the demonstration application.

AnyChart 5.1.1 - CSV Data Support, Flash CS3 Charts

Tuesday, February 3rd, 2009

Just in 10 days after the previous release - new 5.1.1 version has arrived. We’re happy to introduce several new features. “We’ve added feature-rich CSV support,” said Alex Batsuev, lead developer of AnyChart product.  “This feature began as a customer request.” It allows to make data file smaller and decrease loading time.  It is possible to reuse CSV tables in different series and dashboard views. Read more about CSV Data>>

CSV Import Adobe Flash integration Drag Ability for Scrollable Charts

Other AnyChart version 5.1.1 new features

  • Adobe Flash Integration 
    New Feature - A set of samples making possible the use of AnyChart Charts, Maps and Gauges in Flash CS3.
    Read more Flash CS3 Integration >>
  • Drag Ability for Scrollable Charts
    New Feature - Drag Ability for Scrollable Charts. You can configure chart to make it draggable when the chart area is zoomed.

Read more about AnyChart version history and plans for new upcoming releases. Feel free to contact us with your comments, ideas and suggestions.

AnyChart 5.1 - new chart types, new features, significant performance improvements, and many more…

Friday, January 23rd, 2009

We’re happy to announce the production release of AnyChart 5.1 - the most advanced flash charting component. Version 5.1 builds on the success of the earlier 5.0 offering by adding several new chart types, new features, significant performance improvements plus new advanced dashboard features and Adobe AIR support.

New chart types: TreeMaps, HeatMaps, Funnel Charts both in 2D and 3D, Accumulation Pyramid (also known as Pyramidal Funnel) both 2D/3D, 3D Pie and  Doughnut charts.

New features: Scrolling support,  Multiple X Axes both for Categorized and Scatter plots, Markers in Legend, Interactive Labels, Multiple Data Labels Support, Multiple Data Tooltips Support, Multiple Data Markers, Context Menu Localization, Axis Markers Styling Support.

Another exciting news - Now AnyChart is fully compatible with Adobe Air ™. Build your RIA or Desktop Application utilizing the power of AnyChart Flash Charting engine. Also all chart types can now be combined within interactive dashboard: all charts, gauges, maps, funnels.

And the last, but not the least - Significant Performance Improvements. (more…)

Creating custom design-time preview for Flex 3 components

Friday, February 29th, 2008

Sometimes it is necessary to create custom preview of the component in the Flex Builder “Design” view.
It is undocumented feature ;-)
I’ve found very interesting class in the Flex SDK 3: mx.core.UIComponentGlobals.

This class contains static field designMode:Boolean.

Just check that field in your component code.
You can download example component with the source code from here:
http://anychart.com/tips_and_tricks/designMode/DesignModeComponent.zip

Also you can download the usage sample:
http://anychart.com/tips_and_tricks/designMode/DesignModeComponentSample.zip

Running in the Flex Builder “Design” mode it shows AnyChart image. But when it runs in the flash player it shows only gray rectangle.

ActionScript 3 compiller - - bug

Tuesday, February 19th, 2008

We have found a nice bug in mxmlc compiller :-)

var a:Number = 10;
var b:Number = 20;
var c:Number = a - - b;
trace (c);

It’s correct! Result is 30. But mxmlc ant task doesn’t compile this code sometimes…

It’s very surprising bug.

Flash player 9: relative url with colon and dot signs

Thursday, November 1st, 2007

Interesting in URLLoader and URLRequest.

If you are trying to load file using relative URL, that contains colon (”:”) and dot(”.”) in param values, you receive security error:

e.g.:
var request:URLRequest = new URLRequest("/test.flash?p=smth::else");
or
var request:URLRequest = new URLRequest("./test.flash?p=smth::else");

are not valid URL’s for Flash Player because flash player doesn’t escape “:” in urls.

You should use absolute URL’s for it:

e.g.:

var request:URLRequest = new
URLRequest("http://localhost:8080/test.flash?p=smth::else");

ACPrintManager 0.1 - library for content control of printing from a browser with some bug fixes for Firefox and Internet Explorer

Saturday, October 27th, 2007

As I promised I’ve uploaded source code for solving the problem with flash content printing in Firefox and an example of its usage in Flash.

FFPrintFix library was extended and now it is called ACPrintManager. Now it is not only bug fix for printing, but also content control for printing from a browser.

See all details here:
http://www.anychart.com/blog/projects/acprintmanager/

Solving problem with printing Flash content in Firefox browser

Sunday, September 23rd, 2007

I will let out a secret: we have solved a problem with printing Flash/Flex applications in Firefox :)

Here is the article how you can use it. ;-)

UPD1: http://www.anychart.com/blog/2007/10/27/ac-print-manager/
UPD2: http://www.anychart.com/blog/projects/acprintmanager/
UPD3: LGPL license

(more…)