Converting your Flash Ads to HTML5 Canvas

The HTML5 Canvas document type and the associated design and performance capabilities in Flash Professional CC helps you create performance-optimized HTML5 creatives with ease. You can obviously create new ads targeting the HTML5 platform using Flash Professional CC, but you may also have have some existing Flash ads that you want to convert to HTML5 Canvas for targeting them for multiple platforms, especially mobile devices. Here is how you do it:

  1. Convert your ActionScript document to HTML5 Canvas document using the document type converter.
  2. Replace the ActionScript code commented out as reference in the actions panel with their HTML5 Canvas equivalents. You can use the HTML5 Canvas code snippets panel (Window > Code Snippets) in Flash CC 2015 to get started.

Now, let’s see this in action. We are going to convert a Flash ad to HTML5 Canvas.

Here is the ActionScript example:

Get Adobe Flash player
http://www.adobe.com/go/getflash

The converted HTML5 Canvas file should look like this:

Converting an ActionScript document and assets to HTML5 Canvas

  1. Download the BannerNewFeatures_AS3.zip file, extract the files, and open the BannerNewFeatures_AS3.fla file. You can preview the contents by opening BannerNewFeatures_AS3.swf.

  2. Click Commands > Convert to other document formats to convert the document to HTML5 Canvas document.
    https://blog.adobe.com/media_5cd545e1a0928023e7c11142613f721c9bfb64f5.gif

  3. In the Document Type Converter dialog box, select HTML5 Canvas and click Browse to select a location to save the converted FLA.

  4. Doctype-converter
    http://blogs.adobe.com/creativecloud/files/2015/07/Doctype-converter.png

  5. Click OK. The ad has now been converted in to HTML5 Canvas. Open the .html file in the output directory you specified in the previous step to check the converted output. You can see that all your art assets have been converted in to HTML5 Canvas. However, the ad runs in a continuous loop. This change happened because we do not automatically convert the ActionScript code to the equivalent JavaScript code.

Note: Flash Professional does not auto-convert any ActionScript code to JavaScript code because there is no foolproof way to get it completely right. However, our HTML5 Canvas (CreateJS) JavaScript APIs mimic ActionScript code fairly closely. We also have some built-in Code Snippets in Flash CC to help you get started with some commonly used actions.

Converting ActionScript code to JavaScript in your HTML5 Canvas document

  1. Click Window > Actions to open the Actions panel. All your ActionScript code in FrameScript are displayed as commented out to help you convert them to HTML5 Canvas.

  2. ActionScript code commented out
    http://blogs.adobe.com/creativecloud/files/2015/07/Commented-code.png

  3. ActionScript code commented out

  4. In the Actions panel, click the ActionScript code that you want to replace and type in the JavaScript equivalent (if an equivalent code snippet is available in the the HTML5 Canvas section of the Code Snippets panel, you can just double-click on it) For example, the following image shows that the stop () ; function that is commented out in ActionScript has been replaced with its HTML5 equivalent, **this.stop () ;
    **https://blog.adobe.com/media_aded0346281c36791113222031160765c26fee3d.gif

  5. Press Shift+Alt+F12 to publish and check your output.

  6. To see how all the ActionScript code in the example document were converted in to HTML5 Canvas, download BannerNewFeatures_Canvas.zip and open the BannerNewFeatures_Canvas.fla file. To view the final output in HTML5, download Published-Banner-HTML5.zip. and open the BannerNewFeatures_Canvas.html file.

Codes for commonly used actions

The following are some of the commonly used ActionScript codes and their equivalent JavaScript codes:

ActionScript
HTML5
mySymbol.x = 100; mySymbol.visible=true;
this.mySymbol.x = 100; this.mySymbol.visible=true;
ActionScript
HTML5
var myVariable:String
var myVariable;
function onClick (event:MouseEvent) :void { //body }
function onClick (event) { //body }
ActionScript
HTML5
trace(“Message to display”);
console.log(“Message to display”);
ActionScript
HTML5
MouseEvent.CLICK
"click"
MouseEvent.MOUSE_DOWN
"mousedown"
MouseEvent.MOUSE_UP
"mouseup"
MouseEvent.ENTER_FRAME
"tick"
MouseEvent.ADDED
"added"
ActionScript
HTML5
stop();
this.stop();
.stop();
this..stop();
gotoAndStop(5); gotoAndStop("label");
this.gotoAndStop(5); this.gotoAndStop("label");

View and use JavaScript code snippets

  1. Click Window > Code Snippets.
    https://blog.adobe.com/media_6e8701bf1658e14acec354afd2bf6bee4da1ce37.gif

  2. In the Code Snippets panel, expand HTML5 Canvas to see the HTML5 equivalents of your ActionScript codes under different categories.

  3. Code snippets panel
    http://blogs.adobe.com/creativecloud/files/2015/07/code-snippets.png

  4. Code snippets panel