Discussion:
r22760 by jghali - Improvements to scripterapi-setobjprop.html: typo fixes, functions in alphabetical order...
scribus-commit
2018-11-17 19:50:45 UTC
Permalink
Author: jghali
Date: Sat Nov 17 19:50:45 2018
New Revision: 22760

URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=22760
Log:
Improvements to scripterapi-setobjprop.html: typo fixes, functions in alphabetical order...

Modified:
trunk/Scribus/doc/de/scripterapi-setobjprop.html
trunk/Scribus/doc/en/scripterapi-setobjprop.html
trunk/Scribus/doc/fr/scripterapi-setobjprop.html
trunk/Scribus/doc/it/scripterapi-setobjprop.html

Modified: trunk/Scribus/doc/de/scripterapi-setobjprop.html
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/de/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/de/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/de/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -18,6 +18,10 @@
<p>Loads the picture "picture" into the image frame "name". If "name" is not given the currently selected item is used.</p>
<p>May raise <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the target frame is not an image frame</p></dd></dt>

+<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
+<dd><code>scaleImage(x, y [, "name"])</code>
+<p><b>Do not use this command since it no longer works. Use setImageScale instead.</b></p></dd>
+
<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
<dd><code>setCornerRadius(radius, ["name"])</code>
<p>Sets the corner radius of the object "name". The radius is expressed in points regardless of page units, and must be an integer. If "name" is not given the currently selected item is used.</p>
@@ -29,7 +33,7 @@

<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
<dd><code>setFillBlendmode(blendmode, ["name"])</code>
-<p>Sets the fill blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
+<p>Sets the fill blendmode of the object "name" to blendmode. If "name" is not given the currently selected item is used.</p></dd>

<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
<dd><code>setFillColor("color", ["name"])</code>
@@ -42,15 +46,8 @@

<dt><a name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
<dd><code>setFillTransparency(transparency, ["name"])</code>
-<p>Sets the fill transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
-
-<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
-<dd><code>setLineBlendmode(blendmode, ["name"])</code>
-<p>Sets the line blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
-<dd><code>setLineTransparency(transparency, ["name"])</code>
-<p>Sets the line transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
+<p>Sets the fill transparency of the object "name". If "name" is not given the currently selected item is used.</p>
+<p>In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>

<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
<dd><code>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])</code>
@@ -59,41 +56,6 @@
<dt><a name="-setGradientStop"><strong>setGradientStop</strong></a>(...)</dt>
<dd><code>setGradientStop("color", shade, opacity, ramppoint, ["name"])</code>
<p>Set or add a gradient stop to the gradient fill of the object \"name\" at position ramppoint. Color descriptions are the same as for <a href="#-setFillColor">setFillColor</a>() and <a href="#-setFillShade">setFillShade</a>(). setGradientFill() must have been called previously for the gradient fill to be visible.</p></dd>
-
-<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
-<dd><code>setLineCap(captype, ["name"])</code>
-<p>Sets the line cap style of the object "name" to the style "cap". If "name" is not given the currently selected item is used. There are predefined constants for "cap" - CAP_&lt;type&gt;.</p></dd>
-
-<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code>setLineColor("color", ["name"])</code>
-<p>Sets the line color of the object "name" to the color "color". If "name" is not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code>setMultiLine("namedStyle", ["name"])</code>
-<p>Sets the line style of the object "name" to the named style "namedStyle". If "name" is not given the currently selected item is used.</p>
-<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the line style doesn't exist.</p></dd>
-
-<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code>setLineJoin(join, ["name"])</code>
-<p>Sets the line join style of the object "name" to the style "join". If "name" is not given the currently selected item is used. There are predefined constants for join - JOIN_&lt;type&gt;.</p></dd>
-
-<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code>setLineShade(shade, ["name"])</code>
-<p>Sets the shading of the line color of the object "name" to "shade". "shade" must be an integer value in the range from 0 (lightest) to 100 (full color intensity). If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line shade is out of bounds.</p></dd>
-
-<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code>setLineStyle(style, ["name"])</code>
-<p>Sets the line style of the object "name" to the style "style". If "name" is not given the currently selected item is used. There are predefined constants for "style" - LINE_&lt;style&gt;.</p></dd>
-
-<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code>setLineWidth(width, ["name"])</code>
-<p>Sets line width of the object "name" to "width". "width" must be in the range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line width is out of bounds.</p></dd>
-
-<dt><a name="-scaleImage"><strong><em>scaleImage</em></strong></a>(...)</dt>
-<dd><code>scaleImage(x, y [, "name"])</code>
-<p><b>Do not use this command, since it no longer works. Use setImageScale instead.</b></p></dd>

