今回作成したサンプル
- TextArea に最初 0 が表示され、マウスでクリックもしくは Enter キーを押すごとに値が 1 増えるアプリです。
[Fatal Error] :3:6: エレメント型 "Hoge" は対応する終了タグ "</Hoge>" で終了する必要があります。 適格な形式でないテキストが検出されました。詳細については、C:\hoge\fuga\piyo\validation_errors.log を参照してください。
org.xml.sax.SAXParseException: エレメント型 "Hoge" は対応する終了タグ "</Hoge>" で終了する必要があります。
For example, if a method in my custom class returns a Boolean, I would like to be able to click on the word "Boolean", which would take me to the Boolean documentation in the AS3.0 Language Reference:まさにこの機能! (`・ω・´)
http://help.adobe.com/en_US/AS3LCR/Flash_10.0/Boolean.html
Nice request but out of scope for this release. Deferring.として、クローズされてます。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <!-- pom.xml参考 : http://dev.yoolab.org/maven/content/repositories/releases/org/as3commons/as3commons-project/1.0.1/as3commons-project-1.0.1.pom --> <modelVersion>4.0.0</modelVersion> <groupId>com.objectfanatics</groupId> <artifactId>sandbox</artifactId> <packaging>swc</packaging> <name>ObjectFanatics Sandbox Project</name> <version>0.0.1-SNAPSHOT</version> <inceptionYear>2010</inceptionYear> <url>http://www.objectfanatics.com/</url> <description>ObjectFanatics Sandbox Project</description> <properties> <!-- flex-mojos version --> <flex-mojos.version>3.5.0</flex-mojos.version> <!-- flex version --> <flex.version>3.5.0.12683</flex.version> <!-- flashplayer version --> <flashplayer.version>${flashplayer.version.major}.${flashplayer.version.minor}.${flashplayer.version.revision}</flashplayer.version> <flashplayer.version.major>10</flashplayer.version.major> <flashplayer.version.minor>0</flashplayer.version.minor> <flashplayer.version.revision>0</flashplayer.version.revision> </properties> <!-- 開発者情報 --> <developers> <developer> <id>makoto.sato</id> <name>Makoto Sato</name> <email>makoto.sato [at] objectfanatics.com</email> <url>http://www.objectfanatics.com</url> <organization>ObjectFanatics Ltd.</organization> <organizationUrl>http://www.objectfanatics.com</organizationUrl> <timezone>+9</timezone> </developer> </developers> <dependencies> <!-- Player/Air Global dependency. --> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>playerglobal</artifactId> <version>${flex.version}</version> <scope>external</scope> <type>swc</type> <classifier>${flashplayer.version.major}</classifier> <!--<classifier>${flashplayer.version.major}.${flashplayer.version.minor}</classifier>--> </dependency> <!-- for unit testing. http://asunit.org/ --> <dependency> <groupId>com.asunit</groupId> <artifactId>asunit</artifactId> <version>20071011</version> <type>swc</type> <scope>test</scope> </dependency> <!-- Dependencies for Flex. This includes flex classes. ex: ListCollectionView. --> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>framework</artifactId> <version>${flex.version}</version> <scope>external</scope> <type>swc</type> </dependency> <!-- Dependencies for Flex. This includes resource bundle. Not having this dependency causes some errors. ex: [ERROR] Unable to resolve resource bundle "collections" for locale "en_US". --> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>framework</artifactId> <version>${flex.version}</version> <type>rb.swc</type> <scope>external</scope> </dependency> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>utilities</artifactId> <version>${flex.version}</version> <type>swc</type> <scope>external</scope> </dependency> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>flex</artifactId> <version>${flex.version}</version> <type>swc</type> <scope>external</scope> </dependency> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>framework</artifactId> <version>${flex.version}</version> <scope>external</scope> <type>zip</type> <classifier>configs</classifier> </dependency> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>rpc</artifactId> <version>${flex.version}</version> <scope>external</scope> <type>swc</type> </dependency> <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>rpc</artifactId> <version>${flex.version}</version> <type>rb.swc</type> <scope>external</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/actionscript</sourceDirectory> <testSourceDirectory>src/test/actionscript</testSourceDirectory> <defaultGoal>test</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.sonatype.flexmojos</groupId> <artifactId>flexmojos-maven-plugin</artifactId> <version>${flex-mojos.version}</version> <extensions>true</extensions> <dependencies> <dependency> <groupId>com.adobe.flex</groupId> <artifactId>compiler</artifactId> <version>${flex.version}</version> <type>pom</type> </dependency> </dependencies> <configuration> <configurationReport>true</configurationReport> <targetPlayer>${flashplayer.version}</targetPlayer> <locales> <param>en_US</param> </locales> <updateSecuritySandbox>true</updateSecuritySandbox> <includeAsClasses> <source> <directory>src/main/actionscript</directory> </source> </includeAsClasses> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>flex-mojos-repository</id> <url>http://repository.sonatype.org/content/groups/flexgroup</url> </repository> </repositories> </project>
"C:\Program Files\flex_sdk_4.1.0.16076\bin\asdoc.exe" -source-path . -doc-sources .ちなみに、as3のソースコードの内容によって以下のようなエラーが出ることがある。
エラー: toplevel.xml を作成できませんでした : String index out of range: -41原因は未確認。
スレッド1:処理A -> 処理B -> 処理C のように実行される。
スレッド1:処理Aに処理Bをコールバック登録してフォーク スレッド2: 処理A実行 -> 処理Bに処理Cをコールバック登録してフォーク スレッド3: 処理B実行 -> 処理Cにフォーク スレッド4: 処理C実行この手の処理が、かなり面倒。そもそも概念的に非同期処理でないものを実装上強引に非同期処理にしているだけであり、同時並行処理のメリットが全く無い(シングルスレッド環境などの制約条件下でしかたなく対応するケースがほとんどだと思われ)。しかし、依存する処理をコールバックに変換するだけなので、同期呼び出しの場合からの機械的な変換は可能。この手の設計になる場合、同期処理で擬似コードを書いてから、その後機械的に非同期処理に変換したほうがいいかも。
スレッド1:処理Aフォーク -> 処理Bフォーク -> 処理Cフォーク スレッド2: -> 処理A スレッド3: -> 処理B スレッド4: → 処理Cスレッド1の動作は一瞬にして行われるので、処理A,B,Cはほぼ同時に開始する。このような非同期処理は、人間から見てもそこそこ直感的。多くの場合シーケンシャルに動作させた場合よりも高い性能が得られる。
スレッド1:処理Aフォーク -> 処理Bフォーク -> 処理Cフォーク スレッド2: -> 処理A -> 合流条件確認 -> (失敗) スレッド3: -> 処理B -> 合流条件確認 -> (成功) -> 合流後の処理 スレッド4: -> 処理C -> 合流条件確認 -> (失敗)非同期処理のパフォーマンスを享受しつつ、処理の同期もおこなってしまうというおいしいところ取りですね。ジョインする条件の確認や、その条件を構成する情報の登録などをする必要があるのでコーディングレベルでは少しめんどくさいのですが、事前に設計をきちんとやっておけば問題ないでしょう。