Is it possible to set a password for advanced telemetry via an ANT build
script?
I managed to successfully get advanced telemetry working "out of the box"
by doing the following (- but the default is to not use a password, I want
to add password protection);
1. following instruction in [Apache Flex 4.10 SDK intall] / ant /
README.txt
- "Place/copy flexTasks.jar (Flex 4.10/ant/lib/flexTasks.jar) into
the lib directory of your Ant installation (e.g.
[apache-ant-1.x.x install
location]/lib/ )
- In addition to this, you must include the following line in any
build file that uses the mxmlc or asc tasks: <taskdef
resource="flexTasks.tasks" />
- etc...
2. add attribute, advanced-telemety="true" to <mxmlc> tag
- e.g.
- <mxmlc file="${basedir}/src/path/path/Preloader.as"
output="${build.dir}/Preloader.swf"
keep-generated-actionscript="false"
advanced-telemetry="true"
static-link-runtime-shared-libraries="true">
Any suggestions as to how to add password? Maybe something like
telemetryPassword = "someString"?