<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
<dd><code>setImageScale(x, y [, "name"])</code>
@@ -104,6 +66,48 @@
<dd><code>setImageOffset(x, y [, "name"])</code>
<p>Sets the position of the picture in the image frame "name". If "name" is not given the currently selected item is used. The specified offset values are equal to the values shown on properties palette when point unit is used.</p>
<p>May raise <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the target frame is not an image frame</p></dd>
+
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(blendmode, ["name"])</code>
+<p>Sets the line blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
+<dd><code>setLineCap(captype, ["name"])</code>
+<p>Sets the line cap style of the object "name" to the style "cap". If "name" is not given the currently selected item is used.</p>
+<p>The value "cap" must be taken amongst predefined constants CAP_&lt;type&gt;: CAP_FLAT, CAP_ROUND, or CAP_SQUARE.</p></dd>
+
+<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
+<dd><code>setLineColor("color", ["name"])</code>
+<p>Sets the line color of the object "name" to the color "color". If "name" is not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
+<dd><code>setLineJoin(join, ["name"])</code>
+<p>Sets the line join style of the object "name" to the style "join". If "name" is not given the currently selected item is used.</p>
+<p>The value "join" must be taken amongst predefined constants JOIN_&lt;type&gt;: JOIN_BEVEL, JOIN_MITTER or JOIN_ROUND.</p></dd>
+
+<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
+<dd><code>setLineShade(shade, ["name"])</code>
+<p>Sets the shading of the line color of the object "name" to "shade". "shade" must be an integer value in the range from 0 (lightest) to 100 (full color intensity). If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line shade is out of bounds.</p></dd>
+
+<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
+<dd><code>setLineStyle(style, ["name"])</code>
+<p>Sets the line style of the object "name" to the style "style". If "name" is not given the currently selected item is used.</p>
+<p>There are predefined constants for "style" - LINE_&lt;style&gt;.</p></dd>
+
+<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparency, ["name"])</code>
+<p>Sets the line transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
+
+<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
+<dd><code>setLineWidth(width, ["name"])</code>
+<p>Sets line width of the object "name" to "width". "width" must be in the range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line width is out of bounds.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("namedStyle", ["name"])</code>
+<p>Sets the line style of the object "name" to the named style "namedStyle". If "name" is not given the currently selected item is used.</p>
+<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the line style doesn't exist.</p></dd>

<dt><a name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributes, ["name"])</code>

Modified: trunk/Scribus/doc/en/scripterapi-setobjprop.html
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/en/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/en/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/en/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -18,6 +18,10 @@
<p>Loads the picture "picture" into the image frame "name". If "name" is not given the currently selected item is used.</p>
<p>May raise <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the target frame is not an image frame</p></dd></dt>

+<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
+<dd><code>scaleImage(x, y [, "name"])</code>
+<p><b>Do not use this command since it no longer works. Use setImageScale instead.</b></p></dd>
+
<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
<dd><code>setCornerRadius(radius, ["name"])</code>
<p>Sets the corner radius of the object "name". The radius is expressed in points regardless of page units, and must be an integer. If "name" is not given the currently selected item is used.</p>
@@ -29,7 +33,7 @@

<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
<dd><code>setFillBlendmode(blendmode, ["name"])</code>
-<p>Sets the fill blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
+<p>Sets the fill blendmode of the object "name" to blendmode. If "name" is not given the currently selected item is used.</p></dd>

<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
<dd><code>setFillColor("color", ["name"])</code>
@@ -42,15 +46,8 @@

<dt><a name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
<dd><code>setFillTransparency(transparency, ["name"])</code>
-<p>Sets the fill transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
-
-<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
-<dd><code>setLineBlendmode(blendmode, ["name"])</code>
-<p>Sets the line blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
-<dd><code>setLineTransparency(transparency, ["name"])</code>
-<p>Sets the line transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
+<p>Sets the fill transparency of the object "name". If "name" is not given the currently selected item is used.</p>
+<p>In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>

<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
<dd><code>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])</code>
@@ -59,41 +56,6 @@
<dt><a name="-setGradientStop"><strong>setGradientStop</strong></a>(...)</dt>
<dd><code>setGradientStop("color", shade, opacity, ramppoint, ["name"])</code>
<p>Set or add a gradient stop to the gradient fill of the object \"name\" at position ramppoint. Color descriptions are the same as for <a href="#-setFillColor">setFillColor</a>() and <a href="#-setFillShade">setFillShade</a>(). setGradientFill() must have been called previously for the gradient fill to be visible.</p></dd>
-
-<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
-<dd><code>setLineCap(captype, ["name"])</code>
-<p>Sets the line cap style of the object "name" to the style "cap". If "name" is not given the currently selected item is used. There are predefined constants for "cap" - CAP_&lt;type&gt;.</p></dd>
-
-<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code>setLineColor("color", ["name"])</code>
-<p>Sets the line color of the object "name" to the color "color". If "name" is not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code>setMultiLine("namedStyle", ["name"])</code>
-<p>Sets the line style of the object "name" to the named style "namedStyle". If "name" is not given the currently selected item is used.</p>
-<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the line style doesn't exist.</p></dd>
-
-<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code>setLineJoin(join, ["name"])</code>
-<p>Sets the line join style of the object "name" to the style "join". If "name" is not given the currently selected item is used. There are predefined constants for join - JOIN_&lt;type&gt;.</p></dd>
-
-<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code>setLineShade(shade, ["name"])</code>
-<p>Sets the shading of the line color of the object "name" to "shade". "shade" must be an integer value in the range from 0 (lightest) to 100 (full color intensity). If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line shade is out of bounds.</p></dd>
-
-<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code>setLineStyle(style, ["name"])</code>
-<p>Sets the line style of the object "name" to the style "style". If "name" is not given the currently selected item is used. There are predefined constants for "style" - LINE_&lt;style&gt;.</p></dd>
-
-<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code>setLineWidth(width, ["name"])</code>
-<p>Sets line width of the object "name" to "width". "width" must be in the range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line width is out of bounds.</p></dd>
-
-<dt><a name="-scaleImage"><strong><em>scaleImage</em></strong></a>(...)</dt>
-<dd><code>scaleImage(x, y [, "name"])</code>
-<p><b>Do not use this command, since it no longer works. Use setImageScale instead.</b></p></dd>

<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
<dd><code>setImageScale(x, y [, "name"])</code>
@@ -104,6 +66,48 @@
<dd><code>setImageOffset(x, y [, "name"])</code>
<p>Sets the position of the picture in the image frame "name". If "name" is not given the currently selected item is used. The specified offset values are equal to the values shown on properties palette when point unit is used.</p>
<p>May raise <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the target frame is not an image frame</p></dd>
+
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(blendmode, ["name"])</code>
+<p>Sets the line blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
+<dd><code>setLineCap(captype, ["name"])</code>
+<p>Sets the line cap style of the object "name" to the style "cap". If "name" is not given the currently selected item is used.</p>
+<p>The value "cap" must be taken amongst predefined constants CAP_&lt;type&gt;: CAP_FLAT, CAP_ROUND, or CAP_SQUARE.</p></dd>
+
+<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
+<dd><code>setLineColor("color", ["name"])</code>
+<p>Sets the line color of the object "name" to the color "color". If "name" is not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
+<dd><code>setLineJoin(join, ["name"])</code>
+<p>Sets the line join style of the object "name" to the style "join". If "name" is not given the currently selected item is used.</p>
+<p>The value "join" must be taken amongst predefined constants JOIN_&lt;type&gt;: JOIN_BEVEL, JOIN_MITTER or JOIN_ROUND.</p></dd>
+
+<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
+<dd><code>setLineShade(shade, ["name"])</code>
+<p>Sets the shading of the line color of the object "name" to "shade". "shade" must be an integer value in the range from 0 (lightest) to 100 (full color intensity). If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line shade is out of bounds.</p></dd>
+
+<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
+<dd><code>setLineStyle(style, ["name"])</code>
+<p>Sets the line style of the object "name" to the style "style". If "name" is not given the currently selected item is used.</p>
+<p>There are predefined constants for "style" - LINE_&lt;style&gt;.</p></dd>
+
+<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparency, ["name"])</code>
+<p>Sets the line transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
+
+<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
+<dd><code>setLineWidth(width, ["name"])</code>
+<p>Sets line width of the object "name" to "width". "width" must be in the range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line width is out of bounds.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("namedStyle", ["name"])</code>
+<p>Sets the line style of the object "name" to the named style "namedStyle". If "name" is not given the currently selected item is used.</p>
+<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the line style doesn't exist.</p></dd>

<dt><a name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributes, ["name"])</code>

Modified: trunk/Scribus/doc/fr/scripterapi-setobjprop.html
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/fr/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/fr/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/fr/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -1,98 +1,118 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <title>Choisir les propri&eacute;t&eacute;s de l'objet</title>
+ <title>D&eacute;finir les propri&eacute;t&eacute;s de l'objet</title>
</head>
<body>
-<h2>Choisir les propri&eacute;t&eacute;s de l'objet</h2>
+<h2>D&eacute;finir les propri&eacute;t&eacute;s de l'objet</h2>

<dl>

<dt><a name="-linkTextFrames"><strong>linkTextFrames</strong></a>(...)</dt>
-<dd><code><a href="#-linkTextFrames">linkTextFrames</a>("nomDepart", "nomArrivee")</code>
+<dd><code>linkTextFrames("nomDepart", "nomArrivee")</code>
<p>&Eacute;tablit un lien entre deux cadres de texte. Le cadre nomm&eacute; "nomDepart" est li&eacute; au cadre "nomArrivee". Le cadre cible doit &ecirc;tre un cadre de texte vide et ne doit pas pointer vers d'autres cadres ni porter un lien provenant d'autres cadres.</p>
<p>Peut g&eacute;n&eacute;rer <a href="#ScribusException">ScribusException</a> en cas d'infraction des r&egrave;gles de liens.</p></dd>

<dt><a name="-loadImage"><strong>loadImage</strong></a>(...)</dt>
-<dd><code><a href="#-loadImage">loadImage</a>("nomFichier" [, "nom"])</code>
+<dd><code>loadImage("nomFichier" [, "nom"])</code>
<p>Charge l'image "nomFichier" dans le cadre d'image "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
<p>Peut g&eacute;n&eacute;rer <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre cible n'est pas un cadre d'image</p></dd></dt>
-
+
<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
-<dd><code><a href="#-scaleImage">scaleImage</a>(x, y [, "nom"])</code>
-<p>D&eacute;finit les facteurs de redimensionnement internes de l'image dans le cadre d'image "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Un nombre de 1 signifie 100 %. Les facteurs de redimensionnement internes sont diff&eacute;rents des valeurs indiqu&eacute;es dans la palette des propri&eacute;t&eacute;s. Note : d&eacute;pr&eacute;ci&eacute;e, veuillez utiliser setImageScale().</p>
-<p>Peut g&eacute;n&eacute;rer <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre cible n'est pas un cadre d'image</p></dd>
+<dd><code>scaleImage(x, y [, "nom"])</code>
+<p><b>Veuillez ne plus utiliser cette fonction. Utilisez setImageScale en lieu et place.</b></p></dd>
+
+<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
+<dd><code>setCornerRadius(rayon, ["nom"])</code>
+<p>D&eacute;finit le rayon de coin de l'objet "nom". Le rayon est exprim&eacute; en points. Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
+<p>Peut g&eacute;n&eacute;rer ValueError si le rayon de coin est n&eacute;gatif. </p></dd>
+
+<dt><a name="-setCustomLineStyle"><strong>setCustomLineStyle</strong></a>(...)</dt>
+<dd><code>setCustomLineStyle(nomStyle, ["nom"])</code>
+<p>D&eacute;finit le style de ligne personnalis&eacute; de l'objet "nom" &agrave; la valeur "nomStyle". L'argument "nomStyle" doit &ecirc;tre le nom du style tel que d&eacute;finit dans le gestionnaire de style. Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.</p></dd>
+
+<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
+<dd><code>setFillBlendmode(modeFusion, ["nom"])</code>
+<p>D&eacute;finit le mode de fusion appliqu&eacute; &agrave; la couleur de fond de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.</p></dd>
+
+<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
+<dd><code>setFillColor("couleur", ["nom"])</code>
+<p>D&eacute;finit la "couleur" de fond de l'objet "nom". La "couleur" est le nom d'une des couleurs d&eacute;finies.
+Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p></dd>
+
+<dt><a name="-setFillShade"><strong>setFillShade</strong></a>(...)</dt>
+<dd><code>setFillShade(teinte, ["nom"])</code>
+<p>D&eacute;finit la teinte de la couleur de fond de l'objet "nom". La valeur "teinte" doit &ecirc;tre une valeur enti&egrave;re comprise entre 0 (le plus p&acirc;le) et 100 (toute l'intensit&eacute; couleur).
+Si "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. <p>
+<p>Peut g&eacute;n&eacute;rer ValueError si la couleur de fond est hors limites.</p></dd>
+
+<dt><a name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
+<dd><code>setFillTransparency(transparence, ["name"])</code>
+<p>D&eacute;finit la transparence de la couleur de fond de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.</p>
+<p>En dépit du nom de cette fonction, la valeur "transparence" correspond en r&eacute;alit&eacute; &agrave; <strong>l'opacit&eacute;</strong>, par exemple, 0.9 = 90% d'opacit&eacute;, 0.2 = 20% d'opacit&eacute;.</p></dd>
+
+<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
+<dd><code>setGradientFill(type, "couleur1", teinte1, "couleur2", teinte2, ["nom"])</code>
+<p>D&eacute;finit le d&eacute;grad&eacute; de fond de l'objet "nom" &agrave; "type". Les descriptions des couleurs sont identiques &agrave; celles de <a href="#-setFillColor">setFillColor</a>() et de <a href="#-setFillShade">setFillShade</a>(). Voir
+les constantes pour les types disponibles (FILL_&lt;type&gt;).</p></dd>

<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
-<dd><code><a href="#-setImageScale">setImageScale</a>(x, y [, "nom"])</code>
+<dd><code>setImageScale(x, y [, "nom"])</code>
<p>D&eacute;finit les facteurs de redimensionnement de l'image dans le cadre d'image "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Un nombre de 1 signifie 100 %. Les facteurs de redimensionnement sont &eacute;gaux aux valeurs indiqu&eacute;es dans la palette des propri&eacute;t&eacute;s.</p>
<p>Peut g&eacute;n&eacute;rer <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre cible n'est pas un cadre d'image</p></dd>

<dt><a name="-setImageOffset"><strong>setImageOffset</strong></a>(...)</dt>
-<dd><code><a href="#-setImageOffset">setImageOffset</a>(x, y [, "nom"])</code>
-<p>D&eacute;finit la position de l'image dans le cadre d'image "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Les coordonn&eacute;es sp&eacute;cifi&eacute;es sont &eacute;gales aux valeurs indiqu&eacute;es dans la palette des propri&eacute;t&eacute;s lorsque l'unit&eacute; utilis&eacute;e est le point.</p>
+<dd><code>setImageOffset(x, y [, "nom"])</code>
+<p>D&eacute;finit la position de l'image dans le cadre d'image "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Les coordonn&eacute;es sp&eacute;cifi&eacute;es sont &eacute;gales aux valeurs indiqu&eacute;es dans la palette des propri&eacute;t&eacute;s lorsque l'unit&eacute; utilis&eacute;e est le point.</p>
<p>Peut g&eacute;n&eacute;rer <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> si le cadre cible n'est pas un cadre d'image</p></dd>

-<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
-<dd><code><a href="#-setCornerRadius">setCornerRadius</a>(rayon, ["nom"])</code>
-<p>&Eacute;tablit le rayon de coin de l'objet "nom". Le rayon est exprim&eacute; en points. Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
-<p>Peut g&eacute;n&eacute;rer ValueError si le rayon de coin est n&eacute;gatif. </p></dd>
-
-<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
-<dd><code><a href="#-setFillColor">setFillColor</a>("couleur", ["nom"])</code>
-<p>&Eacute;tablit la couleur de fond de l'objet "nom" &agrave; la couleur "couleur". La "couleur" est le nom d'une des couleurs d&eacute;finies.
-Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p></dd>
-
-<dt><a name="-setFillShade"><strong>setFillShade</strong></a>(...)</dt>
-<dd><code><a href="#-setFillShade">setFillShade</a>(teinte, ["nom"])</code>
-<p>&Eacute;tablit la teinte de la couleur de fond de l'objet "nom" &agrave; "teinte". La "teinte" doit &ecirc;tre une valeur enti&egrave;re entre 0 (le plus p&acirc;le) et 100 (toute l'intensit&eacute; couleur).
-Si "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. <p>
-<p>Peut g&eacute;n&eacute;rer ValueError si la couleur de fond est hors limites.</p></dd>
-
-<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
-<dd><code><a href="#-setGradientFill">setGradientFill</a>(type, "couleur1", teinte1, "couleur2", teinte2, ["nom"])</code>
-<p>&Eacute;tablit le d&eacute;grad&eacute; de fond de l'objet "nom" &agrave; "type". Les descriptions des couleurs sont identiques &agrave; celles de <a href="#-setFillColor">setFillColor</a>() et de<a href="#-setFillShade">setFillShade</a>(). Voir
-les constantes pour les types disponibles (FILL_&lt;type&gt;).</p></dd>
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(modeFusion, ["nom"])</code>
+<p>D&eacute;finit le mode de fusion appliqu&eacute; &agrave; au filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.</p></dd>

<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
<dd><code>setLineCap(typeFin, ["nom"])</code>
-<p>&Eacute;tablit la valeur de style "typeFin" pour le bout de ligne de l'objet "nom".
-Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Il
-y a des constantes pr&eacute;d&eacute;finies pour "typeFin" - CAP_&lt;type&gt;.</p></dd>
+<p>D&eacute;finit le type de fin de ligne "typeFin" de l'objet "nom".
+Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.<p>
+<p>La valeur "typeFin" doit &ecirc;tre choisie parmi les constantes pr&eacute;d&eacute;finies CAP_&lt;type&gt; : CAP_FLAT, CAP_ROUND ou CAP_SQUARE.</p></dd>

<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code><a href="#-setLineColor">setLineColor</a>("couleur", ["nom"])</code>
-<p>&Eacute;tablit la valeur "couleur" pour le filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code><a href="#-setMultiLine">setMultiLine</a>("styleNomme", ["nom"])</code>
-<p>&Eacute;tablit la valeur "styleNomme" pour le style de filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
-<p>Peut g&eacute;n&eacute;rer
-<a href="scripterapi.html#NotFoundError">NotFoundError</a> si le
-style de filet n'existe pas.</p></dd>
-
+<dd><code>setLineColor("couleur", ["nom"])</code>
+<p>D&eacute;finit la "couleur" de filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p></dd>
+
<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code><a href="#-setLineJoin">setLineJoin</a>(jonction, ["nom"])</code>
-<p>&Eacute;tablit la valeur du style "jonction" pour le filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Il
-y a des constantes pr&eacute;d&eacute;finies pour "jonction" - JOIN_&lt;type&gt;.</p></dd>
+<dd><code>setLineJoin(jonction, ["nom"])</code>
+<p>D&eacute;finit la valeur du style "jonction" pour le filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.</p>
+<p>La valeur "jonction" doit &ecirc;tre choisie parmi les constantes pr&eacute;d&eacute;finies JOIN_&lt;type&gt; : JOIN_BEVEL, JOIN_MITTER ou JOIN_ROUND.</p></dd>

<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code><a href="#-setLineShade">setLineShade</a>(teinte, ["nom"])</code>
-<p>&Eacute;tablit la valeur "teinte" pour la couleur de filet de l'objet "nom". La valeur "teinte" doit &ecirc;tre un nombre entier compris entre 0 (p&acirc;le) et 100 (intensit&eacute; maximale).
+<dd><code>setLineShade(teinte, ["nom"])</code>
+<p>D&eacute;finit la teinte de couleur du filet de l'objet "nom" &agrave; la valeur "teinte". La valeur "teinte" doit &ecirc;tre un nombre entier compris entre 0 (p&acirc;le) et 100 (intensit&eacute; maximale).
Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
<p>Peut g&eacute;n&eacute;rer ValueError si la teinte du filet est hors limites.</p></dd>

<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code><a href="#-setLineStyle">setLineStyle</a>(style, ["nom"])</code>
-<p>&Eacute;tablit la valeur "style" pour le filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. Il
-y a des constantes pr&eacute;d&eacute;finies pour "style" - LINE_&lt;style&gt;.</p></dd>
+<dd><code>setLineStyle(style, ["nom"])</code>
+<p>D&eacute;finit le style de filet de l'objet "nom" &agrave; la valeur "style". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.<p>
+<p>Il existe des constantes pr&eacute;d&eacute;finies pour "style" - LINE_&lt;style&gt;.</p></dd>
+
+<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparence, ["name"])</code>
+<p>D&eacute;finit la transparence appliqu&eacute;e au filet de l'objet "nom". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;.</p>
+<p>En dépit du nom de cette fonction, la valeur "transparence" correspond en r&eacute;alit&eacute; &agrave; <strong>l'opacit&eacute;</strong>, par exemple, 0.9 = 90% d'opacit&eacute;, 0.2 = 20% d'opacit&eacute;.</p></dd>

<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code><a href="#-setLineWidth">setLineWidth</a>(epaisseur,
-["nom"])</code>
+<dd><code>setLineWidth(epaisseur, ["nom"])</code>
<p>D&eacute;finit l'&eacute;paisseur de filet de l'objet "nom" &agrave; la valeur "&eacute;paisseur". La valeur "&eacute;paisseur" doit &ecirc;tre entre 0.0 et 12.0 inclusivement,
exprim&eacute;e en points. Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
<p>Peut g&eacute;n&eacute;rer ValueError si l'&eacute;paisseur de filet est hors limites.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("styleNomme", ["nom"])</code>
+<p>D&eacute;finit le style de filet de l'objet "nom" &agrave; la valeur "styleNomme". Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p>
+<p>Peut g&eacute;n&eacute;rer
+<a href="scripterapi.html#NotFoundError">NotFoundError</a> si le
+style de filet n'existe pas.</p></dd>

<dt><a name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributs, ["nom"])</code>
@@ -100,11 +120,11 @@
<p>L'argument "attributs" est une liste de dictionnaires. Chaque dictionnaire doit définir les cl&eacute;s suivantes: Name, Type, Value, Parameter, Relationship, RelationshipTo, AutoAddTo. Chacune de ces valeurs doit être du type cha&icirc;ne de caractère.</p></dd>

<dt><a name="-traceText"><strong>traceText</strong></a>(...)</dt>
-<dd><code><a href="#-traceText">traceText</a>(["nom"])</code>
+<dd><code>traceText(["nom"])</code>
<p>Convertit le cadre de texte "nom" en contours. Si le "nom" n'est pas fourni, l'&eacute;l&eacute;ment s&eacute;lectionn&eacute; est utilis&eacute;. </p></dd>

<dt><a name="-unlinkTextFrames"><strong>unlinkTextFrames</strong></a>(...)</dt>
-<dd><code><a href="#-unlinkTextFrames">unlinkTextFrames</a>("nom")</code>
+<dd><code>unlinkTextFrames("nom")</code> <p>Retire l'objet d&eacute;sign&eacute; de la s&eacute;quence de liens du cadre de texte. Si le cadre se trouvait au milieu d'une cha&icirc;ne de liens, les cadres pr&eacute;c&eacute;dent et suivant seront connect&eacute;s, par exemple 'a-&gt;b-&gt;c' devient 'a-&gt;c' lorsque vous d&eacute;connectez <a href="#-unlinkTextFrames">unlinkTextFrames</a>(b)'</p>
<p>Peut g&eacute;n&eacute;rer <a href="#ScribusException">ScribusException</a> en cas d'infraction des r&egrave;gles de liens.</p></dd>


