我最近升级到 Flash Professional CC (Mac 10.8.4),它不再提供保存到 10.3 之前的 Flash 版本的选项。但 Google DoubleClick 和其他广告网络只允许最高 10.1 的版本。有些甚至限制在第 9 版。
我尝试按照此线程Compile for Flash 10.1 in Flash Professional CS6 中找到的 CS6 说明进行操作
但完成后,发布设置中的目标下拉框不会列出 Flash 9 或 10.1。
简而言之,这就是我所做的:
创建到 /Users/[用户名]/Library/Application Support/Adobe/language/Configuration 的文件夹路径
添加了“ActionScript 3.0”和“Players”文件夹(完成任务后,“ActionsPanel”、“Classes”和“Include”文件夹会自动创建)
在 /ActionScript 3.0 文件夹中,两个子文件夹(“FP9”和“FP10.1”分别包含 v9 和 v10.1 playerglobal.swc 文件)
在 /Players 文件夹中,插入两个文件:“FlashPlayer9_0.xml”和“FlashPlayer10_1.xml”。这是v10.1文件的代码,v9基本相同:
<?xml version="1.0" encoding="UTF-8"?>
<players>
<player id="FlashPlayer10.1" version="10" asversion="1">
<name>Flash Player 10.1</name>
<path builtin="true"/>
<path menuSortCategory="10"/>
<path platform="WIN">Device Central/adcdl.exe</path>
<path platform="MAC">Device Central/adcdl</path>
<playerDefinitionPath as2="$(UserConfig)/Classes/FP10;$(UserConfig)/Classes/FP9;$(UserConfig)/Classes/FP8;$(UserConfig)/Classes/FP7" as3="$(AppConfig)/ActionScript 3.0/FP10.1/playerglobal.swc" />
<feature name="multiScreenPublish" supported="true" />
<feature name="mobileAuthoringIntegration" supported="true" />
<feature name="deviceSound" supported="false"/>
<feature name="exportStreamingSound" supported="true"/>
<feature name="exportEventSound" supported="true"/>
<feature name="FSCommand2" supported="false"/>
<feature name="gradient_linearRGB" supported="true" />
<feature name="gradient_overflow" supported="true" />
<feature name="shape_strokeHint" supported="true" />
<feature name="shape_cap" supported="true" />
<feature name="shape_join" supported="true" />
<feature name="shape_mitre" supported="true" />
<feature name="shape_scale" supported="true" />
<feature name="linkage_exportForActionscript" supported="true" />
<feature name="linkage_exportForRuntimeSharing" supported="true" />
<feature name="linkage_exportInFirstFrame" supported="true" />
<feature name="linkage_importForRuntimeSharing" supported="true" />
<feature name="linkage_importAndAddToCache" supported="false" />
<feature name="publish_localPlaybackSecurity" supported="true" />
<feature name="publish_hardwareAcceleration" supported="true" />
<feature name="symbol_blendMode" supported="true" />
<feature name="actionScript_documentClass" supported="true" />
<feature name="symbol_blendMode" supported="true" />
<feature name="filters" supported="true" />
<feature name="component_binding" supported="true" />
<feature name="component_schema" supported="true" />
<feature name="screens" supported="true" />
<feature name="video" supported="true" />
<feature name="deviceVideo" supported="false"/>
<feature name="accessibility" supported="true" />
<feature name="dynamic_text_kerning" supported="true" />
<feature name="static_text_charwidth_nondeviceFont" supported="true" />
<feature name="static_text_charwidth_deviceFont" supported="true" />
<feature name="advanced_anti_alias_text" supported="true" />
<feature name="nine_slice_scaling" supported="true" />
<feature name="runtimeNumberMinMax" supported="true" />
<feature name="use8kSampleRate" supported="true" />
<feature name="useDefineFont4ForDeviceText" supported="true" />
<feature name="useDefineFont4ForEmbeddedFonts" supported="true" />
<feature name="textLayoutFramework" supported="true" />
<feature name="document_class" supported="true" />
<encodingPresets>
<preset uuid="da5cac1a-417a-4d86-b7f7-ef21010a5d7d" name="FLV - Match Source Attributes (High Quality)" ext="flv" default="true"/>
</encodingPresets>
<testmenu>
<menu name="ID_testInFlash" default="true"/>
<menu name="ID_testInDeviceCentral" />
</testmenu>
<debugmenu>
<menu name="ID_debugtInFlash" default="true"/>
<menu name="ID_debugInDeviceCentral"/>
</debugmenu>
</player>
</players>
有没有人能够让它在 Flash Professional CC 上工作?我真的很感谢你能提供的任何帮助......