jsfl

Automating publishing of FLA files; calling Process.Start multiple times

北城以北 提交于 2019-12-01 07:17:10
Problem Background I've created a "One-Click" publication process for my Flash (*.fla) project files with a C# program that performs the following operations: Updates a static "version" variable in two main project files (one for each FLA project) Alters an embedded JSFL template file (automates the opening/publishing of a specific FLA file) and writes it to disk to be used in the next step Calls Flash Professional via Process.Start, passing the path to flash.exe as well as the JSFL filename as an argument, so flash runs the JSFL file and publishes the project Publishes project files to my web

Automating publishing of FLA files; calling Process.Start multiple times

柔情痞子 提交于 2019-12-01 04:37:04
问题 Problem Background I've created a "One-Click" publication process for my Flash (*.fla) project files with a C# program that performs the following operations: Updates a static "version" variable in two main project files (one for each FLA project) Alters an embedded JSFL template file (automates the opening/publishing of a specific FLA file) and writes it to disk to be used in the next step Calls Flash Professional via Process.Start, passing the path to flash.exe as well as the JSFL filename