Modified: trunk/Scribus/doc/it/scripterapi-setobjprop.html
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22760&path=/trunk/Scribus/doc/it/scripterapi-setobjprop.html
==============================================================================
--- trunk/Scribus/doc/it/scripterapi-setobjprop.html (original)
+++ trunk/Scribus/doc/it/scripterapi-setobjprop.html Sat Nov 17 19:50:45 2018
@@ -18,6 +18,10 @@
<p>Loads the picture "picture" into the image frame "name". If "name" is not given the currently selected item is used.</p>
<p>May raise <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the target frame is not an image frame</p></dd></dt>

+<dt><a name="-scaleImage"><strong>scaleImage</strong></a>(...)</dt>
+<dd><code>scaleImage(x, y [, "name"])</code>
+<p><b>Do not use this command since it no longer works. Use setImageScale instead.</b></p></dd>
+
<dt><a name="-setCornerRadius"><strong>setCornerRadius</strong></a>(...)</dt>
<dd><code>setCornerRadius(radius, ["name"])</code>
<p>Sets the corner radius of the object "name". The radius is expressed in points regardless of page units, and must be an integer. If "name" is not given the currently selected item is used.</p>
@@ -29,7 +33,7 @@

<dt><a name="-setFillBlendmode"><strong>setFillBlendmode</strong>(...)</a></dt>
<dd><code>setFillBlendmode(blendmode, ["name"])</code>
-<p>Sets the fill blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
+<p>Sets the fill blendmode of the object "name" to blendmode. If "name" is not given the currently selected item is used.</p></dd>

<dt><a name="-setFillColor"><strong>setFillColor</strong></a>(...)</dt>
<dd><code>setFillColor("color", ["name"])</code>
@@ -42,15 +46,8 @@

<dt><a name="-setFillTransparency"><strong>setFillTransparency</strong>(...)</a></dt>
<dd><code>setFillTransparency(transparency, ["name"])</code>
-<p>Sets the fill transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
-
-<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
-<dd><code>setLineBlendmode(blendmode, ["name"])</code>
-<p>Sets the line blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
-<dd><code>setLineTransparency(transparency, ["name"])</code>
-<p>Sets the line transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
+<p>Sets the fill transparency of the object "name". If "name" is not given the currently selected item is used.</p>
+<p>In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>

<dt><a name="-setGradientFill"><strong>setGradientFill</strong></a>(...)</dt>
<dd><code>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])</code>
@@ -59,41 +56,6 @@
<dt><a name="-setGradientStop"><strong>setGradientStop</strong></a>(...)</dt>
<dd><code>setGradientStop("color", shade, opacity, ramppoint, ["name"])</code>
<p>Set or add a gradient stop to the gradient fill of the object \"name\" at position ramppoint. Color descriptions are the same as for <a href="#-setFillColor">setFillColor</a>() and <a href="#-setFillShade">setFillShade</a>(). setGradientFill() must have been called previously for the gradient fill to be visible.</p></dd>
-
-<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
-<dd><code>setLineCap(captype, ["name"])</code>
-<p>Sets the line cap style of the object "name" to the style "cap". If "name" is not given the currently selected item is used. There are predefined constants for "cap" - CAP_&lt;type&gt;.</p></dd>
-
-<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
-<dd><code>setLineColor("color", ["name"])</code>
-<p>Sets the line color of the object "name" to the color "color". If "name" is not given the currently selected item is used.</p></dd>
-
-<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
-<dd><code>setMultiLine("namedStyle", ["name"])</code>
-<p>Sets the line style of the object "name" to the named style "namedStyle". If "name" is not given the currently selected item is used.</p>
-<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the line style doesn't exist.</p></dd>
-
-<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
-<dd><code>setLineJoin(join, ["name"])</code>
-<p>Sets the line join style of the object "name" to the style "join". If "name" is not given the currently selected item is used. There are predefined constants for join - JOIN_&lt;type&gt;.</p></dd>
-
-<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
-<dd><code>setLineShade(shade, ["name"])</code>
-<p>Sets the shading of the line color of the object "name" to "shade". "shade" must be an integer value in the range from 0 (lightest) to 100 (full color intensity). If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line shade is out of bounds.</p></dd>
-
-<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
-<dd><code>setLineStyle(style, ["name"])</code>
-<p>Sets the line style of the object "name" to the style "style". If "name" is not given the currently selected item is used. There are predefined constants for "style" - LINE_&lt;style&gt;.</p></dd>
-
-<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
-<dd><code>setLineWidth(width, ["name"])</code>
-<p>Sets line width of the object "name" to "width". "width" must be in the range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not given the currently selected item is used.</p>
-<p>May raise ValueError if the line width is out of bounds.</p></dd>
-
-<dt><a name="-scaleImage"><strong><em>scaleImage</em></strong></a>(...)</dt>
-<dd><code>scaleImage(x, y [, "name"])</code>
-<p><b>Do not use this command, since it no longer works. Use setImageScale instead.</b></p></dd>

<dt><a name="-setImageScale"><strong>setImageScale</strong></a>(...)</dt>
<dd><code>setImageScale(x, y [, "name"])</code>
@@ -104,6 +66,48 @@
<dd><code>setImageOffset(x, y [, "name"])</code>
<p>Sets the position of the picture in the image frame "name". If "name" is not given the currently selected item is used. The specified offset values are equal to the values shown on properties palette when point unit is used.</p>
<p>May raise <a href="scripterapi.html#WrongFrameTypeError">WrongFrameTypeError</a> if the target frame is not an image frame</p></dd>
+
+<dt><a name="-setLineBlendmode"><strong>setLineBlendmode</strong>(...)</a></dt>
+<dd><code>setLineBlendmode(blendmode, ["name"])</code>
+<p>Sets the line blendmode of the object "name" to blendmode is the name of one of the defined colors. If "name" is not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineCap"><strong>setLineCap</strong></a>(...)</dt>
+<dd><code>setLineCap(captype, ["name"])</code>
+<p>Sets the line cap style of the object "name" to the style "cap". If "name" is not given the currently selected item is used.</p>
+<p>The value "cap" must be taken amongst predefined constants CAP_&lt;type&gt;: CAP_FLAT, CAP_ROUND, or CAP_SQUARE.</p></dd>
+
+<dt><a name="-setLineColor"><strong>setLineColor</strong></a>(...)</dt>
+<dd><code>setLineColor("color", ["name"])</code>
+<p>Sets the line color of the object "name" to the color "color". If "name" is not given the currently selected item is used.</p></dd>
+
+<dt><a name="-setLineJoin"><strong>setLineJoin</strong></a>(...)</dt>
+<dd><code>setLineJoin(join, ["name"])</code>
+<p>Sets the line join style of the object "name" to the style "join". If "name" is not given the currently selected item is used.</p>
+<p>The value "join" must be taken amongst predefined constants JOIN_&lt;type&gt;: JOIN_BEVEL, JOIN_MITTER or JOIN_ROUND.</p></dd>
+
+<dt><a name="-setLineShade"><strong>setLineShade</strong></a>(...)</dt>
+<dd><code>setLineShade(shade, ["name"])</code>
+<p>Sets the shading of the line color of the object "name" to "shade". "shade" must be an integer value in the range from 0 (lightest) to 100 (full color intensity). If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line shade is out of bounds.</p></dd>
+
+<dt><a name="-setLineStyle"><strong>setLineStyle</strong></a>(...)</dt>
+<dd><code>setLineStyle(style, ["name"])</code>
+<p>Sets the line style of the object "name" to the style "style". If "name" is not given the currently selected item is used.</p>
+<p>There are predefined constants for "style" - LINE_&lt;style&gt;.</p></dd>
+
+<dt><a name="-setLineTransparency"><strong>setLineTransparency</strong>(...)</a></dt>
+<dd><code>setLineTransparency(transparency, ["name"])</code>
+<p>Sets the line transparency of the object "name". If "name" is not given the currently selected item is used. In spite of this command's wording, the "transparency" value is actually a decimal corresponding to the <strong>opacity</strong>, so for example, 0.9 = 90% opacity, 0.2 = 20% opacity.</p></dd>
+
+<dt><a name="-setLineWidth"><strong>setLineWidth</strong></a>(...)</dt>
+<dd><code>setLineWidth(width, ["name"])</code>
+<p>Sets line width of the object "name" to "width". "width" must be in the range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not given the currently selected item is used.</p>
+<p>May raise ValueError if the line width is out of bounds.</p></dd>
+
+<dt><a name="-setMultiLine"><strong>setMultiLine</strong></a>(...)</dt>
+<dd><code>setMultiLine("namedStyle", ["name"])</code>
+<p>Sets the line style of the object "name" to the named style "namedStyle". If "name" is not given the currently selected item is used.</p>
+<p>May raise <a href="scripterapi.html#NotFoundError">NotFoundError</a> if the line style doesn't exist.</p></dd>

<dt><a name="-setObjectAttributes"><strong>setObjectAttributes</strong></a>(...)</dt>
<dd><code>setObjectAttributes(attributes, ["name"])</code>

Loading...