HTML5 Canvas for Internet Explorer via Flash

Dropdown Menu

FlashCanvas Pro 1.2.1 is released

What's new in FlashCanvas Pro 1.2.1?

  • Supported Flash Player 10.1.
  • Included one more Canvas game.

FlashVars does not work with Flash Player 10.1

Flash Player 10.1 (10.1.53.64) seems to have a bug that the value of FlashVars cannot be changed. That means we cannot use the turbo mode of FlashCanvas Pro.

So, as a quick fix for the problem, I disable the turbo mode when the version of Flash Player is more than 10. More specifically, I added the following code to flashcanvas.js.

if (FLASH_PLAYER_VERSION > 10) {

FlashCanvas Pro 1.2 and Flash Player 10.1

Today Adobe finally released Flash Player 10.1. But I noticed that FlashCanvas Pro 1.2 does not work with Flash Player 10.1 whereas the free edition of FlashCanvas works without problems.

I'll investigate the problem later. If you encounter the same problem with me, please add the following snippet to your code as a temporal fix for the problem.

if (typeof FlashCanvas != "undefined") {
    FlashCanvas.setOptions({
        turbo: false,
        delay: 30
    });
}

FlashCanvas Pro 1.2 is released

What's new in FlashCanvas Pro 1.2?

  • Added a code which emulates ExplorerCanvas library.
  • Implemented asynchronous data transfer via FlashVars.
  • Made it possible to use FlashCanvas library installed in other domain.
  • Optimized drawImage().
  • Optimized fillText() and strokeText().
  • Implemented setOptions() method to configure FlashCanvas.
    • "disableContextMenu" option
    • "turbo" option
    • "delay" option

FlashCanvas Pro 1.1 is released

What's new in FlashCanvas Pro 1.1?

FlashCanvas Pro 1.1 has several bug fixes, optimizations and additional features. The following is a list of those changes:

  • Various bug fixes in drawImage().
    • draw-image-flip.html, an example from ExplorerCanvas project, is now rendered correctly.
    • Images are rendered in the right order.
  • Optimize stroke().

FlashCanvas Pro 1.0 is released!

I am pleased to announce that today I released FlashCanvas Pro 1.0.

What is FlashCanvas Pro?

FlashCanvas Pro is a professional edition of FlashCanvas. It features:

  • Support almost all Canvas APIs including text, shadow and pixel manipulation.
  • Utilize Flash Player 10 features if available, that provides better performance and compatibility
    (Flash Player 9 is also supported).
  • Available free of charge for non-profit use. Commercial license is also provided.
Syndicate content