LoginSignup
4
4

More than 5 years have passed since last update.

How to use Adobe Scout with grunt-idea-project-deploy?

Posted at

1) Login to https://creative.adobe.com/apps (Create a account if necessary)
2) Download Adobe Scout from https://www.adobe.com/products/gaming/tools.edu.html
3) Download and install the "AIR 3.7 & compiler" SDK from Adobe http://www.adobe.com/devnet/air/air-sdk-download.edu.html
4) Use the new compiler in your Gruntfile
5) Add asc2: true to your grunt-idea-project-deploy Gruntfile
6) Add "advanced-telemetry": "true" to the same Gruntfile

Example:

Gruntfile.js
grunt.loadNpmTasks('grunt-idea-project-builder');
grunt.initConfig({
  idea: {
    main: {
      flexHome: 'air-3.7-with-compiler-path',
      path: '.',
      module: 'common',
      compile: {
         air: {
           version: 'test',
           'package': false,
           swf: {
             asc2: true,
             'advanced-telemetry':  'true'
          }
        } 
      }
    }
  }
});

7) Compile the .swf using these new settings

  grunt idea:main

8) Open Adobe Scout.app
9) Select the important telemetry settings

Scout example settings

10) Start the created .swf (in our case: air)

  adl common.xml

11) Select the running swf in the Adobe Scout list

Scout example list entry

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4