スクリプトを以下の内容に更新しましたが、それでも同じ構文エラーが発生します...何か提案はありますか??
<fx:Script>
<![CDATA[
try {
URL url = new URL("http://www.rwolfc.com/App/TRY.txt"){;
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while ((str = in.readLine()) != null) {
}
in.close();
} catch (MalformedURLException e) {
} catch (IOException e) {
}
]]>
</fx:Script>
しかし、これを使用すると、フレックスで次のエラーが発生します。
1071: Syntax error: expected a definition keyword (such as function) after attribute String, not str.
1073: Syntax error: expecting a catch or finally clause.
1084: Syntax error: expecting rightbrace before leftbrace.
ヘルプ!!??!!