| Jakub Vrana 2005-04-27, 3:57 pm |
| vrana Wed Apr 27 10:19:44 2005 EDT
Modified files:
/phpdoc/en/reference/ming/functions swfaction.xml
Log:
<parameter> around parameters
http://cvs.php.net/diff.php/phpdoc/....9&r2=1.10&ty=u
Index: phpdoc/en/reference/ming/functions/swfaction.xml
diff -u phpdoc/en/reference/ming/functions/swfaction.xml:1.9 phpdoc/en/reference/ming/functions/swfaction.xml:1.10
--- phpdoc/en/reference/ming/functions/swfaction.xml:1.9 Fri Nov 12 07:59:09 2004
+++ phpdoc/en/reference/ming/functions/swfaction.xml Wed Apr 27 10:19:43 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/ming.xml, last change in rev 1.24 -->
<refentry id="function.swfaction">
<refnamediv>
@@ -129,8 +129,8 @@
<term>substr(string, location, length)</term>
<listitem>
<simpara>
- Returns the substring of length length at location location of
- the given string string.
+ Returns the substring of length <parameter>length</parameter> at location <parameter>location</parameter> of
+ the given string <parameter>string</parameter>.
</simpara>
</listitem>
</varlistentry>
@@ -143,8 +143,8 @@
<term>duplicateClip(clip, name, depth)</term>
<listitem>
<simpara>
- Duplicate the named movie clip (aka sprite). The new movie clip has name name
- and is at depth depth.
+ Duplicate the named movie <parameter>clip</parameter> (aka sprite). The new movie clip has name <parameter>name</parameter>
+ and is at depth <parameter>depth</parameter>.
</simpara>
</listitem>
</varlistentry>
@@ -169,7 +169,7 @@
<term>startDrag(target, lock, [left, top, right, bottom])</term>
<listitem>
<simpara>
- Start dragging the movie clip target. The lock argument indicates whether
+ Start dragging the movie clip <parameter>target</parameter>. The <parameter>lock</parameter> argument indicates whether
to lock the mouse (?)- use 0 (&false;) or 1 (&true;). Optional parameters
define a bounding area for the dragging.
</simpara>
@@ -195,9 +195,9 @@
<term>getURL(url, target, [method])</term>
<listitem>
<simpara>
- Load the given URL into the named target. The target argument
+ Load the given URL into the named target. The <parameter>target</parameter> argument
corresponds to HTML document targets (such as "_top" or "_blank").
- The optional method argument can be POST or GET if you want to submit
+ The optional <parameter>method</parameter> argument can be POST or GET if you want to submit
variables back to the server.
</simpara>
</listitem>
@@ -206,7 +206,7 @@
<term>loadMovie(url, target)</term>
<listitem>
<simpara>
- Load the given URL into the named target. The target argument can be a
+ Load the given URL into the named target. The <parameter>target</parameter> argument can be a
frame name (I think), or one of the magical values "_level0" (replaces
current movie) or "_level1" (loads new movie on top of current movie).
</simpara>
@@ -264,7 +264,7 @@
<term>gotoFrame(num)</term>
<listitem>
<simpara>
- Go to frame number num. Frame numbers start at 0.
+ Go to frame number <parameter>num</parameter>. Frame numbers start at 0.
</simpara>
</listitem>
</varlistentry>
@@ -272,7 +272,7 @@
<term>gotoFrame(name)</term>
<listitem>
<simpara>
- Go to the frame named name. Which does a lot of good, since I
+ Go to the frame named <parameter>name</parameter>. Which does a lot of good, since I
haven't added frame labels yet.
</simpara>
</listitem>
|