<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>中文Flex例子 &#187; CALL</title>
	<atom:link href="http://blog.minidx.com/tag/call/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.minidx.com</link>
	<description>中文Adobe Flex例子,Flex实例教程,RIA资源,全文检索技术,算法和数据结构</description>
	<lastBuildDate>Thu, 31 Mar 2011 03:22:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex中利用ExternalInterface API从JavaScript中获取内容并在Flex应用中使用的例子</title>
		<link>http://blog.minidx.com/2008/04/12/706.html</link>
		<comments>http://blog.minidx.com/2008/04/12/706.html#comments</comments>
		<pubDate>Sat, 12 Apr 2008 05:35:14 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[CALL]]></category>
		<category><![CDATA[ExternalInterface]]></category>
		<category><![CDATA[HTML模板]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/2008/04/12/706.html</guid>
		<description><![CDATA[在之前的文章中，关于ExternalInterface API的使用已经有不少了：    Flex中利用ExternalInterface的API调用JavaScript函数的例子     Flex中检查是否支持ExternalInterface API的例子     Flex中利用ExternalInterface API从HTML模板(HTML templates)中调用ActionScript函数的例子     Flex应用中利用ExternalInterface API取得JavaScript返回值的例子
都说明了ExternalInterface相关的用法。接下来的例子，演示了如何利用ExternalInterface API，不需要写一行JavaScript代码或者编辑HTML模板，从JavaScript中获取内容并在Flex应用中使用。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;
&#160; &#160; &#160; &#160; creationComplete=&#34;init();&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Script&#62;
&#160; &#160; &#160; &#160; &#60;![CDATA[
&#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2008/04/12/706.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>汇编指令–程序转移指令</title>
		<link>http://blog.minidx.com/2007/11/11/75.html</link>
		<comments>http://blog.minidx.com/2007/11/11/75.html#comments</comments>
		<pubDate>Sun, 11 Nov 2007 07:08:39 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[程序开发相关]]></category>
		<category><![CDATA[CALL]]></category>
		<category><![CDATA[JMP]]></category>
		<category><![CDATA[中断]]></category>
		<category><![CDATA[处理器]]></category>
		<category><![CDATA[循环控制]]></category>
		<category><![CDATA[无条件转移]]></category>
		<category><![CDATA[无符号整数]]></category>
		<category><![CDATA[条件转移]]></category>
		<category><![CDATA[汇编]]></category>
		<category><![CDATA[汇编指令]]></category>
		<category><![CDATA[溢出]]></category>
		<category><![CDATA[短转移]]></category>
		<category><![CDATA[转移指令]]></category>
		<category><![CDATA[长转移]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/2007/11/11/75.html</guid>
		<description><![CDATA[汇编的程序转移指令，包括无条件转移指令 ，条件转移指令, 循环控制指令,中断指令,处理器控制指令.具体包括:







●无条件转移指令 (长转移)
JMP 无条件转移指令
CALL 过程调用
RET/RETF过程返回.
●条件转移指令 (短转移,-128到+127的距离内)
( 当且仅当(SF XOR OF)=1时,OP1&#60;OP2 )
JA/JNBE 不小于或不等于时转移.
JAE/JNB 大于或等于转移.
JB/JNAE 小于转移.
JBE/JNA 小于或等于转移.
以上四条,测试无符号整数运算的结果(标志C和Z).
JG/JNLE 大于转移.
JGE/JNL 大于或等于转移.
JL/JNGE 小于转移.
JLE/JNG 小于或等于转移.
以上四条,测试带符号整数运算的结果(标志S,O和Z).
JE/JZ 等于转移.
JNE/JNZ 不等于时转移.
JC 有进位时转移.
JNC 无进位时转移.
JNO 不溢出时转移.
JNP/JPO 奇偶性为奇数时转移.
JNS 符号位为 &#8220;0&#8243; 时转移.
JO 溢出转移.
JP/JPE 奇偶性为偶数时转移.
JS 符号位为 &#8220;1&#8243; 时转移.
●循环控制指令(短转移)
LOOP CX不为零时循环.
LOOPE/LOOPZ CX不为零且标志Z=1时循环.
LOOPNE/LOOPNZ CX不为零且标志Z=0时循环.
JCXZ CX为零时转移.
JECXZ ECX为零时转移.
●中断指令
INT 中断指令
INTO 溢出中断
IRET 中断返回
●处理器控制指令
HLT 处理器暂停, 直到出现中断或复位信号才继续.
WAIT 当芯片引线TEST为高电平时使CPU进入等待状态.
ESC 转换到外处理器.
LOCK 封锁总线.
NOP 空操作.
STC 置进位标志位.
CLC 清进位标志位.
CMC 进位标志取反.
STD 置方向标志位.
CLD 清方向标志位.
STI 置中断允许位.
CLI 清中断允许位.
你可能还对下列文章感兴趣:汇编指令&#8211;处理机控制指令汇编指令&#8211;伪指令汇编指令–串指令汇编指令&#8211;逻辑运算指令汇编指令–算术运算指令]]></description>
		<wfw:commentRss>http://blog.minidx.com/2007/11/11/75.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/18 queries in 0.144 seconds using disk
Object Caching 259/522 objects using disk

Served from: blog.minidx.com @ 2012-02-09 16:00:27 -->
