⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 controlvr_moveleft.htm

📁 基于actionscript3.0的flashLoading控件
💻 HTM
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>controlVR.moveLeft()</title>
<link href="../shares/help.css" rel="stylesheet" type="text/css">
</head>

<body>
<h1><a href="controlvr_class.htm">controlVR</a>.moveLeft()</h1>
<H4>Availability</H4>
<p>Flash Player 7 </p>
<H4>Edition</H4>
<p>Flash MX 2004.</p>
<H4>Usage</H4>
<pre>controlVR.moveLeft()</pre>
<H4>Parameters</H4>
<p>None.</p>
<H4>Returns</H4>
<p>Returns nothing. </p>
<H4>Description</H4>
<p>Moves the object  to the left. </p>
<H4>Example</H4>
<p>The first example willl be placed on a button and will move the object one image to the left  per click:</p>
<code><pre>
on(press){
	vr_mc.moveLeft()
}</pre></code>
<p>The second example will also be placed on a button. If the user clicks and holds the button the object will continue to move leftwards until the user  releases the button. </p>
<code><pre>on(press){

	var moveID = setInterval(vr_mc , "moveLeft",50)
}
on(release){
	clearInterval(moveID);
}
on(releaseOutside){
	clearInterval(moveID);
}</pre></code>
<h4>See also</h4>
<p> <a href="controlvr_moveright.htm">controlVR.moveRight()</a>,<a href="controlvr_moveup.htm">controlVR.moveUp()</a>,<a href="controlvr_movedown.htm">controlVR.moveDown()</a></p>
<p>&nbsp;</p>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -