Created
April 26, 2014 00:27
-
-
Save hushin/11308083 to your computer and use it in GitHub Desktop.
JSFL の global object 調べてみた@flash CS5.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(global) { | |
var trace = fl.trace; | |
var clear = fl.outputPanel.clear; | |
clear(); | |
var stock = []; | |
var is_stocked = function(target) { | |
return stock.indexOf(target) != -1; | |
}; | |
var is_object = function(target) { | |
return target === Object(target); | |
}; | |
var TAB = ' '; | |
var trace_obj = function(obj, key, tab) { | |
var value = obj[key]; | |
var text = tab + key + ': ' + value | |
+ (is_stocked(value) ? ' (stocked)' : '') | |
+ (obj.hasOwnProperty(key) ? '' : ' (prototype)') | |
+ ' (type:' + typeof value + ')'; | |
trace(text); | |
}; | |
var seek = function(obj, tab) { | |
stock.push(obj); | |
for (var key in obj) { | |
var value = obj[key]; | |
trace_obj(obj, key, tab); | |
if (!is_stocked(value) && is_object(value)) { | |
// 特定のオブジェクトを調べようとするとエラーになるので回避 | |
if (!/^(tools|frames)$/.test(key)) { | |
seek(value, tab + TAB); | |
} else { | |
for (var n in value) { | |
// 特定のオブジェクト(ry | |
if (/^(toolObjs|activeTool)$/.test(n)) { | |
trace(tab + TAB + n); | |
} else { | |
trace_obj(value, n, tab + TAB); | |
} | |
} | |
} | |
} | |
} | |
}; | |
seek(global, ''); | |
})(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
flash: [object Flash] (type:object) | |
appName: Flash MX2 (type:string) | |
appVersion: (type:string) | |
systemScript: en (type:string) | |
tools: [object Tools] (type:object) | |
sampleProperty: foo (prototype) (type:string) | |
toolObjs | |
activeTool | |
mouseIsDown: false (prototype) (type:boolean) | |
altIsDown: false (prototype) (type:boolean) | |
shiftIsDown: false (prototype) (type:boolean) | |
ctlIsDown: false (prototype) (type:boolean) | |
penLoc: [object Object] (prototype) (type:object) | |
penDownLoc: [object Object] (prototype) (type:object) | |
drawingLayer: [object drawingLayer] (type:object) | |
sampleProperty: foo (prototype) (type:string) | |
Math: [object mathObject] (type:object) | |
documents: [object Document] (prototype) (type:object) | |
0: [object Document] (type:object) | |
parentWindow: [object Window] (type:object) | |
flash: [object Flash] (type:object) | |
appName: Flash MX2 (type:string) | |
appVersion: (type:string) | |
systemScript: en (type:string) | |
tools: [object Tools] (type:object) | |
sampleProperty: foo (prototype) (type:string) | |
toolObjs | |
activeTool | |
mouseIsDown: false (prototype) (type:boolean) | |
altIsDown: false (prototype) (type:boolean) | |
shiftIsDown: false (prototype) (type:boolean) | |
ctlIsDown: false (prototype) (type:boolean) | |
penLoc: [object Object] (prototype) (type:object) | |
penDownLoc: [object Object] (prototype) (type:object) | |
drawingLayer: [object drawingLayer] (type:object) | |
sampleProperty: foo (prototype) (type:string) | |
Math: [object mathObject] (type:object) | |
findObjectInDocByName: function (nameToSearchFor, doc) { | |
FlashUtils_clearGlobalArrays(); | |
for (var i = 0; i < doc.timelines.length; i++) { | |
FlashUtils_findObjectInTimelineByName(nameToSearchFor, doc.timelines[i], undefined); | |
} | |
return FlashUtils_globalObj.contents; | |
} (type:function) | |
prototype: [object Object] (type:object) | |
findObjectInDocByType: function (typeToSearchFor, doc) { | |
FlashUtils_clearGlobalArrays(); | |
for (var i = 0; i < doc.timelines.length; i++) { | |
FlashUtils_findObjectInTimelineByType(typeToSearchFor, doc.timelines[i], undefined); | |
} | |
return FlashUtils_globalObj.contents; | |
} (type:function) | |
prototype: [object Object] (type:object) | |
selectElement: function (elementData, editSymbol) { | |
if (elementData.parent != undefined) { | |
flash.selectElement(elementData.parent, true); | |
} else { | |
FlashUtils_debugString("flash.selectElement function: element is on the main timeline"); | |
} | |
var layerIndex = FlashUtils_getIndexOfObject(elementData.timeline.layers, elementData.layer); | |
var frameIndex = FlashUtils_getIndexOfObject(elementData.layer.frames, elementData.keyframe); | |
if ((layerIndex >= 0) && (frameIndex >= 0)) { | |
elementData.timeline.setSelectedLayers(layerIndex); | |
elementData.timeline.setSelectedFrames(frameIndex, frameIndex); | |
fl.getDocumentDOM().selectNone(); | |
elementData.obj.selected = true; | |
if (editSymbol) { | |
document.enterEditMode("inPlace"); | |
} | |
} else { | |
FlashUtils_debugString("flash.selectElement function: parent: failed to get valid layerIndex: " + layerIndex + " or frameIndex: " + frameIndex); | |
} | |
} (type:function) | |
prototype: [object Object] (type:object) | |
documents: [object Document] (prototype) (type:object) | |
0: [object Document] (stocked) (type:object) | |
configDirectory: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration/ (prototype) (type:string) | |
configURI: file:///Macintosh%20HD/Users/hoge/Library/Application%20Support/Adobe/Flash%20CS5.5/ja_JP/Configuration/ (prototype) (type:string) | |
commonConfigURI: file:///Macintosh%20HD/Applications/Adobe%20Flash%20CS5.5/Common/Configuration/ (prototype) (type:string) | |
applicationDirectory: /Applications/Adobe Flash CS5.5/ (prototype) (type:string) | |
applicationURI: file:///Macintosh%20HD/Applications/Adobe%20Flash%20CS5.5/ (prototype) (type:string) | |
languageCode: ja_JP (prototype) (type:string) | |
outputPanel: [object OutputPanel] (prototype) (type:object) | |
actionsPanel: [object ActionsPanel] (prototype) (type:object) | |
componentsPanel: [object ComponentPanel] (prototype) (type:object) | |
items: undefined (prototype) (type:undefined) | |
xmlui: [object XMLUI] (prototype) (type:object) | |
behavior: [object Behaviors] (prototype) (type:object) | |
codehint: [object Codehints] (prototype) (type:object) | |
'screenTypes' JS API は使用されなくなりました。 | |
'screenTypes' JS API は使用されなくなりました。 | |
screenTypes: undefined (prototype) (type:undefined) | |
version: MAC 11,5,1,349 (prototype) (type:string) | |
getDynamicSWFURL: ?api=1&lvl=1&ver=11.5.1&plat=mac&lang=ja_JP&stat=full&spfx=PF (prototype) (type:string) | |
mruRecentFileList: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration//リカバリ_名称未設定-1_20140426003246.fla (prototype) (type:object) | |
0: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration//リカバリ_名称未設定-1_20140426003246.fla (type:string) | |
mruRecentFileListType: fla (prototype) (type:object) | |
0: fla (type:string) | |
createNewDocList: ActionScript 3.0,ActionScript 2.0,AIR,AIR for Android,AIR for iOS,Flash Lite 4,Flash Lite (Device Central),ActionScript ファイル,AS コミュニケーションファイル,Flash JavaScript ファイル,Flash プロジェクト,ActionScript 3.0 Class,ActionScript 3.0 Interface (prototype) (type:object) | |
0: ActionScript 3.0 (type:string) | |
1: ActionScript 2.0 (type:string) | |
2: AIR (type:string) | |
3: AIR for Android (type:string) | |
4: AIR for iOS (type:string) | |
5: Flash Lite 4 (type:string) | |
6: Flash Lite (Device Central) (type:string) | |
7: ActionScript ファイル (type:string) | |
8: AS コミュニケーションファイル (type:string) | |
9: Flash JavaScript ファイル (type:string) | |
10: Flash プロジェクト (type:string) | |
11: ActionScript 3.0 Class (type:string) | |
12: ActionScript 3.0 Interface (type:string) | |
createNewDocListType: fla,fla,fla,fla,fla,fla,fla,as,asc,jsfl,flp,as,as (prototype) (type:object) | |
0: fla (type:string) | |
1: fla (type:string) | |
2: fla (type:string) | |
3: fla (type:string) | |
4: fla (type:string) | |
5: fla (type:string) | |
6: fla (type:string) | |
7: as (type:string) | |
8: asc (type:string) | |
9: jsfl (type:string) | |
10: flp (type:string) | |
11: as (type:string) | |
12: as (type:string) | |
createNewTemplateList: AIR for Android,アドバタイズメント(広告),アニメーション,サンプルファイル,バナー,プレゼンテーション,メディアの再生 (prototype) (type:object) | |
0: AIR for Android (type:string) | |
1: アドバタイズメント(広告) (type:string) | |
2: アニメーション (type:string) | |
3: サンプルファイル (type:string) | |
4: バナー (type:string) | |
5: プレゼンテーション (type:string) | |
6: メディアの再生 (type:string) | |
normalGradientSelection: false (prototype) (type:boolean) | |
contactSensitiveSelection: true (prototype) (type:boolean) | |
objectDrawingMode: false (prototype) (type:boolean) | |
packagePaths: .;$(UserConfig)/Classes (prototype) (type:string) | |
as3PackagePaths: (prototype) (type:string) | |
compilerErrors: [object CompilerErrors] (prototype) (type:object) | |
scriptURI: file:///Macintosh%20HD/Users/hoge/Desktop/hoge.jsfl (prototype) (type:string) | |
undoMode: true (prototype) (type:boolean) | |
scriptTimeoutEnabled: false (prototype) (type:boolean) | |
swfPanels: [object SwfPanel],[object SwfPanel] (prototype) (type:object) | |
0: [object SwfPanel] (type:object) | |
name: プロジェクト (prototype) (type:string) | |
path: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration/WindowSWF/Project.swf (prototype) (type:string) | |
1: [object SwfPanel] (type:object) | |
name: コードスニペット (prototype) (type:string) | |
path: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration/WindowSWF/Code Snippets.swf (prototype) (type:string) | |
flexSDKPath: $(AppConfig)/ActionScript 3.0/flex_sdk/4.0.0/ (prototype) (type:string) | |
presetPanel: [object presetPanel] (prototype) (type:object) | |
items: [object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem] (prototype) (type:object) | |
0: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: true (prototype) (type:boolean) | |
level: 0 (prototype) (type:number) | |
name: デフォルトプリセット (prototype) (type:string) | |
open: false (prototype) (type:boolean) | |
path: デフォルトプリセット (prototype) (type:string) | |
1: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: バウンスイン 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/バウンスイン 3D (prototype) (type:string) | |
2: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: バウンスアウト 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/バウンスアウト 3D (prototype) (type:string) | |
3: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: バウンススマッシュ (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/バウンススマッシュ (prototype) (type:string) | |
4: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 下 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 下 (prototype) (type:string) | |
5: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 左 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 左 (prototype) (type:string) | |
6: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 右 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 右 (prototype) (type:string) | |
7: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 上 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 上 (prototype) (type:string) | |
8: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 下 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 下 (prototype) (type:string) | |
9: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 左 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 左 (prototype) (type:string) | |
10: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 右 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 右 (prototype) (type:string) | |
11: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 上 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 上 (prototype) (type:string) | |
12: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 下 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 下 (prototype) (type:string) | |
13: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 左 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 左 (prototype) (type:string) | |
14: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 右 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 右 (prototype) (type:string) | |
15: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 上 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 上 (prototype) (type:string) | |
16: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 一時停止 - フライアウト (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 一時停止 - フライアウト (prototype) (type:string) | |
17: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 大きいバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/大きいバウンス (prototype) (type:string) | |
18: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 標準のバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/標準のバウンス (prototype) (type:string) | |
19: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 複数のバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/複数のバウンス (prototype) (type:string) | |
20: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: パルス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/パルス (prototype) (type:string) | |
21: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 小さいバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/小さいバウンス (prototype) (type:string) | |
22: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: スモーク (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/スモーク (prototype) (type:string) | |
23: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: スパイラル 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/スパイラル 3D (prototype) (type:string) | |
24: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: スウォッシュ (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/スウォッシュ (prototype) (type:string) | |
25: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: テキストスクロール 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/テキストスクロール 3D (prototype) (type:string) | |
26: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ウェーブ (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ウェーブ (prototype) (type:string) | |
27: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームイン 2D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームイン 2D (prototype) (type:string) | |
28: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームイン 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームイン 3D (prototype) (type:string) | |
29: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームアウト 2D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームアウト 2D (prototype) (type:string) | |
30: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームアウト 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームアウト 3D (prototype) (type:string) | |
31: [object PresetItem] (type:object) | |
isDefault: false (prototype) (type:boolean) | |
isFolder: true (prototype) (type:boolean) | |
level: 0 (prototype) (type:number) | |
name: カスタムプリセット (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: カスタムプリセット (prototype) (type:string) | |
sourcePath: (prototype) (type:string) | |
libraryPath: (prototype) (type:string) | |
externalLibraryPath: (prototype) (type:string) | |
defaultFontName: Times (prototype) (type:string) | |
fillColor: #0066cc (prototype) (type:string) | |
strokeColor: (prototype) (type:string) | |
createNewDocListFlag: true,true,true,true,true,true,false,true,false,true,true,true,true (prototype) (type:object) | |
0: true (type:boolean) | |
1: true (type:boolean) | |
2: true (type:boolean) | |
3: true (type:boolean) | |
4: true (type:boolean) | |
5: true (type:boolean) | |
6: false (type:boolean) | |
7: true (type:boolean) | |
8: false (type:boolean) | |
9: true (type:boolean) | |
10: true (type:boolean) | |
11: true (type:boolean) | |
12: true (type:boolean) | |
projectPanelAction: none (prototype) (type:string) | |
publishCacheEnabled: true (prototype) (type:boolean) | |
publishCacheDiskSizeMax: 250 (prototype) (type:number) | |
publishCacheMemorySizeMax: 10 (prototype) (type:number) | |
publishCacheMemoryEntrySizeLimit: 10 (prototype) (type:number) | |
publishSizeReportXMLEnabled: false (prototype) (type:boolean) | |
fl: [object Flash] (stocked) (type:object) | |
App: [object Flash] (stocked) (type:object) | |
app: [object Flash] (stocked) (type:object) | |
window: [object Window] (stocked) (type:object) | |
document: [object Document] (stocked) (type:object) | |
FlashUtils_globalObj: [object Object] (type:object) | |
contents: (type:object) | |
libItems: (type:object) | |
debuggerStringOn: false (type:boolean) | |
FlashUtils_debugString: function (msg) { | |
if (FlashUtils_globalObj.debuggerStringOn) { | |
fl.trace(msg); | |
} | |
} (type:function) | |
prototype: [object Object] (type:object) | |
FlashUtils_libraryItemWasNotSearched: function (item) { | |
for (var i = 0; i < FlashUtils_globalObj.libItems.length; i++) { | |
if (FlashUtils_globalObj.libItems[i] == item) { | |
return false; | |
} | |
} | |
return true; | |
} (type:function) | |
prototype: [object Object] (type:object) | |
FlashUtils_findObjectInTimelineByType: function (objType, objTimeline, elementParent) { | |
if (objTimeline == undefined) { | |
return; | |
} | |
FlashUtils_debugString("timeline: " + objTimeline.name); | |
for (var j = 0; j < objTimeline.layers.length; j++) { | |
FlashUtils_debugString(" layer: " + objTimeline.layers[j].name); | |
var frameArray = objTimeline.layers[j].frames; | |
var k; | |
for (k = 0; k < frameArray.length; k++) { | |
if (k == frameArray[k].startFrame) { | |
var frame = frameArray[k]; | |
FlashUtils_debugString(" keyframe: " + frame.name); | |
var items = frame.elements; | |
for (var l = 0; l < items.length; l++) { | |
if (items[l].elementType == objType) { | |
var elementObj = {obj:items[l], keyframe:objTimeline.layers[j].frames[k], layer:objTimeline.layers[j], timeline:objTimeline, parent:elementParent}; | |
FlashUtils_globalObj.contents.push(elementObj); | |
FlashUtils_debugString(" element: " + items[l].name + " type: " + items[l].elementType); | |
} else { | |
if (items[l].elementType == "instance") { | |
if (FlashUtils_libraryItemWasNotSearched(items[l].libraryItem)) { | |
var nextSymbolItemObj = items[l].libraryItem; | |
FlashUtils_debugString(" symbol item in library: " + nextSymbolItemObj.name + " symbol type: " + nextSymbolItemObj.symbolType); | |
var elementObj = {obj:items[l], keyframe:objTimeline.layers[j].frames[k], layer:objTimeline.layers[j], timeline:objTimeline, parent:elementParent}; | |
FlashUtils_globalObj.libItems.push(nextSymbolItemObj); | |
FlashUtils_findObjectInTimelineByType(objType, nextSymbolItemObj.timeline, elementObj); | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} (type:function) | |
prototype: [object Object] (type:object) | |
FlashUtils_findObjectInTimelineByName: function (objName, objTimeline, elementParent) { | |
if (objTimeline == undefined) { | |
return; | |
} | |
FlashUtils_debugString("timeline: " + objTimeline.name); | |
for (var j = 0; j < objTimeline.layers.length; j++) { | |
FlashUtils_debugString(" layer: " + objTimeline.layers[j].name); | |
var frameArray = objTimeline.layers[j].frames; | |
for (var k = 0; k < frameArray.length; k++) { | |
if (k == frameArray[k].startFrame) { | |
var frame = frameArray[k]; | |
FlashUtils_debugString(" keyframe: " + frame.name); | |
var items = frame.elements; | |
for (var l = 0; l < items.length; l++) { | |
if (items[l].name == objName) { | |
var elementObj = {obj:items[l], keyframe:objTimeline.layers[j].frames[k], layer:objTimeline.layers[j], timeline:objTimeline, parent:elementParent}; | |
FlashUtils_globalObj.contents.push(elementObj); | |
FlashUtils_debugString(" element: " + items[l].name + " type: " + items[l].elementType); | |
} else { | |
if (items[l].elementType == "instance") { | |
if (FlashUtils_libraryItemWasNotSearched(items[l].libraryItem)) { | |
var nextSymbolItemObj = items[l].libraryItem; | |
FlashUtils_debugString(" symbol item in library: " + nextSymbolItemObj.name + " symbol type: " + nextSymbolItemObj.symbolType); | |
var elementObj = {obj:items[l], keyframe:objTimeline.layers[j].frames[k], layer:objTimeline.layers[j], timeline:objTimeline, parent:elementParent}; | |
FlashUtils_globalObj.libItems.push(nextSymbolItemObj); | |
FlashUtils_findObjectInTimelineByName(objName, nextSymbolItemObj.timeline, elementObj); | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} (type:function) | |
prototype: [object Object] (type:object) | |
FlashUtils_clearGlobalArrays: function () { | |
FlashUtils_globalObj.contents.length = 0; | |
FlashUtils_globalObj.libItems.length = 0; | |
} (type:function) | |
prototype: [object Object] (type:object) | |
FlashUtils_getIndexOfObject: function (objArray, obj) { | |
for (var i = 0; i < objArray.length; i++) { | |
if (obj == objArray[i]) { | |
return i; | |
} | |
} | |
return -1; | |
} (type:function) | |
prototype: [object Object] (type:object) | |
Air2_5_Android: [object Extension] (prototype) (type:object) | |
name: Air2_5_Android (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/Air2_5_Android.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
Air2_5: [object Extension] (prototype) (type:object) | |
name: Air2_5 (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/Air2_5.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
Brush: [object Extension] (prototype) (type:object) | |
name: Brush (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/Brush.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
Collision: [object Extension] (prototype) (type:object) | |
name: Collision (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/Collision.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
FLBridge: [object Extension] (prototype) (type:object) | |
name: FLBridge (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/FLBridge.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
FLfile: [object Extension] (prototype) (type:object) | |
name: FLfile (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/FLfile.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
PointGrid: [object Extension] (prototype) (type:object) | |
name: PointGrid (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/PointGrid.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
Stroke: [object Extension] (prototype) (type:object) | |
name: Stroke (type:string) | |
MM_path: /Applications/Adobe Flash CS5.5/Common/Configuration/External Libraries/Stroke.bundle (type:string) | |
MM_loaded: true (type:boolean) | |
name: 名称未設定-1 (prototype) (type:string) | |
path: undefined (prototype) (type:undefined) | |
timelines: [object Timeline] (prototype) (type:object) | |
0: [object Timeline] (type:object) | |
name: シーン 1 (prototype) (type:string) | |
layers: [object Layer] (prototype) (type:object) | |
0: [object Layer] (type:object) | |
name: レイヤー 1 (prototype) (type:string) | |
layerType: normal (prototype) (type:string) | |
visible: true (prototype) (type:boolean) | |
locked: false (prototype) (type:boolean) | |
frameCount: 1 (prototype) (type:number) | |
frames: [object Frame] (prototype) (type:object) | |
0: [object Frame] (type:object) | |
color: #4fff4f (prototype) (type:string) | |
height: 100 (prototype) (type:number) | |
outline: false (prototype) (type:boolean) | |
parentLayer: null (prototype) (type:object) | |
frameCount: 1 (prototype) (type:number) | |
currentFrame: 0 (prototype) (type:number) | |
layerCount: 1 (prototype) (type:number) | |
currentLayer: 0 (prototype) (type:number) | |
bindings: (prototype) (type:object) | |
libraryItem: undefined (prototype) (type:undefined) | |
シーン 1: [object Timeline] (stocked) (type:object) | |
currentTimeline: 0 (prototype) (type:number) | |
library: [object Library] (prototype) (type:object) | |
items: (prototype) (type:object) | |
livePreview: true (prototype) (type:boolean) | |
width: 550 (prototype) (type:number) | |
height: 400 (prototype) (type:number) | |
backgroundColor: #ffffff (prototype) (type:string) | |
frameRate: 24 (prototype) (type:number) | |
selection: (prototype) (type:object) | |
viewMatrix: [object Object] (prototype) (type:object) | |
a: 1 (type:number) | |
b: 0 (type:number) | |
c: 0 (type:number) | |
d: 1 (type:number) | |
tx: 0 (type:number) | |
ty: 0 (type:number) | |
animatedViewRect: true (prototype) (type:boolean) | |
accName: (prototype) (type:string) | |
description: (prototype) (type:string) | |
silent: false (prototype) (type:boolean) | |
forceSimple: false (prototype) (type:boolean) | |
autoLabel: true (prototype) (type:boolean) | |
publishProfiles: デフォルト (prototype) (type:object) | |
0: デフォルト (type:string) | |
currentPublishProfile: デフォルト (prototype) (type:string) | |
legacyLineSpacing: false (prototype) (type:boolean) | |
docClass: (prototype) (type:string) | |
as3WarningsMode: true (prototype) (type:boolean) | |
as3StrictMode: true (prototype) (type:boolean) | |
as3AutoDeclare: true (prototype) (type:boolean) | |
as3Dialect: AS3 (prototype) (type:string) | |
as3ExportFrame: 1 (prototype) (type:number) | |
playerVersion: 10 (prototype) (type:string) | |
asVersion: 3 (prototype) (type:number) | |
id: 19555 (prototype) (type:number) | |
zoomFactor: 1 (prototype) (type:number) | |
exportSWC: false (prototype) (type:boolean) | |
DOM2: [object DOMDocument] (prototype) (type:object) | |
parentWindow: [object Window] (stocked) (type:object) | |
version: 73 (prototype) (type:number) | |
platform: Macintosh (prototype) (type:string) | |
timelines: [object DOMTimeline] (prototype) (type:object) | |
0: [object DOMTimeline] (type:object) | |
name: シーン 1 (prototype) (type:string) | |
layers: [object DOMLayer] (prototype) (type:object) | |
0: [object DOMLayer] (type:object) | |
name: レイヤー 1 (prototype) (type:string) | |
layerType: normal (prototype) (type:string) | |
visible: true (prototype) (type:boolean) | |
locked: false (prototype) (type:boolean) | |
frameCount: 1 (prototype) (type:number) | |
frames: [object DOMFrame] (prototype) (type:object) | |
0: [object DOMFrame] (type:object) | |
color: #4fff4f (prototype) (type:string) | |
outline: false (prototype) (type:boolean) | |
parentLayer: null (prototype) (type:object) | |
current: true (prototype) (type:boolean) | |
heightMultiplier: 1 (prototype) (type:number) | |
heightLiteral: -1 (prototype) (type:number) | |
open: true (prototype) (type:boolean) | |
autoNamed: true (prototype) (type:boolean) | |
background: false (prototype) (type:boolean) | |
animationType: none (prototype) (type:string) | |
bindings: (prototype) (type:object) | |
nextLayerID: 2 (prototype) (type:number) | |
nextFolderID: 1 (prototype) (type:number) | |
currentFrame: 0 (prototype) (type:number) | |
guides: <guidelines> | |
</guidelines> | |
(prototype) (type:string) | |
lastModifiedDate: 535a902b (prototype) (type:string) | |
templateName: (prototype) (type:string) | |
templateVersion: (prototype) (type:string) | |
lastUniqueID: 0 (prototype) (type:number) | |
scalingGrid: false (prototype) (type:boolean) | |
scalingGridRect: [object Object] (prototype) (type:object) | |
left: -2147483.648 (type:number) | |
top: -2147483.648 (type:number) | |
right: -2147483.648 (type:number) | |
bottom: -2147483.648 (type:number) | |
hasValidCenter: false (prototype) (type:boolean) | |
transformationCenterPoint: [object Object] (prototype) (type:object) | |
x: 0 (type:number) | |
y: 0 (type:number) | |
displayAsComponent: false (prototype) (type:boolean) | |
componentTooltip: (prototype) (type:string) | |
customIconID: 0 (prototype) (type:number) | |
userPropertiesLocked: true (prototype) (type:boolean) | |
descriptionType: 0 (prototype) (type:number) | |
actionscriptClass: (prototype) (type:string) | |
description: (prototype) (type:string) | |
xmlProperties: (prototype) (type:string) | |
taskDescriptions: (prototype) (type:object) | |
taskScripts: (prototype) (type:object) | |
hasCustomIcon: false (prototype) (type:boolean) | |
editFrame: 1 (prototype) (type:number) | |
requiredMinimumPlayerVersionName: (prototype) (type:string) | |
requiredMinimumPlayerVersion: 0 (prototype) (type:number) | |
requiredMinimumASVersion: 0 (prototype) (type:number) | |
parametersAsXML: (prototype) (type:string) | |
シーン 1: [object DOMTimeline] (stocked) (type:object) | |
symbols: (prototype) (type:object) | |
media: (prototype) (type:object) | |
fonts: (prototype) (type:object) | |
folders: (prototype) (type:object) | |
items: (prototype) (type:object) | |
nextSceneID: 2 (prototype) (type:number) | |
nextItemTag: 1 (prototype) (type:number) | |
currentTimeline: 0 (prototype) (type:number) | |
nextSymbolID: 1 (prototype) (type:number) | |
nextMediaID: 1 (prototype) (type:number) | |
unitType: 5 (prototype) (type:number) | |
paperType: 0 (prototype) (type:number) | |
paperBounds: [object Object] (prototype) (type:object) | |
left: 0 (type:number) | |
top: 0 (type:number) | |
right: 550 (type:number) | |
bottom: 400 (type:number) | |
gridSpacing: [object Object] (prototype) (type:object) | |
x: 10 (type:number) | |
y: 10 (type:number) | |
drawMode: 3 (prototype) (type:number) | |
rulerVisible: false (prototype) (type:boolean) | |
pageControlVisible: false (prototype) (type:boolean) | |
viewOptions: 141 (prototype) (type:number) | |
backgroundColor: #ffffff (prototype) (type:string) | |
gridColor: #949494 (prototype) (type:string) | |
frameRate: 24 (prototype) (type:number) | |
publishSettings: <flash_profiles> | |
<flash_profile version="1.0" name="デフォルト" current="true"> | |
<PublishFormatProperties enabled="true"> | |
<defaultNames>1</defaultNames> | |
<flash>1</flash> | |
<projectorWin>0</projectorWin> | |
<projectorMac>0</projectorMac> | |
<html>1</html> | |
<gif>0</gif> | |
<jpeg>0</jpeg> | |
<png>0</png> | |
<qt>0</qt> | |
<rnwk>0</rnwk> | |
<swc>0</swc> | |
<flashDefaultName>1</flashDefaultName> | |
<projectorWinDefaultName>1</projectorWinDefaultName> | |
<projectorMacDefaultName>1</projectorMacDefaultName> | |
<htmlDefaultName>1</htmlDefaultName> | |
<gifDefaultName>1</gifDefaultName> | |
<jpegDefaultName>1</jpegDefaultName> | |
<pngDefaultName>1</pngDefaultName> | |
<qtDefaultName>1</qtDefaultName> | |
<rnwkDefaultName>1</rnwkDefaultName> | |
<swcDefaultName>1</swcDefaultName> | |
<flashFileName>名称未設定-1.swf</flashFileName> | |
<projectorWinFileName>名称未設定-1.exe</projectorWinFileName> | |
<projectorMacFileName>名称未設定-1.app</projectorMacFileName> | |
<htmlFileName>名称未設定-1.html</htmlFileName> | |
<gifFileName>名称未設定-1.gif</gifFileName> | |
<jpegFileName>名称未設定-1.jpg</jpegFileName> | |
<pngFileName>名称未設定-1.png</pngFileName> | |
<qtFileName>名称未設定-1.mov</qtFileName> | |
<rnwkFileName>名称未設定-1.smil</rnwkFileName> | |
<swcFileName>名称未設定-1.swc</swcFileName> | |
</PublishFormatProperties> | |
<PublishHtmlProperties enabled="true"> | |
<VersionDetectionIfAvailable>0</VersionDetectionIfAvailable> | |
<VersionInfo>10,2,153,0;10,1,52,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;</VersionInfo> | |
<UsingDefaultContentFilename>1</UsingDefaultContentFilename> | |
<UsingDefaultAlternateFilename>1</UsingDefaultAlternateFilename> | |
<ContentFilename>名称未設定-1_content.html</ContentFilename> | |
<AlternateFilename>名称未設定-1_alternate.html</AlternateFilename> | |
<UsingOwnAlternateFile>0</UsingOwnAlternateFile> | |
<OwnAlternateFilename></OwnAlternateFilename> | |
<Width>550</Width> | |
<Height>400</Height> | |
<Align>0</Align> | |
<Units>0</Units> | |
<Loop>1</Loop> | |
<StartPaused>0</StartPaused> | |
<Scale>0</Scale> | |
<HorizontalAlignment>1</HorizontalAlignment> | |
<VerticalAlignment>1</VerticalAlignment> | |
<Quality>4</Quality> | |
<DeblockingFilter>0</DeblockingFilter> | |
<WindowMode>0</WindowMode> | |
<DisplayMenu>1</DisplayMenu> | |
<DeviceFont>0</DeviceFont> | |
<TemplateFileName></TemplateFileName> | |
<showTagWarnMsg>1</showTagWarnMsg> | |
</PublishHtmlProperties> | |
<PublishFlashProperties enabled="true"> | |
<TopDown></TopDown> | |
<FireFox></FireFox> | |
<Report>0</Report> | |
<Protect>0</Protect> | |
<OmitTraceActions>0</OmitTraceActions> | |
<Quality>80</Quality> | |
<DeblockingFilter>0</DeblockingFilter> | |
<StreamFormat>0</StreamFormat> | |
<StreamCompress>7</StreamCompress> | |
<EventFormat>0</EventFormat> | |
<EventCompress>7</EventCompress> | |
<OverrideSounds>0</OverrideSounds> | |
<Version>11</Version> | |
<ExternalPlayer>FlashPlayer10.2</ExternalPlayer> | |
<ActionScriptVersion>3</ActionScriptVersion> | |
<PackageExportFrame>1</PackageExportFrame> | |
<PackagePaths></PackagePaths> | |
<AS3PackagePaths>.</AS3PackagePaths> | |
<AS3ConfigConst>CONFIG::FLASH_AUTHORING="true";</AS3ConfigConst> | |
<DebuggingPermitted>0</DebuggingPermitted> | |
<DebuggingPassword></DebuggingPassword> | |
<CompressMovie>1</CompressMovie> | |
<InvisibleLayer>1</InvisibleLayer> | |
<DeviceSound>0</DeviceSound> | |
<StreamUse8kSampleRate>0</StreamUse8kSampleRate> | |
<EventUse8kSampleRate>0</EventUse8kSampleRate> | |
<UseNetwork>0</UseNetwork> | |
<DocumentClass></DocumentClass> | |
<AS3Strict>2</AS3Strict> | |
<AS3Coach>4</AS3Coach> | |
<AS3AutoDeclare>4096</AS3AutoDeclare> | |
<AS3Dialect>AS3</AS3Dialect> | |
<AS3ExportFrame>1</AS3ExportFrame> | |
<AS3Optimize>1</AS3Optimize> | |
<ExportSwc>0</ExportSwc> | |
<ScriptStuckDelay>15</ScriptStuckDelay> | |
<IncludeXMP>1</IncludeXMP> | |
<HardwareAcceleration>0</HardwareAcceleration> | |
<AS3Flags>4102</AS3Flags> | |
<DefaultLibraryLinkage>rsl</DefaultLibraryLinkage> | |
<RSLPreloaderMethod>wrap</RSLPreloaderMethod> | |
<RSLPreloaderSWF>$(AppConfig)/ActionScript 3.0/rsls/loader_animation.swf</RSLPreloaderSWF> | |
<LibraryPath> | |
<library-path-entry> | |
<swc-path>$(AppConfig)/ActionScript 3.0/libs</swc-path> | |
<linkage>merge</linkage> | |
</library-path-entry> | |
<library-path-entry> | |
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path> | |
<linkage usesDefault="true">rsl</linkage> | |
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url> | |
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url> | |
<rsl-url>textLayout_2.0.0.232.swz</rsl-url> | |
</library-path-entry> | |
</LibraryPath> | |
<LibraryVersions> | |
<library-version> | |
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path> | |
[... 切り詰められたテキスト] | |
<?xpacket end="w"?> (prototype) (type:string) | |
mobileSettings: (prototype) (type:string) | |
replaceStringsMethod: 0 (prototype) (type:number) | |
hasPostProcessor: false (prototype) (type:boolean) | |
guid: 0001004F-0000-0000-0000-0000F83E7A0E (prototype) (type:string) | |
postProcessorName: (prototype) (type:string) | |
postProcessorDataSize: 0 (prototype) (type:number) | |
timelineHeight: -1 (prototype) (type:number) | |
timelineLayerWidth: -1 (prototype) (type:number) | |
majorVersion: 11 (prototype) (type:number) | |
minorVersion: 5 (prototype) (type:number) | |
buildNumber: 349 (prototype) (type:number) | |
versionInfo: Saved by Adobe Flash Mac Intel 11.5 build 349 timecount = 1398471479 (prototype) (type:string) | |
carbonLineSpacing: false (prototype) (type:boolean) | |
selection: (prototype) (type:object) | |
perspectiveFieldOfView: 55 (prototype) (type:number) | |
mergeForSelection: true (prototype) (type:boolean) | |
sourcePath: . (prototype) (type:string) | |
libraryPath: $(AppConfig)/ActionScript 3.0/libs (prototype) (type:string) | |
externalLibraryPath: $(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc (prototype) (type:string) | |
playerTarget: Flash Player 10.2 (prototype) (type:string) | |
pathURI: undefined (prototype) (type:undefined) | |
isUncompressed: false (prototype) (type:boolean) | |
inTextEditMode: false (prototype) (type:boolean) | |
configDirectory: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration/ (prototype) (type:string) | |
configURI: file:///Macintosh%20HD/Users/hoge/Library/Application%20Support/Adobe/Flash%20CS5.5/ja_JP/Configuration/ (prototype) (type:string) | |
commonConfigURI: file:///Macintosh%20HD/Applications/Adobe%20Flash%20CS5.5/Common/Configuration/ (prototype) (type:string) | |
applicationDirectory: /Applications/Adobe Flash CS5.5/ (prototype) (type:string) | |
applicationURI: file:///Macintosh%20HD/Applications/Adobe%20Flash%20CS5.5/ (prototype) (type:string) | |
languageCode: ja_JP (prototype) (type:string) | |
outputPanel: [object OutputPanel] (prototype) (type:object) | |
actionsPanel: [object ActionsPanel] (prototype) (type:object) | |
componentsPanel: [object ComponentPanel] (prototype) (type:object) | |
items: undefined (prototype) (type:undefined) | |
xmlui: [object XMLUI] (prototype) (type:object) | |
behavior: [object Behaviors] (prototype) (type:object) | |
codehint: [object Codehints] (prototype) (type:object) | |
'screenTypes' JS API は使用されなくなりました。 | |
'screenTypes' JS API は使用されなくなりました。 | |
screenTypes: undefined (prototype) (type:undefined) | |
version: MAC 11,5,1,349 (prototype) (type:string) | |
getDynamicSWFURL: ?api=1&lvl=1&ver=11.5.1&plat=mac&lang=ja_JP&stat=full&spfx=PF (prototype) (type:string) | |
mruRecentFileList: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration//リカバリ_名称未設定-1_20140426003246.fla (prototype) (type:object) | |
0: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration//リカバリ_名称未設定-1_20140426003246.fla (type:string) | |
mruRecentFileListType: fla (prototype) (type:object) | |
0: fla (type:string) | |
createNewDocList: ActionScript 3.0,ActionScript 2.0,AIR,AIR for Android,AIR for iOS,Flash Lite 4,Flash Lite (Device Central),ActionScript ファイル,AS コミュニケーションファイル,Flash JavaScript ファイル,Flash プロジェクト,ActionScript 3.0 Class,ActionScript 3.0 Interface (prototype) (type:object) | |
0: ActionScript 3.0 (type:string) | |
1: ActionScript 2.0 (type:string) | |
2: AIR (type:string) | |
3: AIR for Android (type:string) | |
4: AIR for iOS (type:string) | |
5: Flash Lite 4 (type:string) | |
6: Flash Lite (Device Central) (type:string) | |
7: ActionScript ファイル (type:string) | |
8: AS コミュニケーションファイル (type:string) | |
9: Flash JavaScript ファイル (type:string) | |
10: Flash プロジェクト (type:string) | |
11: ActionScript 3.0 Class (type:string) | |
12: ActionScript 3.0 Interface (type:string) | |
createNewDocListType: fla,fla,fla,fla,fla,fla,fla,as,asc,jsfl,flp,as,as (prototype) (type:object) | |
0: fla (type:string) | |
1: fla (type:string) | |
2: fla (type:string) | |
3: fla (type:string) | |
4: fla (type:string) | |
5: fla (type:string) | |
6: fla (type:string) | |
7: as (type:string) | |
8: asc (type:string) | |
9: jsfl (type:string) | |
10: flp (type:string) | |
11: as (type:string) | |
12: as (type:string) | |
createNewTemplateList: AIR for Android,アドバタイズメント(広告),アニメーション,サンプルファイル,バナー,プレゼンテーション,メディアの再生 (prototype) (type:object) | |
0: AIR for Android (type:string) | |
1: アドバタイズメント(広告) (type:string) | |
2: アニメーション (type:string) | |
3: サンプルファイル (type:string) | |
4: バナー (type:string) | |
5: プレゼンテーション (type:string) | |
6: メディアの再生 (type:string) | |
normalGradientSelection: false (prototype) (type:boolean) | |
contactSensitiveSelection: true (prototype) (type:boolean) | |
objectDrawingMode: false (prototype) (type:boolean) | |
packagePaths: .;$(UserConfig)/Classes (prototype) (type:string) | |
as3PackagePaths: (prototype) (type:string) | |
compilerErrors: [object CompilerErrors] (prototype) (type:object) | |
scriptURI: file:///Macintosh%20HD/Users/hoge/Desktop/hoge.jsfl (prototype) (type:string) | |
undoMode: true (prototype) (type:boolean) | |
scriptTimeoutEnabled: false (prototype) (type:boolean) | |
swfPanels: [object SwfPanel],[object SwfPanel] (prototype) (type:object) | |
0: [object SwfPanel] (type:object) | |
name: プロジェクト (prototype) (type:string) | |
path: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration/WindowSWF/Project.swf (prototype) (type:string) | |
1: [object SwfPanel] (type:object) | |
name: コードスニペット (prototype) (type:string) | |
path: /Users/hoge/Library/Application Support/Adobe/Flash CS5.5/ja_JP/Configuration/WindowSWF/Code Snippets.swf (prototype) (type:string) | |
flexSDKPath: $(AppConfig)/ActionScript 3.0/flex_sdk/4.0.0/ (prototype) (type:string) | |
presetPanel: [object presetPanel] (prototype) (type:object) | |
items: [object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem],[object PresetItem] (prototype) (type:object) | |
0: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: true (prototype) (type:boolean) | |
level: 0 (prototype) (type:number) | |
name: デフォルトプリセット (prototype) (type:string) | |
open: false (prototype) (type:boolean) | |
path: デフォルトプリセット (prototype) (type:string) | |
1: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: バウンスイン 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/バウンスイン 3D (prototype) (type:string) | |
2: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: バウンスアウト 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/バウンスアウト 3D (prototype) (type:string) | |
3: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: バウンススマッシュ (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/バウンススマッシュ (prototype) (type:string) | |
4: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 下 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 下 (prototype) (type:string) | |
5: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 左 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 左 (prototype) (type:string) | |
6: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 右 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 右 (prototype) (type:string) | |
7: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライインぼかし - 上 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライインぼかし - 上 (prototype) (type:string) | |
8: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 下 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 下 (prototype) (type:string) | |
9: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 左 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 左 (prototype) (type:string) | |
10: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 右 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 右 (prototype) (type:string) | |
11: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 上 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 上 (prototype) (type:string) | |
12: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 下 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 下 (prototype) (type:string) | |
13: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 左 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 左 (prototype) (type:string) | |
14: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 右 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 右 (prototype) (type:string) | |
15: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライアウト - 上 (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライアウト - 上 (prototype) (type:string) | |
16: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: フライイン - 一時停止 - フライアウト (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/フライイン - 一時停止 - フライアウト (prototype) (type:string) | |
17: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 大きいバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/大きいバウンス (prototype) (type:string) | |
18: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 標準のバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/標準のバウンス (prototype) (type:string) | |
19: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 複数のバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/複数のバウンス (prototype) (type:string) | |
20: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: パルス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/パルス (prototype) (type:string) | |
21: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: 小さいバウンス (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/小さいバウンス (prototype) (type:string) | |
22: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: スモーク (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/スモーク (prototype) (type:string) | |
23: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: スパイラル 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/スパイラル 3D (prototype) (type:string) | |
24: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: スウォッシュ (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/スウォッシュ (prototype) (type:string) | |
25: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: テキストスクロール 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/テキストスクロール 3D (prototype) (type:string) | |
26: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ウェーブ (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ウェーブ (prototype) (type:string) | |
27: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームイン 2D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームイン 2D (prototype) (type:string) | |
28: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームイン 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームイン 3D (prototype) (type:string) | |
29: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームアウト 2D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームアウト 2D (prototype) (type:string) | |
30: [object PresetItem] (type:object) | |
isDefault: true (prototype) (type:boolean) | |
isFolder: false (prototype) (type:boolean) | |
level: 1 (prototype) (type:number) | |
name: ズームアウト 3D (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: デフォルトプリセット/ズームアウト 3D (prototype) (type:string) | |
31: [object PresetItem] (type:object) | |
isDefault: false (prototype) (type:boolean) | |
isFolder: true (prototype) (type:boolean) | |
level: 0 (prototype) (type:number) | |
name: カスタムプリセット (prototype) (type:string) | |
open: true (prototype) (type:boolean) | |
path: カスタムプリセット (prototype) (type:string) | |
sourcePath: (prototype) (type:string) | |
libraryPath: (prototype) (type:string) | |
externalLibraryPath: (prototype) (type:string) | |
defaultFontName: Times (prototype) (type:string) | |
fillColor: #0066cc (prototype) (type:string) | |
strokeColor: (prototype) (type:string) | |
createNewDocListFlag: true,true,true,true,true,true,false,true,false,true,true,true,true (prototype) (type:object) | |
0: true (type:boolean) | |
1: true (type:boolean) | |
2: true (type:boolean) | |
3: true (type:boolean) | |
4: true (type:boolean) | |
5: true (type:boolean) | |
6: false (type:boolean) | |
7: true (type:boolean) | |
8: false (type:boolean) | |
9: true (type:boolean) | |
10: true (type:boolean) | |
11: true (type:boolean) | |
12: true (type:boolean) | |
projectPanelAction: none (prototype) (type:string) | |
publishCacheEnabled: true (prototype) (type:boolean) | |
publishCacheDiskSizeMax: 250 (prototype) (type:number) | |
publishCacheMemorySizeMax: 10 (prototype) (type:number) | |
publishCacheMemoryEntrySizeLimit: 10 (prototype) (type:number) | |
publishSizeReportXMLEnabled: false (prototype) (type:boolean) | |
fl: [object Flash] (stocked) (type:object) | |
App: [object Flash] (stocked) (type:object) | |
app: [object Flash] (stocked) (type:object) | |
window: [object Window] (stocked) (type:object) | |
document: [object Document] (type:object) | |
parentWindow: [object Window] (stocked) (type:object) | |
name: 名称未設定-1 (prototype) (type:string) | |
path: undefined (prototype) (type:undefined) | |
timelines: [object Timeline] (prototype) (type:object) | |
0: [object Timeline] (stocked) (type:object) | |
シーン 1: [object Timeline] (stocked) (type:object) | |
currentTimeline: 0 (prototype) (type:number) | |
library: [object Library] (stocked) (prototype) (type:object) | |
livePreview: true (prototype) (type:boolean) | |
width: 550 (prototype) (type:number) | |
height: 400 (prototype) (type:number) | |
backgroundColor: #ffffff (prototype) (type:string) | |
frameRate: 24 (prototype) (type:number) | |
selection: (prototype) (type:object) | |
viewMatrix: [object Object] (prototype) (type:object) | |
a: 1 (type:number) | |
b: 0 (type:number) | |
c: 0 (type:number) | |
d: 1 (type:number) | |
tx: 0 (type:number) | |
ty: 0 (type:number) | |
animatedViewRect: true (prototype) (type:boolean) | |
accName: (prototype) (type:string) | |
description: (prototype) (type:string) | |
silent: false (prototype) (type:boolean) | |
forceSimple: false (prototype) (type:boolean) | |
autoLabel: true (prototype) (type:boolean) | |
publishProfiles: デフォルト (prototype) (type:object) | |
0: デフォルト (type:string) | |
currentPublishProfile: デフォルト (prototype) (type:string) | |
legacyLineSpacing: false (prototype) (type:boolean) | |
docClass: (prototype) (type:string) | |
as3WarningsMode: true (prototype) (type:boolean) | |
as3StrictMode: true (prototype) (type:boolean) | |
as3AutoDeclare: true (prototype) (type:boolean) | |
as3Dialect: AS3 (prototype) (type:string) | |
as3ExportFrame: 1 (prototype) (type:number) | |
playerVersion: 10 (prototype) (type:string) | |
asVersion: 3 (prototype) (type:number) | |
id: 19555 (prototype) (type:number) | |
zoomFactor: 1 (prototype) (type:number) | |
exportSWC: false (prototype) (type:boolean) | |
DOM2: [object DOMDocument] (prototype) (type:object) | |
parentWindow: [object Window] (stocked) (type:object) | |
version: 73 (prototype) (type:number) | |
platform: Macintosh (prototype) (type:string) | |
timelines: [object DOMTimeline] (prototype) (type:object) | |
0: [object DOMTimeline] (stocked) (type:object) | |
シーン 1: [object DOMTimeline] (stocked) (type:object) | |
symbols: (prototype) (type:object) | |
media: (prototype) (type:object) | |
fonts: (prototype) (type:object) | |
folders: (prototype) (type:object) | |
items: (prototype) (type:object) | |
nextSceneID: 2 (prototype) (type:number) | |
nextItemTag: 1 (prototype) (type:number) | |
currentTimeline: 0 (prototype) (type:number) | |
nextSymbolID: 1 (prototype) (type:number) | |
nextMediaID: 1 (prototype) (type:number) | |
unitType: 5 (prototype) (type:number) | |
paperType: 0 (prototype) (type:number) | |
paperBounds: [object Object] (prototype) (type:object) | |
left: 0 (type:number) | |
top: 0 (type:number) | |
right: 550 (type:number) | |
bottom: 400 (type:number) | |
gridSpacing: [object Object] (prototype) (type:object) | |
x: 10 (type:number) | |
y: 10 (type:number) | |
drawMode: 3 (prototype) (type:number) | |
rulerVisible: false (prototype) (type:boolean) | |
pageControlVisible: false (prototype) (type:boolean) | |
viewOptions: 141 (prototype) (type:number) | |
backgroundColor: #ffffff (prototype) (type:string) | |
gridColor: #949494 (prototype) (type:string) | |
frameRate: 24 (prototype) (type:number) | |
publishSettings: <flash_profiles> | |
<flash_profile version="1.0" name="デフォルト" current="true"> | |
<PublishFormatProperties enabled="true"> | |
<defaultNames>1</defaultNames> | |
<flash>1</flash> | |
<projectorWin>0</projectorWin> | |
<projectorMac>0</projectorMac> | |
<html>1</html> | |
<gif>0</gif> | |
<jpeg>0</jpeg> | |
<png>0</png> | |
<qt>0</qt> | |
<rnwk>0</rnwk> | |
<swc>0</swc> | |
<flashDefaultName>1</flashDefaultName> | |
<projectorWinDefaultName>1</projectorWinDefaultName> | |
<projectorMacDefaultName>1</projectorMacDefaultName> | |
<htmlDefaultName>1</htmlDefaultName> | |
<gifDefaultName>1</gifDefaultName> | |
<jpegDefaultName>1</jpegDefaultName> | |
<pngDefaultName>1</pngDefaultName> | |
<qtDefaultName>1</qtDefaultName> | |
<rnwkDefaultName>1</rnwkDefaultName> | |
<swcDefaultName>1</swcDefaultName> | |
<flashFileName>名称未設定-1.swf</flashFileName> | |
<projectorWinFileName>名称未設定-1.exe</projectorWinFileName> | |
<projectorMacFileName>名称未設定-1.app</projectorMacFileName> | |
<htmlFileName>名称未設定-1.html</htmlFileName> | |
<gifFileName>名称未設定-1.gif</gifFileName> | |
<jpegFileName>名称未設定-1.jpg</jpegFileName> | |
<pngFileName>名称未設定-1.png</pngFileName> | |
<qtFileName>名称未設定-1.mov</qtFileName> | |
<rnwkFileName>名称未設定-1.smil</rnwkFileName> | |
<swcFileName>名称未設定-1.swc</swcFileName> | |
</PublishFormatProperties> | |
<PublishHtmlProperties enabled="true"> | |
<VersionDetectionIfAvailable>0</VersionDetectionIfAvailable> | |
<VersionInfo>10,2,153,0;10,1,52,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;</VersionInfo> | |
<UsingDefaultContentFilename>1</UsingDefaultContentFilename> | |
<UsingDefaultAlternateFilename>1</UsingDefaultAlternateFilename> | |
<ContentFilename>名称未設定-1_content.html</ContentFilename> | |
<AlternateFilename>名称未設定-1_alternate.html</AlternateFilename> | |
<UsingOwnAlternateFile>0</UsingOwnAlternateFile> | |
<OwnAlternateFilename></OwnAlternateFilename> | |
<Width>550</Width> | |
<Height>400</Height> | |
<Align>0</Align> | |
<Units>0</Units> | |
<Loop>1</Loop> | |
<StartPaused>0</StartPaused> | |
<Scale>0</Scale> | |
<HorizontalAlignment>1</HorizontalAlignment> | |
<VerticalAlignment>1</VerticalAlignment> | |
<Quality>4</Quality> | |
<DeblockingFilter>0</DeblockingFilter> | |
<WindowMode>0</WindowMode> | |
<DisplayMenu>1</DisplayMenu> | |
<DeviceFont>0</DeviceFont> | |
<TemplateFileName></TemplateFileName> | |
<showTagWarnMsg>1</showTagWarnMsg> | |
</PublishHtmlProperties> | |
<PublishFlashProperties enabled="true"> | |
<TopDown></TopDown> | |
<FireFox></FireFox> | |
<Report>0</Report> | |
<Protect>0</Protect> | |
<OmitTraceActions>0</OmitTraceActions> | |
<Quality>80</Quality> | |
<DeblockingFilter>0</DeblockingFilter> | |
<StreamFormat>0</StreamFormat> | |
<StreamCompress>7</StreamCompress> | |
<EventFormat>0</EventFormat> | |
<EventCompress>7</EventCompress> | |
<OverrideSounds>0</OverrideSounds> | |
<Version>11</Version> | |
<ExternalPlayer>FlashPlayer10.2</ExternalPlayer> | |
<ActionScriptVersion>3</ActionScriptVersion> | |
<PackageExportFrame>1</PackageExportFrame> | |
<PackagePaths></PackagePaths> | |
<AS3PackagePaths>.</AS3PackagePaths> | |
<AS3ConfigConst>CONFIG::FLASH_AUTHORING="true";</AS3ConfigConst> | |
<DebuggingPermitted>0</DebuggingPermitted> | |
<DebuggingPassword></DebuggingPassword> | |
<CompressMovie>1</CompressMovie> | |
<InvisibleLayer>1</InvisibleLayer> | |
<DeviceSound>0</DeviceSound> | |
<StreamUse8kSampleRate>0</StreamUse8kSampleRate> | |
<EventUse8kSampleRate>0</EventUse8kSampleRate> | |
<UseNetwork>0</UseNetwork> | |
<DocumentClass></DocumentClass> | |
<AS3Strict>2</AS3Strict> | |
<AS3Coach>4</AS3Coach> | |
<AS3AutoDeclare>4096</AS3AutoDeclare> | |
<AS3Dialect>AS3</AS3Dialect> | |
<AS3ExportFrame>1</AS3ExportFrame> | |
<AS3Optimize>1</AS3Optimize> | |
<ExportSwc>0</ExportSwc> | |
<ScriptStuckDelay>15</ScriptStuckDelay> | |
<IncludeXMP>1</IncludeXMP> | |
<HardwareAcceleration>0</HardwareAcceleration> | |
<AS3Flags>4102</AS3Flags> | |
<DefaultLibraryLinkage>rsl</DefaultLibraryLinkage> | |
<RSLPreloaderMethod>wrap</RSLPreloaderMethod> | |
<RSLPreloaderSWF>$(AppConfig)/ActionScript 3.0/rsls/loader_animation.swf</RSLPreloaderSWF> | |
<LibraryPath> | |
<library-path-entry> | |
<swc-path>$(AppConfig)/ActionScript 3.0/libs</swc-path> | |
<linkage>merge</linkage> | |
</library-path-entry> | |
<library-path-entry> | |
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path> | |
<linkage usesDefault="true">rsl</linkage> | |
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url> | |
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url> | |
<rsl-url>textLayout_2.0.0.232.swz</rsl-url> | |
</library-path-entry> | |
</LibraryPath> | |
<LibraryVersions> | |
<library-version> | |
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path> | |
<feature name="tlfText" majorVersion="2" minorVersion="0" build="232"/> | |
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url> | |
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url> | |
<rsl-url>textLayout_2.0.0.232.swz</rsl-url> | |
</library-version> | |
</LibraryVersions> | |
</PublishFlashProperties> | |
<PublishJpegProperties enabled="true"> | |
<Width>550</Width> | |
<Height>400</Height> | |
<Progressive>0</Progressive> | |
<DPI>4718592</DPI> | |
<Size>0</Size> | |
<Quality>80</Quality> | |
<MatchMovieDim>1</MatchMovieDim> | |
</PublishJpegProperties> | |
<PublishRNWKProperties enabled="true"> | |
<exportFlash>1</exportFlash> | |
<flashBitRate>0</flashBitRate> | |
<exportAudio>1</exportAudio> | |
<audioFormat>0</audioFormat> | |
<singleRateAudio>0</singleRateAudio> | |
<realVideoRate>100000</realVideoRate> | |
<speed28K>1</speed28K> | |
<speed56K>1</speed56K> | |
<speedSingleISDN>0</speedSingleISDN> | |
<speedDualISDN>0</speedDualISDN> | |
<speedCorporateLAN>0</speedCorporateLAN> | |
<speed256K>0</speed256K> | |
<speed384K>0</speed384K> | |
<speed512K>0</speed512K> | |
<exportSMIL>1</exportSMIL> | |
</PublishRNWKProperties> | |
<PublishGifProperties enabled="true"> | |
<Width>550</Width> | |
<Height>400</Height> | |
<Animated>0</Animated> | |
<MatchMovieDim>1</MatchMovieDim> | |
<Loop>1</Loop> | |
<LoopCount></LoopCount> | |
<OptimizeColors>1</OptimizeColors> | |
<Interlace>0</Interlace> | |
<Smooth>1</Smooth> | |
<DitherSolids>0</DitherSolids> | |
<RemoveGradients>0</RemoveGradients> | |
<TransparentOption></TransparentOption> | |
<TransparentAlpha>128</TransparentAlpha> | |
<DitherOption></DitherOption> | |
<PaletteOption></PaletteOption> | |
<MaxColors>255</MaxColors> | |
<PaletteName></PaletteName> | |
</PublishGifProperties> | |
<PublishPNGProperties enabled="true"> | |
<Width>550</Width> | |
<Height>400</Height> | |
<OptimizeColors>1</OptimizeColors> | |
<Interlace>0</Interlace> | |
<Transparent>0</Transparent> | |
<Smooth>1</Smooth> | |
<DitherSolids>0</DitherSolids> | |
<RemoveGradients>0</RemoveGradients> | |
<MatchMovieDim>1</MatchMovieDim> | |
<DitherOption></DitherOption> | |
<FilterOption></FilterOption> | |
<PaletteOption></PaletteOption> | |
<BitDepth>24 ビット (アルファチャンネル)</BitDepth> | |
<MaxColors>255</MaxColors> | |
<PaletteName></PaletteName> | |
</PublishPNGProperties> | |
<PublishQTProperties enabled="true"> | |
<Width>550</Width> | |
<Height>400</Height> | |
<MatchMovieDim>1</MatchMovieDim> | |
<UseQTSoundCompression>0</UseQTSoundCompression> | |
<AlphaOption></AlphaOption> | |
<LayerOption></LayerOption> | |
<QTSndSettings>00000000</QTSndSettings> | |
<ControllerOption>0</ControllerOption> | |
<Looping>0</Looping> | |
<PausedAtStart>0</PausedAtStart> | |
<PlayEveryFrame>0</PlayEveryFrame> | |
<Flatten>1</Flatten> | |
</PublishQTProperties> | |
</flash_profile> | |
</flash_profiles> (prototype) (type:string) | |
colorList: #000000,#000000,#000000,#000000,#003300,#006600,#009900,#00cc00,#00ff00,#330000,#333300,#336600,#339900,#33cc00,#33ff00,#660000,#663300,#666600,#669900,#66cc00,#66ff00,#000000,#333333,#000000,#000033,#003333,#006633,#009933,#00cc33,#00ff33,#330033,#333333,#336633,#339933,#33cc33,#33ff33,#660033,#663333,#666633,#669933,#66cc33,#66ff33,#000000,#666666,#000000,#000066,#003366,#006666,#009966,#00cc66,#00ff66,#330066,#333366,#336666,#339966,#33cc66,#33ff66,#660066,#663366,#666666,#669966,#66cc66,#66ff66,#000000,#999999,#000000,#000099,#003399,#006699,#009999,#00cc99,#00ff99,#330099,#333399,#336699,#339999,#33cc99,#33ff99,#660099,#663399,#666699,#669999,#66cc99,#66ff99,#000000,#cccccc,#000000,#0000cc,#0033cc,#0066cc,#0099cc,#00cccc,#00ffcc,#3300cc,#3333cc,#3366cc,#3399cc,#33cccc,#33ffcc,#6600cc,#6633cc,#6666cc,#6699cc,#66cccc,#66ffcc,#000000,#ffffff,#000000,#0000ff,#0033ff,#0066ff,#0099ff,#00ccff,#00ffff,#3300ff,#3333ff,#3366ff,#3399ff,#33ccff,#33ffff,#6600ff,#6633ff,#6666ff,#6699ff,#66ccff,#66ffff,#000000,#ff0000,#000000,#990000,#993300,#996600,#999900,#99cc00,#99ff00,#cc0000,#cc3300,#cc6600,#cc9900,#cccc00,#ccff00,#ff0000,#ff3300,#ff6600,#ff9900,#ffcc00,#ffff00,#000000,#00ff00,#000000,#990033,#993333,#996633,#999933,#99cc33,#99ff33,#cc0033,#cc3333,#cc6633,#cc9933,#cccc33,#ccff33,#ff0033,#ff3333,#ff6633,#ff9933,#ffcc33,#ffff33,#000000,#0000ff,#000000,#990066,#993366,#996666,#999966,#99cc66,#99ff66,#cc0066,#cc3366,#cc6666,#cc9966,#cccc66,#ccff66,#ff0066,#ff3366,#ff6666,#ff9966,#ffcc66,#ffff66,#000000,#ffff00,#000000,#990099,#993399,#996699,#999999,#99cc99,#99ff99,#cc0099,#cc3399,#cc6699,#cc9999,#cccc99,#ccff99,#ff0099,#ff3399,#ff6699,#ff9999,#ffcc99,#ffff99,#000000,#00ffff,#000000,#9900cc,#9933cc,#9966cc,#9999cc,#99cccc,#99ffcc,#cc00cc,#cc33cc,#cc66cc,#cc99cc,#cccccc,#ccffcc,#ff00cc,#ff33cc,#ff66cc,#ff99cc,#ffcccc,#ffffcc,#000000,#ff00ff,#000000,#9900ff,#9933ff,#9966ff,#9999ff,#99ccff,#99ffff,#cc00ff,#cc33ff,#cc66ff,#cc99ff,#ccccff,#ccffff,#ff00ff,#ff33ff,#ff66ff,#ff99ff,#ffccff,#ffffff (prototype) (type:object) | |
0: #000000 (type:string) | |
1: #000000 (type:string) | |
2: #000000 (type:string) | |
3: #000000 (type:string) | |
4: #003300 (type:string) | |
5: #006600 (type:string) | |
6: #009900 (type:string) | |
7: #00cc00 (type:string) | |
8: #00ff00 (type:string) | |
9: #330000 (type:string) | |
10: #333300 (type:string) | |
11: #336600 (type:string) | |
12: #339900 (type:string) | |
13: #33cc00 (type:string) | |
14: #33ff00 (type:string) | |
15: #660000 (type:string) | |
16: #663300 (type:string) | |
17: #666600 (type:string) | |
18: #669900 (type:string) | |
19: #66cc00 (type:string) | |
20: #66ff00 (type:string) | |
21: #000000 (type:string) | |
22: #333333 (type:string) | |
23: #000000 (type:string) | |
24: #000033 (type:string) | |
25: #003333 (type:string) | |
26: #006633 (type:string) | |
27: #009933 (type:string) | |
28: #00cc33 (type:string) | |
29: #00ff33 (type:string) | |
30: #330033 (type:string) | |
31: #333333 (type:string) | |
32: #336633 (type:string) | |
33: #339933 (type:string) | |
34: #33cc33 (type:string) | |
35: #33ff33 (type:string) | |
36: #660033 (type:string) | |
37: #663333 (type:string) | |
38: #666633 (type:string) | |
39: #669933 (type:string) | |
40: #66cc33 (type:string) | |
41: #66ff33 (type:string) | |
42: #000000 (type:string) | |
43: #666666 (type:string) | |
44: #000000 (type:string) | |
45: #000066 (type:string) | |
46: #003366 (type:string) | |
47: #006666 (type:string) | |
48: #009966 (type:string) | |
49: #00cc66 (type:string) | |
50: #00ff66 (type:string) | |
51: #330066 (type:string) | |
52: #333366 (type:string) | |
53: #336666 (type:string) | |
54: #339966 (type:string) | |
55: #33cc66 (type:string) | |
56: #33ff66 (type:string) | |
57: #660066 (type:string) | |
58: #663366 (type:string) | |
59: #666666 (type:string) | |
60: #669966 (type:string) | |
61: #66cc66 (type:string) | |
62: #66ff66 (type:string) | |
63: #000000 (type:string) | |
64: #999999 (type:string) | |
65: #000000 (type:string) | |
66: #000099 (type:string) | |
67: #003399 (type:string) | |
68: #006699 (type:string) | |
69: #009999 (type:string) | |
70: #00cc99 (type:string) | |
71: #00ff99 (type:string) | |
72: #330099 (type:string) | |
73: #333399 (type:string) | |
74: #336699 (type:string) | |
75: #339999 (type:string) | |
76: #33cc99 (type:string) | |
77: #33ff99 (type:string) | |
78: #660099 (type:string) | |
79: #663399 (type:string) | |
80: #666699 (type:string) | |
81: #669999 (type:string) | |
82: #66cc99 (type:string) | |
83: #66ff99 (type:string) | |
84: #000000 (type:string) | |
85: #cccccc (type:string) | |
86: #000000 (type:string) | |
87: #0000cc (type:string) | |
88: #0033cc (type:string) | |
89: #0066cc (type:string) | |
90: #0099cc (type:string) | |
91: #00cccc (type:string) | |
92: #00ffcc (type:string) | |
93: #3300cc (type:string) | |
94: #3333cc (type:string) | |
95: #3366cc (type:string) | |
96: #3399cc (type:string) | |
97: #33cccc (type:string) | |
98: #33ffcc (type:string) | |
99: #6600cc (type:string) | |
100: #6633cc (type:string) | |
101: #6666cc (type:string) | |
102: #6699cc (type:string) | |
103: #66cccc (type:string) | |
104: #66ffcc (type:string) | |
105: #000000 (type:string) | |
106: #ffffff (type:string) | |
107: #000000 (type:string) | |
108: #0000ff (type:string) | |
109: #0033ff (type:string) | |
110: #0066ff (type:string) | |
111: #0099ff (type:string) | |
112: #00ccff (type:string) | |
113: #00ffff (type:string) | |
114: #3300ff (type:string) | |
115: #3333ff (type:string) | |
116: #3366ff (type:string) | |
117: #3399ff (type:string) | |
118: #33ccff (type:string) | |
119: #33ffff (type:string) | |
120: #6600ff (type:string) | |
121: #6633ff (type:string) | |
122: #6666ff (type:string) | |
123: #6699ff (type:string) | |
124: #66ccff (type:string) | |
125: #66ffff (type:string) | |
126: #000000 (type:string) | |
127: #ff0000 (type:string) | |
128: #000000 (type:string) | |
129: #990000 (type:string) | |
130: #993300 (type:string) | |
131: #996600 (type:string) | |
132: #999900 (type:string) | |
133: #99cc00 (type:string) | |
134: #99ff00 (type:string) | |
135: #cc0000 (type:string) | |
136: #cc3300 (type:string) | |
137: #cc6600 (type:string) | |
138: #cc9900 (type:string) | |
139: #cccc00 (type:string) | |
140: #ccff00 (type:string) | |
141: #ff0000 (type:string) | |
142: #ff3300 (type:string) | |
143: #ff6600 (type:string) | |
144: #ff9900 (type:string) | |
145: #ffcc00 (type:string) | |
146: #ffff00 (type:string) | |
147: #000000 (type:string) | |
148: #00ff00 (type:string) | |
149: #000000 (type:string) | |
150: #990033 (type:string) | |
151: #993333 (type:string) | |
152: #996633 (type:string) | |
153: #999933 (type:string) | |
154: #99cc33 (type:string) | |
155: #99ff33 (type:string) | |
156: #cc0033 (type:string) | |
157: #cc3333 (type:string) | |
158: #cc6633 (type:string) | |
159: #cc9933 (type:string) | |
160: #cccc33 (type:string) | |
161: #ccff33 (type:string) | |
162: #ff0033 (type:string) | |
163: #ff3333 (type:string) | |
164: #ff6633 (type:string) | |
165: #ff9933 (type:string) | |
166: #ffcc33 (type:string) | |
167: #ffff33 (type:string) | |
168: #000000 (type:string) | |
169: #0000ff (type:string) | |
170: #000000 (type:string) | |
171: #990066 (type:string) | |
172: #993366 (type:string) | |
173: #996666 (type:string) | |
174: #999966 (type:string) | |
175: #99cc66 (type:string) | |
176: #99ff66 (type:string) | |
177: #cc0066 (type:string) | |
178: #cc3366 (type:string) | |
179: #cc6666 (type:string) | |
180: #cc9966 (type:string) | |
181: #cccc66 (type:string) | |
182: #ccff66 (type:string) | |
183: #ff0066 (type:string) | |
184: #ff3366 (type:string) | |
185: #ff6666 (type:string) | |
186: #ff9966 (type:string) | |
187: #ffcc66 (type:string) | |
188: #ffff66 (type:string) | |
189: #000000 (type:string) | |
190: #ffff00 (type:string) | |
191: #000000 (type:string) | |
192: #990099 (type:string) | |
193: #993399 (type:string) | |
194: #996699 (type:string) | |
195: #999999 (type:string) | |
196: #99cc99 (type:string) | |
197: #99ff99 (type:string) | |
198: #cc0099 (type:string) | |
199: #cc3399 (type:string) | |
200: #cc6699 (type:string) | |
201: #cc9999 (type:string) | |
202: #cccc99 (type:string) | |
203: #ccff99 (type:string) | |
204: #ff0099 (type:string) | |
205: #ff3399 (type:string) | |
206: #ff6699 (type:string) | |
207: #ff9999 (type:string) | |
208: #ffcc99 (type:string) | |
209: #ffff99 (type:string) | |
210: #000000 (type:string) | |
211: #00ffff (type:string) | |
212: #000000 (type:string) | |
213: #9900cc (type:string) | |
214: #9933cc (type:string) | |
215: #9966cc (type:string) | |
216: #9999cc (type:string) | |
217: #99cccc (type:string) | |
218: #99ffcc (type:string) | |
219: #cc00cc (type:string) | |
220: #cc33cc (type:string) | |
221: #cc66cc (type:string) | |
222: #cc99cc (type:string) | |
223: #cccccc (type:string) | |
224: #ccffcc (type:string) | |
225: #ff00cc (type:string) | |
226: #ff33cc (type:string) | |
227: #ff66cc (type:string) | |
228: #ff99cc (type:string) | |
229: #ffcccc (type:string) | |
230: #ffffcc (type:string) | |
231: #000000 (type:string) | |
232: #ff00ff (type:string) | |
233: #000000 (type:string) | |
234: #9900ff (type:string) | |
235: #9933ff (type:string) | |
236: #9966ff (type:string) | |
237: #9999ff (type:string) | |
238: #99ccff (type:string) | |
239: #99ffff (type:string) | |
240: #cc00ff (type:string) | |
241: #cc33ff (type:string) | |
242: #cc66ff (type:string) | |
243: #cc99ff (type:string) | |
244: #ccccff (type:string) | |
245: #ccffff (type:string) | |
246: #ff00ff (type:string) | |
247: #ff33ff (type:string) | |
248: #ff66ff (type:string) | |
249: #ff99ff (type:string) | |
250: #ffccff (type:string) | |
251: #ffffff (type:string) | |
nextTextFieldID: 1 (prototype) (type:number) | |
guidesColor: #58ffff (prototype) (type:string) | |
guidesVisible: true (prototype) (type:boolean) | |
guidesLocked: false (prototype) (type:boolean) | |
guidesSnapTo: true (prototype) (type:boolean) | |
sharedLibURL: (prototype) (type:string) | |
gridSnapTo: false (prototype) (type:boolean) | |
objectsSnapTo: true (prototype) (type:boolean) | |
gridSnapAccuracy: 1 (prototype) (type:number) | |
guidesSnapAccuracy: 1 (prototype) (type:number) | |
templateDescription: (prototype) (type:string) | |
templateFilename: (prototype) (type:string) | |
previewFrame: 0 (prototype) (type:number) | |
pixelSnap: false (prototype) (type:boolean) | |
breakpointCount: 0 (prototype) (type:number) | |
snapAlign: true (prototype) (type:boolean) | |
snapAlignVerticalCenter: false (prototype) (type:boolean) | |
snapAlignHorizontalCenter: false (prototype) (type:boolean) | |
snapAlignBorder: false (prototype) (type:boolean) | |
snapAlignHorizontalSpacing: 0 (prototype) (type:number) | |
snapAlignVerticalSpacing: 0 (prototype) (type:number) | |
snapAlignBorderSpacing: 0 (prototype) (type:number) | |
hasData: false (prototype) (type:boolean) | |
tabOrderMode: 1 (prototype) (type:number) | |
documentType: timeline (prototype) (type:string) | |
languagePrefIndex: -1 (prototype) (type:number) | |
languagePrefURL: (prototype) (type:string) | |
languagePrefAutoDetect: true (prototype) (type:boolean) | |
languagePrefDefaultLanguage: (prototype) (type:string) | |
languagePrefAvailableLanguages: (prototype) (type:object) | |
hasStageLanguage: false (prototype) (type:boolean) | |
stageLanguage: (prototype) (type:string) | |
exportAllComponentSchemasToSWF: false (prototype) (type:boolean) | |
metadata: <?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> | |
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.2-c003 61.141987, 2011/02/22-12:03:51 "> | |
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | |
<rdf:Description rdf:about="" | |
xmlns:xmp="http://ns.adobe.com/xap/1.0/"> | |
<xmp:CreatorTool>Adobe Flash Professional CS5.5 - build 349</xmp:CreatorTool> | |
<xmp:CreateDate>2014-04-26T01:41:15+09:00</xmp:CreateDate> | |
</rdf:Description> | |
</rdf:RDF> | |
</x:xmpmeta> | |
<?xpacket end="w"?> (prototype) (type:string) | |
mobileSettings: (prototype) (type:string) | |
replaceStringsMethod: 0 (prototype) (type:number) | |
hasPostProcessor: false (prototype) (type:boolean) | |
guid: 0001004F-0000-0000-0000-0000F83E7A0E (prototype) (type:string) | |
postProcessorName: (prototype) (type:string) | |
postProcessorDataSize: 0 (prototype) (type:number) | |
timelineHeight: -1 (prototype) (type:number) | |
timelineLayerWidth: -1 (prototype) (type:number) | |
majorVersion: 11 (prototype) (type:number) | |
minorVersion: 5 (prototype) (type:number) | |
buildNumber: 349 (prototype) (type:number) | |
versionInfo: Saved by Adobe Flash Mac Intel 11.5 build 349 timecount = 1398471479 (prototype) (type:string) | |
carbonLineSpacing: false (prototype) (type:boolean) | |
selection: (prototype) (type:object) | |
perspectiveFieldOfView: 55 (prototype) (type:number) | |
mergeForSelection: true (prototype) (type:boolean) | |
sourcePath: . (prototype) (type:string) | |
libraryPath: $(AppConfig)/ActionScript 3.0/libs (prototype) (type:string) | |
externalLibraryPath: $(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc (prototype) (type:string) | |
playerTarget: Flash Player 10.2 (prototype) (type:string) | |
pathURI: undefined (prototype) (type:undefined) | |
isUncompressed: false (prototype) (type:boolean) | |
inTextEditMode: false (prototype) (type:boolean) | |
Air2_5_Android: [object Extension] (stocked) (prototype) (type:object) | |
Air2_5: [object Extension] (stocked) (prototype) (type:object) | |
Brush: [object Extension] (stocked) (prototype) (type:object) | |
Collision: [object Extension] (stocked) (prototype) (type:object) | |
FLBridge: [object Extension] (stocked) (prototype) (type:object) | |
FLfile: [object Extension] (stocked) (prototype) (type:object) | |
PointGrid: [object Extension] (stocked) (prototype) (type:object) | |
Stroke: [object Extension] (stocked) (prototype) (type:object) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment