FlashCanvas Pro 1.2.1 is released
Submitted by Shinya Muramatsu on June 14, 2010 - 19:57
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) {
option.turbo = false;
option.delay = 30;
}
I will continue to seek for a better solution.